/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #171717;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.custom_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #fff;
    border-bottom: 1px solid #E2D8D0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.custom_header.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ============================================
   LOGO STYLES
   ============================================ */

.logo_section {
    flex-shrink: 0;
}

.logo_link {
    text-decoration: none;
    display: block;
}

.logo_text {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
    font-size: 24px;
    font-weight: 900;
    line-height: 32px;
    letter-spacing: -1.2px;
    color: #171717;
}

/* ============================================
   NAVIGATION STYLES
   ============================================ */

.nav_section {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav_menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav_item {
    position: relative;
}

.nav_link {
    text-decoration: none;
    color: #737373;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 12px;
    letter-spacing: 1.2px;
    padding: 8px 0;
    transition: color 0.3s ease;
    position: relative;
    text-transform: uppercase;
}

.nav_link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #171717;
    transition: width 0.3s ease;
}

.nav_link:hover {
    color: #171717;
    text-decoration: none;
}

.cta_btn:hover {
    color: #fff !important;
    text-decoration: none !important;
}

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

.nav_link:hover::after {
    width: 100%;
}

.nav_link.active {
    color: #171717;
}

.nav_link.active::after {
    width: 100%;
}

.nav_link:focus {
    outline: 2px solid #B5431F;
    outline-offset: 2px;
}

/* ============================================
   CTA BUTTON STYLES
   ============================================ */

.cta_section {
    flex-shrink: 0;
}

.cta_btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #B5431F;
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 12px;
    letter-spacing: 1.2px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    width: fit-content;
}

.cta_btn:hover {
    background-color: #171717;
    transform: translateY(-1px);
    border-radius: 5px;
}

.cta_btn:focus {
    outline: 2px solid #B5431F;
    outline-offset: 2px;
}

.cta_btn:active {
    transform: translateY(0);
}

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

.menu_toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu_toggle:focus {
    outline: 2px solid #B5431F;
    outline-offset: 2px;
}

.hamburger {
    width: 100%;
    height: 2px;
    background-color: #171717;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu_toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu_toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.menu_toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -5px);
}

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

.work_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.work_card {
    position: relative;
    overflow: hidden;
}

.work_card img {
    width: 100%;
    display: block;
}

.work_overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
}

@media (max-width: 960px) {
    .nav_section {
        position: fixed;
        top: 75px;
        left: 0;
        width: 100%;
        height: 0;
        background-color: #fff;
        overflow: hidden;
        transition: height 0.3s ease, opacity 0.3s ease;
        opacity: 0;
        z-index: 999;
        border-bottom: 1px solid #E2D8D0;
    }

    .nav_section.active {
        height: auto;
        opacity: 1;
    }

    .nav_menu {
        flex-direction: column;
        gap: 0;
        padding: 24px 0;
    }

    .nav_item {
        width: 100%;
        text-align: center;
    }

    .nav_link {
        display: block;
        padding: 16px;
        width: 100%;
    }

    .menu_toggle {
        display: flex;
    }

    .cta_section {
        display: none;
    }
}

@media (max-width: 768px) {
    .main_content {
        padding-top: 100px;
    }

    .header_inner {
        padding: 0 24px;
    }

    .logo_text {
        font-size: 20px;
        line-height: 28px;
    }

    .nav_section {
        top: 70px;
    }

    .custom_header {
        height: 100px;
    }
}

/* ============================================
   MAIN CONTENT
   ============================================ */

.main_content {
    padding-top: 100px;
}

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

.hero_section {
    padding: 120px 32px;
    min-height: calc(100vh - 296px);
    border-bottom: 1px solid #E2D8D0;
    display: flex;
    align-items: center;
}

.hero_inner {
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
}

.hero_title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
    font-size: 72px;
    font-weight: 600;
    line-height: 70px;
    letter-spacing: -1.44px;
    color: #1C1B1B;
    margin: 0 0 24px 0;
    max-width: 700px;
}

.hero_title strong {
    font-weight: 700;
}

.hero_highlight {
    color: #B5431F;
    font-weight: 500;
    font-style: italic;
}

.hero_subtext {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 27px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 2px;
    color: #B5431F;
    text-transform: uppercase;
    margin: 24px 0 0 0;
}

/* ============================================
   HERO RESPONSIVE STYLES
   ============================================ */

@media (max-width: 960px) {
    .hero_section {
        padding: 100px 24px;
        /* min-height: calc(100vh - 75px); */
    }

    .hero_title {
        font-size: 56px;
        line-height: 58px;
        letter-spacing: -1.12px;
        max-width: 600px;
    }

    .hero_subtext {
        font-size: 14px;
        letter-spacing: 1.8px;
    }
}

@media (max-width: 768px) {
    .main_content {
        padding-top: 100px;
    }

    .hero_section {
        padding: 80px 20px;
        /* min-height: calc(100vh - 70px); */
    }

    .hero_title {
        font-size: 36px;
        line-height: 42px;
        letter-spacing: -0.72px;
        max-width: 100%;
    }

    .hero_subtext {
        font-size: 13px;
        letter-spacing: 1.5px;
        margin-top: 20px;
    }

    .header_inner {
        padding: 0 24px;
    }

    .logo_text {
        font-size: 20px;
        line-height: 28px;
    }

    .nav_section {
        top: 70px;
    }

    .custom_header {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .hero_section {
        padding: 60px 16px;
    }

    .hero_title {
        font-size: 32px;
        line-height: 38px;
        letter-spacing: -0.64px;
    }

    .hero_subtext {
        font-size: 12px;
        letter-spacing: 1.2px;
    }
}

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

.about_hero {
    padding: 130px 32px;
    width: 100%;
    display: flex;
    align-items: center;
}

.about_hero_inner {
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
}

.about_hero_title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
    font-size: clamp(36px, 6vw, 67px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    color: #1C1B1B;
    margin: 0;
}

.about_hero_title span {
    font-size: clamp(25px, 4.2vw, 50px);
}
.about_hero_title span.big_font {
   font-size: clamp(36px, 6vw, 67px);
}

.service_hero_stitle {
    font-size: 24px;
    line-height: 31px;
    max-width: 52ch;
    margin-top: 30px;
}

/* ============================================
   ABOUT HERO RESPONSIVE STYLES
   ============================================ */

@media (max-width: 960px) {
    .about_hero {
        padding: 110px 24px;
    }

    .about_hero_title {
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .about_hero {
        padding: 90px 20px;
    }

    .about_hero_title {
        max-width: 100%;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .about_hero {
        padding: 70px 16px;
    }

    .about_hero_title {
        line-height: 1.25;
    }
}

/* ============================================
   TEAM SECTION
   ============================================ */

.team_section {
    background-color: #B5431F;
    color: #FFFFFF;
    padding: 100px 32px;
    width: 100%;
}

.team_inner {
    max-width: 1180px;
    margin: 0 auto;
}

.team_label {
    margin-bottom: 28px;
}

.team_label_text {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #FFFFFF;
    display: block;
    margin-bottom: 8px;
}

.team_label_underline {
    display: block;
    width: 8ch;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.8);
}

/* 
.team_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    align-items: stretch;
}

.team_card {
    display: flex;
    flex-direction: column;
}

.team_card.image {
    display: flex;
    flex-direction: column;
}

.team_image {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background-color: #2a2a2a;
    margin-bottom: 16px;
}

.team_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team_card.text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team_bio {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: #F5F5F5;
    padding: 34px;
    margin-bottom: 16px;
    padding: 24px;
    aspect-ratio: 4 / 5;
    overflow-y: scroll;
}

.team_bio p {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.6;
    font-weight: 400;
    color: #1C1B1B;
    margin: 0;
}

.team_name {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: #FFFFFF;
    margin: 16px 0 6px 0;
}

.team_role {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
} */

.team_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.team_card {
    display: flex;
    flex-direction: column;
}

/* IMAGE WRAPPER */
.team_media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background-color: #2a2a2a;
}

/* IMAGE */
.team_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* OVERLAY (hidden by default) */
.team_overlay {
    position: absolute;
    inset: 0;
    background: #F5F5F5D1;
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

/* BIO TEXT */
.team_bio {
    padding: 24px;
    overflow-y: auto;
}

.team_bio p {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #1C1B1B;
}

/* HOVER EFFECT */
.team_card:hover .team_overlay {
    opacity: 1;
    transform: translateY(0);
}

/* .team_card:hover .team_img {
    transform: scale(1.05);
} */
.team_image {
    position: relative;
}

/* NAME + ROLE */
.team_name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    margin: 16px 0 6px;
    color: #FFFFFF;
}

.team_role {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   TEAM SECTION RESPONSIVE STYLES
   ============================================ */

@media (max-width: 960px) {
    .team_section {
        padding: 80px 24px;
    }

    .team_label {
        margin-bottom: 24px;
    }

    .team_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .team_image {
        margin-bottom: 14px;
    }

    .team_card.text {
        padding: 28px;
    }

    .team_name {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .team_section {
        padding: 60px 20px;
    }

    .team_label {
        margin-bottom: 20px;
    }

    .team_label_underline {
        width: 28px;
    }

    .team_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team_card.text {
        padding: 24px;
    }

    .team_bio {
        gap: 14px;
    }

    .team_name {
        font-size: 18px;
        margin-top: 14px;
    }
}

@media (max-width: 480px) {
    .team_section {
        padding: 50px 16px;
    }

    .team_label_underline {
        width: 24px;
    }

    .team_grid {
        gap: 18px;
    }

    .team_card.text {
        padding: 20px;
    }

    .team_image {
        margin-bottom: 12px;
    }

    .team_name {
        font-size: 17px;
        margin-top: 12px;
    }
}

/* ============================================
   LOGO STRIP SECTION
   ============================================ */

.logo_strip {
    padding: 48px 32px 48px 32px;
    width: 100%;
}

.logo_strip_inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.logo_item {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 0.5px;
    color: #A3A3A3;
    white-space: nowrap;
}

/* ============================================
   LOGO STRIP RESPONSIVE STYLES
   ============================================ */

@media (max-width: 960px) {
    .logo_strip {
        padding: 20px 24px 40px 24px;
    }

    .logo_strip_inner {
        gap: 32px;
        justify-content: center;
    }

    .logo_item {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .logo_strip {
        padding: 16px 20px 36px 20px;
    }

    .logo_strip_inner {
        gap: 24px;
        justify-content: center;
    }

    .logo_item {
        font-size: 17px;
        letter-spacing: 0.3px;
    }
}

@media (max-width: 480px) {
    .logo_strip {
        padding: 12px 16px 32px 16px;
    }

    .logo_strip_inner {
        gap: 20px;
        justify-content: space-between;
    }

    .logo_item {
        font-size: 16px;
        letter-spacing: 0.2px;
    }
}

/* ============================================
   PROBLEM SECTION
   ============================================ */

.problem_section {
    background-color: #B5431F;
    color: #FFFFFF;
    padding: clamp(80px, 8vw, 120px) 32px;
    width: 100%;
}

.problem_inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: clamp(150px, 20%, 220px) 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: start;
}

.problem_label {
    position: sticky;
    top: 120px;
}

.label_text {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    display: block;
    margin-bottom: 10px;
}

.label_underline {
    display: block;
    width: 12ch;
    height: 1px;
    background-color: #ffffff;
}

.problem_content {
    display: flex;
    flex-direction: column;
}

.problem_title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
    font-size: clamp(32px, 5vw, 64px);
    line-height: clamp(36px, 6vw, 70px);
    font-weight: 500;
    font-style: italic;
    letter-spacing: clamp(-1px, -0.5px, -0.5px);
    color: #FFFFFF;
    margin: 0 0 clamp(24px, 3vw, 32px) 0;
}

.problem_text {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2vw, 20px);
}

.problem_text p {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: clamp(22px, 1.6, 28px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* ============================================
   PROBLEM SECTION RESPONSIVE STYLES
   ============================================ */

@media (max-width: 960px) {
    .problem_section {
        padding: clamp(60px, 7vw, 100px) 24px;
    }

    .problem_inner {
        grid-template-columns: clamp(120px, 18%, 180px) 1fr;
        gap: clamp(24px, 4vw, 48px);
    }

    .problem_label {
        position: static;
    }

    .label_underline {
        width: 32px;
    }
}

@media (max-width: 768px) {
    .problem_section {
        padding: clamp(50px, 6vw, 80px) 20px;
    }

    .problem_inner {
        grid-template-columns: 1fr;
        gap: clamp(20px, 4vw, 32px);
    }

    .problem_label {
        position: static;
        margin-bottom: 8px;
    }

    .label_text {
        margin-bottom: 8px;
    }

    .label_underline {
        width: 28px;
    }

    .problem_title {
        margin-bottom: clamp(20px, 3vw, 24px);
    }

    .problem_text {
        gap: clamp(14px, 2vw, 18px);
    }
}

@media (max-width: 480px) {
    .problem_section {
        padding: clamp(40px, 8vw, 60px) 16px;
    }

    .problem_inner {
        gap: clamp(16px, 4vw, 24px);
    }

    .label_underline {
        width: 24px;
    }

    .problem_title {
        margin-bottom: clamp(16px, 3vw, 20px);
    }

    .problem_text {
        gap: clamp(12px, 2vw, 16px);
    }
}

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

.about_section {
    background-color: #FDF8F8;
    color: #1C1B1B;
    padding: 100px 32px;
    width: 100%;
}

.about_inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: clamp(150px, 22%, 220px) 1fr;
    gap: 48px;
    align-items: start;
}

.about_inner_2 {
    grid-template-columns: none !important;
}

.about_label {
    position: sticky;
    top: 120px;
}

.about_label_text {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #B5431F;
    display: block;
    margin-bottom: 8px;
}

.about_label_underline {
    display: block;
    width: 10ch;
    height: 1px;
    background-color: #B5431F;
}

.about_content {
    display: flex;
    flex-direction: column;
}

.about_text {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about_text p {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.7;
    font-weight: 400;
    color: #1C1B1B;
    margin: 0;
}

/* ============================================
   ABOUT SECTION RESPONSIVE STYLES
   ============================================ */

@media (max-width: 960px) {
    .about_section {
        padding: 80px 24px;
    }

    .about_inner {
        grid-template-columns: clamp(130px, 20%, 180px) 1fr;
        gap: 36px;
    }

    .about_label {
        position: static;
    }

    .about_label_underline {
        width: 28px;
    }

    .about_text {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .about_section {
        padding: 60px 20px;
    }

    .about_inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about_label {
        position: static;
        margin-bottom: 4px;
    }

    .about_label_text {
        margin-bottom: 6px;
    }

    .about_label_underline {
        width: 24px;
    }

    .about_text {
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .about_section {
        padding: 50px 16px;
    }

    .about_inner {
        gap: 12px;
    }

    .about_label_underline {
        width: 20px;
    }

    .about_text {
        gap: 12px;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services_section {
    color: #1C1B1B;
    padding: 100px 32px;
    width: 100%;
}

.services_inner {
    max-width: 1180px;
    margin: 0 auto;
}

.services_label {
    margin-bottom: 28px;
}

.services_label_text {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #B5431F;
    display: block;
    margin-bottom: 8px;
}

.services_label_underline {
    display: block;
    width: 10ch;
    height: 1px;
    background-color: #B5431F;
}

.services_label_subtitle {
    margin-bottom: 28px;
    font-size: 27px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 2px;
    color: #B5431F;
    text-transform: uppercase;
}

.services_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.service_card {
    padding: 40px;
    background-color: #F7F3F2;
    border: 1px solid #E2D8D0;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service_card:hover {
    transform: translateY(-4px);
    border-color: #D0D0D0;
}

.service_card.highlight {
    background-color: #B5431F;
    border: 1px solid #B5431F;
    color: #FFFFFF;
}

.service_card.highlight:hover {
    transform: translateY(-4px);
    border-color: #9A3A1A;
}

.service_label {
    margin-bottom: 16px;
}

.service_label_text {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #B5431F;
    display: block;
    margin-bottom: 8px;
}

.service_card--highlight .service_label_text {
    color: #FFFFFF;
}

.service_label_underline {
    display: block;
    width: 32px;
    height: 1px;
    background-color: #B5431F;
}

.service_card--highlight .service_label_underline {
    background-color: #FFFFFF;
}

.service_content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service_title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 600;
    line-height: 1.2;
    color: #1C1B1B;
    margin: 0 0 16px 0;
}

.service_card.highlight .service_title {
    color: #FFFFFF;
}

.service_text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.service_text p {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.6;
    font-weight: 400;
    color: #1C1B1B;
    margin: 0;
}

.service_card.highlight .service_text p {
    color: rgba(255, 255, 255, 0.9);
}

/*.service_text p:last-child {*/
/*    font-weight: 600;*/
/*}*/
.sp_section * {
    font-weight: 400;
}

.service_list {
    margin-top: auto;
    padding-top: 20px;
}

.service_list span {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #B5431F;
}

.service_card--highlight .service_list span {
    color: #FFFFFF;
}

/* ============================================
   SERVICES SECTION RESPONSIVE STYLES
   ============================================ */

@media (max-width: 960px) {
    .services_section {
        padding: 80px 24px;
    }

    .services_label {
        margin-bottom: 24px;
    }

    .services_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .service_card {
        padding: 36px;
    }

    /*.service_card--highlight {*/
    /*    grid-column: span 2;*/
    /*}*/
}

@media (max-width: 768px) {
    .services_section {
        padding: 60px 20px;
    }

    .services_label {
        margin-bottom: 20px;
    }

    .services_label_underline {
        width: 28px;
    }

    .services_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service_card--highlight {
        grid-column: span 1;
    }

    .service_card {
        padding: 32px;
    }

    .service_title {
        margin-bottom: 14px;
    }

    .service_label {
        margin-bottom: 14px;
    }
}

@media (max-width: 480px) {
    .services_section {
        padding: 50px 16px;
    }

    .services_label_underline {
        width: 24px;
    }

    .services_grid {
        gap: 18px;
    }

    .service_card {
        padding: 28px;
    }

    .service_label_underline {
        width: 24px;
    }
}

/* ============================================
   AUDIENCE SECTION
   ============================================ */

.audience_section {
    background-color: #FDF8F8;
    color: #1C1B1B;
    padding: 100px 32px;
    width: 100%;
}

.audience_inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: clamp(150px, 22%, 220px) 1fr;
    gap: 48px;
    align-items: start;
}

.audience_label {
    position: sticky;
    top: 120px;
    margin-bottom: 18px;
}

.audience_label_text {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #B5431F;
    display: block;
    margin-bottom: 8px;
}

.audience_label_underline {
    display: block;
    width: 13ch;
    height: 1px;
    background-color: #B5431F;
}

.audience_label_underline2 {
    display: block;
    width: 9ch;
    height: 1px;
    background-color: #B5431F;
}

.audience_content {
    display: flex;
    flex-direction: column;
}

.audience_text {
    display: flex;
    flex-direction: column;
}

.audience_text p {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.7;
    font-weight: 400;
    color: #1C1B1B;
    margin: 0 0 18px 0 !important;
}
.audience_text p b {
        margin-top: -10px;
    display: block;
}

.audience_text p:last-child {
    margin-bottom: 0;
}

.audience_highlight {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(17px, 1.3vw, 19px);
    line-height: 1.6;
    font-weight: 700;
    color: #1C1B1B;
    margin: 24px 0 20px 0 !important;
}

/* ============================================
   AUDIENCE SECTION RESPONSIVE STYLES
   ============================================ */

@media (max-width: 960px) {
    .audience_section {
        padding: 80px 24px;
    }

    .audience_inner {
        grid-template-columns: clamp(130px, 20%, 180px) 1fr;
        gap: 36px;
    }

    .audience_label {
        position: static;
    }

    .audience_label_underline {
        width: 28px;
    }

    .audience_text p {
        margin-bottom: 16px;
    }

    .audience_highlight {
        margin: 20px 0 18px 0 !important;
    }
}

@media (max-width: 768px) {
    .audience_section {
        padding: 60px 20px;
    }

    .audience_inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .audience_label {
        position: static;
        margin-bottom: 4px;
    }

    .audience_label_text {
        margin-bottom: 6px;
    }

    .audience_label_underline {
        width: 24px;
    }

    .audience_text p {
        margin-bottom: 14px;
    }

    .audience_highlight {
        margin: 18px 0 16px 0 !important;
    }
}

@media (max-width: 480px) {
    .audience_section {
        padding: 50px 16px;
    }

    .audience_inner {
        gap: 12px;
    }

    .audience_label_underline {
        width: 20px;
    }

    .audience_text p {
        margin-bottom: 12px;
    }

    .audience_highlight {
        margin: 16px 0 14px 0 !important;
    }
}

/* ============================================
   INVITE SECTION
   ============================================ */

.invite_section {
    background-color: #F2EBE4;
    color: #1C1B1B;
    padding: 110px 32px;
    width: 100%;
}

.invite_inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: clamp(150px, 22%, 220px) 1fr;
    gap: 48px;
    align-items: start;
}

.invite_label {
    position: sticky;
    top: 120px;
}

.invite_label_text {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #B5431F;
    display: block;
    margin-bottom: 8px;
}

.invite_label_underline {
    display: block;
    width: 8ch;
    height: 1px;
    background-color: #B5431F;
}

.invite_content {
    display: flex;
    flex-direction: column;
}

.invite_title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
    font-size: clamp(32px, 5vw, 64px);
    line-height: clamp(36px, 6vw, 70px);
    font-weight: 400;
    font-style: italic;
    letter-spacing: -0.5px;
    color: #1C1B1B;
    margin: 0 0 22px 0;
}

.invite_text {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.6;
    font-weight: 400;
    color: #4A4A4A;
    margin: 0 0 18px 0;
}

.invite_email {
    /*font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;*/
    font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.5;
    font-weight: 600;
    color: #B5431F;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: opacity 0.3s ease, text-decoration-thickness 0.3s ease;
    cursor: pointer;
    width: fit-content;
}

.invite_email:hover {
    opacity: 0.8;
    text-decoration-thickness: 2px;
}

.invite_email:focus {
    outline: 2px solid #B5431F;
    outline-offset: 2px;
}

/* ============================================
   INVITE SECTION RESPONSIVE STYLES
   ============================================ */

@media (max-width: 960px) {
    .invite_section {
        padding: 90px 24px;
    }

    .invite_inner {
        grid-template-columns: clamp(130px, 20%, 180px) 1fr;
        gap: 36px;
    }

    .invite_label {
        position: static;
    }

    .invite_label_underline {
        width: 28px;
    }

    .invite_title {
        margin-bottom: 20px;
    }

    .invite_text {
        margin-bottom: 16px;
    }
}

@media (max-width: 768px) {
    .invite_section {
        padding: 70px 20px;
    }

    .invite_inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .invite_label {
        position: static;
        margin-bottom: 4px;
    }

    .invite_label_text {
        margin-bottom: 6px;
    }

    .invite_label_underline {
        width: 24px;
    }

    .invite_title {
        margin-bottom: 18px;
    }

    .invite_text {
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .invite_section {
        padding: 60px 16px;
    }

    .invite_inner {
        gap: 16px;
    }

    .invite_label_underline {
        width: 20px;
    }

    .invite_title {
        margin-bottom: 16px;
    }

    .invite_text {
        margin-bottom: 14px;
    }
}

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

.about_split_section {
    color: #1C1B1B;
    padding: 100px 32px;
    width: 100%;
}

.about_inner {
    max-width: 1180px;
    margin: 0 auto;
}

.about_grid {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 36px;
    align-items: stretch;
    max-width: calc(100% - 36px);
}

.about_left {
    display: flex;
    flex-direction: column;
}

.about_right {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.about_card {
    padding: 36px;
    background-color: #F7F3F2;
    border: 1px solid #E2D8D0;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.about_card .about_label {
    position: static !important;
}

.about_card .about_label_underline {
    width: 18ch !important;
}

.about_label {
    margin-bottom: 18px;
}

.about_label_text {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #B5431F;
    display: block;
    margin-bottom: 8px;
}

.about_label_underline {
    display: block;
    width: 10ch;
    height: 1px;
    background-color: #B5431F;
}

.about_text {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about_text p {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.6;
    font-weight: 400;
    color: #1C1B1B;
    margin: 0;
}

.about_text strong {
    font-weight: 600;
}

/* ============================================
   ABOUT SPLIT SECTION RESPONSIVE STYLES
   ============================================ */

@media (max-width: 960px) {
    .about_split_section {
        padding: 80px 24px;
    }

    .about_grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about_right {
        gap: 24px;
    }

    .about_card {
        padding: 32px;
    }

    .about_label {
        margin-bottom: 16px;
    }

    .about_label_underline {
        width: 28px;
    }

    .about_text {
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .about_split_section {
        padding: 60px 20px;
    }

    .about_right {
        gap: 20px;
    }

    .about_card {
        padding: 28px;
    }

    .about_label {
        margin-bottom: 14px;
    }

    .about_label_text {
        margin-bottom: 6px;
    }

    .about_label_underline {
        width: 24px;
    }

    .about_text {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .about_split_section {
        padding: 50px 16px;
    }

    .about_right {
        gap: 18px;
    }

    .about_card {
        padding: 24px;
    }

    .about_label_underline {
        width: 20px;
    }
}

/* ============================================
   CASE STUDY SLIDER SECTION
   ============================================ */

.case_section {
    color: #1C1B1B;
    padding: 100px 32px;
    width: 100%;
}

.case_inner {
    max-width: 1200px;
    margin: 0 auto;
}

.case_slider {
    position: relative;
    overflow: hidden;
}

.case_track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.case_slide {
    flex: 0 0 100%;
    width: 100%;
}

.case_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.case_image {
    width: 100%;
    /* aspect-ratio: 4 / 3; */
    aspect-ratio: 1/1;
    overflow: hidden;
    background-color: #E5E5E5;
}

.case_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.case_image:hover img {
    filter: grayscale(0%);
}

.case_content {
    display: flex;
    flex-direction: column;
}

.case_label {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 1.5px;
    color: #737373;
    margin-bottom: 16px;
}

.case_title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.2;
    color: #1C1B1B;
    margin: 0 0 16px 0;
}

.case_desc {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0 0 24px 0;
}

.case_list {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.case_item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 0;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #1C1B1B;
}

.case_bullet {
    color: #B5431F;
    font-size: 12px;
    line-height: 1.6;
    flex-shrink: 0;
    margin-top: 2px;
}

.case_item strong {
    font-weight: 600;
    color: #1C1B1B;
}

.case_divider {
    height: 1px;
    background-color: #E2D8D0;
    width: 100%;
}

.case_nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: #FFFFFF;
    border: 1px solid #E2D8D0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.case_nav:hover {
    border-color: #B5431F;
    transform: translateY(-50%) scale(1.1);
}

.case_nav:focus {
    outline: 2px solid #B5431F;
    outline-offset: 2px;
}

.case_nav svg {
    transition: transform 0.3s ease;
}

.case_nav:hover svg {
    transform: scale(1.1);
}

.case_prev {
    left: -24px;
}

.case_next {
    right: -24px;
}

/* ============================================
   CASE STUDY SLIDER RESPONSIVE STYLES
   ============================================ */

@media (max-width: 960px) {
    .case_section {
        padding: 80px 24px;
    }

    .case_grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .case_image {
        aspect-ratio: 16 / 9;
    }

    .case_prev {
        left: 0;
    }

    .case_next {
        right: 0;
    }
}

@media (max-width: 768px) {
    .case_section {
        padding: 60px 20px;
    }

    .case_grid {
        gap: 32px;
    }

    .case_title {
        margin-bottom: 14px;
    }

    .case_desc {
        margin-bottom: 20px;
        font-size: 15px;
    }

    .case_item {
        padding: 14px 0;
        font-size: 13px;
    }

    .case_nav {
        width: 40px;
        height: 40px;
    }

    .case_prev {
        left: 8px;
    }

    .case_next {
        right: 8px;
    }
}

@media (max-width: 480px) {
    .case_section {
        padding: 50px 16px;
    }

    .case_grid {
        gap: 24px;
    }

    .case_image {
        aspect-ratio: 3 / 2;
    }

    .case_label {
        margin-bottom: 12px;
    }

    .case_title {
        margin-bottom: 12px;
    }

    .case_desc {
        margin-bottom: 16px;
        font-size: 14px;
    }

    .case_item {
        padding: 12px 0;
        font-size: 13px;
    }

    .case_nav {
        width: 36px;
        height: 36px;
    }

    .case_nav svg {
        width: 20px;
        height: 20px;
    }
}

/* ============================================
   CONTACT HERO SECTION
   ============================================ */

.contact_hero {
    background-color: #FAFAFA;
    color: #1C1B1B;
    padding: 120px 32px 100px 32px;
    width: 100%;
}

.contact_inner {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.contact_label {
    margin-bottom: 16px;
}

.contact_label_text {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #B5431F;
    display: block;
    margin-bottom: 8px;
}

.contact_label_underline {
    display: block;
    width: 32px;
    height: 1px;
    background-color: #B5431F;
}

.contact_title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
    font-size: clamp(42px, 6vw, 64px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: #1C1B1B;
    margin: 0 0 24px 0;
}

.contact_text {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(15px, 1.2vw, 16px);
    line-height: 1.7;
    font-weight: 400;
    color: #555;
    margin: 0;
    max-width: 650px;
}

/* ============================================
   CONTACT HERO RESPONSIVE STYLES
   ============================================ */

@media (max-width: 960px) {
    .contact_hero {
        padding: 100px 24px 80px 24px;
    }

    .contact_inner {
        max-width: 900px;
    }

    .contact_label {
        margin-bottom: 14px;
    }

    .contact_label_underline {
        width: 28px;
    }

    .contact_title {
        margin-bottom: 22px;
    }
}

@media (max-width: 768px) {
    .contact_hero {
        padding: 80px 20px 60px 20px;
    }

    .contact_inner {
        max-width: 100%;
    }

    .contact_label {
        margin-bottom: 12px;
    }

    .contact_label_text {
        margin-bottom: 6px;
    }

    .contact_label_underline {
        width: 24px;
    }

    .contact_title {
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .contact_text {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .contact_hero {
        padding: 60px 16px 50px 16px;
    }

    .contact_label {
        margin-bottom: 10px;
    }

    .contact_label_underline {
        width: 20px;
    }

    .contact_title {
        margin-bottom: 18px;
    }

    .contact_text {
        font-size: 15px;
    }
}

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

.contact_section {
    background-color: #FFFFFF;
    color: #1C1B1B;
    padding: 100px 32px;
    width: 100%;
}

.contact_inner {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.contact_grid {
    display: grid;
    /*grid-template-columns: 40% 60%;*/
    grid-template-columns: 50% 50%;
    gap: 60px;
    align-items: start;
}

.contact_left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact_info_label {
    margin-bottom: 8px;
}

.contact_info_label_text {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #B5431F;
    display: block;
    margin-bottom: 8px;
}

.contact_info_label_underline {
    display: block;
    width: 32px;
    height: 1px;
    background-color: #B5431F;
}

.contact_info_text {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.contact_divider {
    height: 1px;
    background-color: #E2D8D0;
    width: 100%;
}

.contact_email_link {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    color: #1C1B1B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact_email_link:hover {
    color: #B5431F;
}

.contact_note {
    background-color: #F7F3F2;
    padding: 24px;
    border: 1px solid #E2D8D0;
}

.contact_note_label {
    margin-bottom: 12px;
}

.contact_note_label_text {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 11px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #B5431F;
    display: block;
    margin-bottom: 8px;
}

.contact_note_label_underline {
    display: block;
    width: 28px;
    height: 1px;
    background-color: #B5431F;
}

.contact_note_text {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.contact_right {
    display: flex;
    flex-direction: column;
}

.contact_form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form_group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form_label {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 11px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #737373;
    margin-bottom: 8px;
}

.form_input {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #1C1B1B;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #E2D8D0;
    padding: 12px 0;
    transition: border-color 0.3s ease;
    outline: none;
}

.form_input::placeholder {
    color: #A3A3A3;
}

.form_input:focus {
    border-color: #B5431F;
}

.form_input.error {
    border-color: #DC2626;
}

.form_textarea {
    min-height: 120px;
    resize: vertical;
}

.form_error {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
    line-height: 1.4;
    color: #DC2626;
    margin-top: 4px;
    min-height: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form_error.visible {
    opacity: 1;
}

.form_button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background-color: #B5431F;
    color: #FFFFFF;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    outline: none;
}

.form_button:hover:not(:disabled) {
    background-color: #9A3A1A;
    transform: translateY(-1px);
}

.form_button:active:not(:disabled) {
    transform: translateY(0);
}

.form_button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form_button_text {
    transition: opacity 0.3s ease;
}

.form_button.loading .form_button_text {
    opacity: 0;
}

.form_button_loader {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #FFFFFF;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form_button.loading .form_button_loader {
    opacity: 1;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.form_note {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
    line-height: 1.5;
    color: #737373;
    margin: 0;
    text-align: center;
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */

.toast_container {
    position: fixed;
    top: 100px;
    right: 32px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background-color: #1C1B1B;
    color: #FFFFFF;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateX(120%);
    transition: transform 0.4s ease;
    max-width: 350px;
}

.toast.show {
    transform: translateX(0);
}

.toast_success {
    border-left: 4px solid #10B981;
}

.toast_error {
    border-left: 4px solid #DC2626;
}

.toast_icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.toast_message {
    flex-grow: 1;
}

/* ============================================
   CONTACT SECTION RESPONSIVE STYLES
   ============================================ */

@media (max-width: 960px) {
    .contact_section {
        padding: 80px 24px;
    }

    .contact_grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact_left {
        gap: 28px;
    }

    .contact_info_label_underline {
        width: 28px;
    }

    .contact_email_link {
        font-size: 22px;
    }

    .contact_note {
        padding: 20px;
    }

    .contact_note_label_underline {
        width: 24px;
    }
}

@media (max-width: 768px) {
    .contact_section {
        padding: 60px 20px;
    }

    .contact_grid {
        gap: 40px;
    }

    .contact_left {
        gap: 24px;
    }

    .contact_info_label_underline {
        width: 24px;
    }

    .contact_email_link {
        font-size: 20px;
    }

    .contact_note {
        padding: 18px;
    }

    .contact_form {
        gap: 20px;
    }

    .form_button {
        width: 100%;
    }

    .toast_container {
        right: 20px;
        left: 20px;
        top: 80px;
    }

    .toast {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .contact_section {
        padding: 50px 16px;
    }

    .contact_grid {
        gap: 32px;
    }

    .contact_left {
        gap: 20px;
    }

    .contact_info_label_underline {
        width: 20px;
    }

    .contact_email_link {
        font-size: 18px;
    }

    .contact_note {
        padding: 16px;
    }

    .contact_note_label_underline {
        width: 20px;
    }

    .form_input {
        font-size: 14px;
        padding: 10px 0;
    }

    .form_textarea {
        min-height: 100px;
    }

    .toast_container {
        top: 70px;
        right: 16px;
        left: 16px;
    }
}

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

.footer {
    background-color: #B5431F;
    color: #FFFFFF;
    padding: 60px 32px 40px 32px;
    width: 100%;
}

.footer_inner {
    max-width: 1180px;
    margin: 0 auto;
}

.footer_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*margin-bottom: 22px;*/
}

.footer_logo {
    flex-shrink: 0;
}

.footer_logo_text {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
    font-size: 21px;
    font-weight: 600;
    line-height: 28px;
    color: #FFFFFF;
}

.footer_nav {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

.footer_nav_list {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.footer_nav_item {
    position: relative;
}

.footer_nav_link {
    text-decoration: none;
    color: #FFFFFF;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    transition: opacity 0.3s ease;
    position: relative;
    text-decoration: underline;
}

.footer_nav_link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.8);
    transition: width 0.3s ease;
}

.footer_nav_link:hover {
    opacity: 0.8;
}

.footer_nav_link:hover::after {
    width: 100%;
}

.footer_nav_link:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.footer_bottom {
    display: flex;
    justify-content: flex-end;
}

.footer_copy {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ============================================
   FOOTER RESPONSIVE STYLES
   ============================================ */

@media (max-width: 960px) {
    .footer {
        padding: 50px 24px 36px 24px;
    }

    .footer_top {
        margin-bottom: 20px;
    }

    .footer_nav_list {
        gap: 20px;
    }

    .footer_logo_text {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 32px 20px;
    }

    .footer_top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 18px;
    }

    .footer_nav {
        justify-content: flex-start;
    }

    .footer_nav_list {
        gap: 18px;
        flex-wrap: wrap;
    }

    .footer_bottom {
        justify-content: flex-start;
    }

    .footer_logo_text {
        font-size: 19px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 36px 16px 28px 16px;
    }

    .footer_top {
        gap: 16px;
        margin-bottom: 16px;
    }

    .footer_nav_list {
        gap: 16px;
    }

    .footer_logo_text {
        font-size: 18px;
    }

    .footer_copy {
        font-size: 11px;
        letter-spacing: 1.2px;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus visible for keyboard navigation */
.nav_link:focus-visible,
.cta_btn:focus-visible,
.menu_toggle:focus-visible {
    outline: 2px solid #B5431F;
    outline-offset: 2px;
}