/* ===== Global Variables ===== */
/*
Theme Name: Boldinternational 1.1
Theme URI: https://boldinternational.com
Author: Sujith
Author URI: https://boldinternational.com
Description: A perfect 1:1 WordPress theme replica for Boldinternational.
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: boldinternational
*/

:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --text-secondary: #555555;
    --border-color: #e5e5e5;
    --hover-bg: #f5f5f5;
    
    --font-serif: 'Inter', sans-serif;
    --font-sans: 'Inter', sans-serif;
    
    --header-height: 80px;
    --transition-speed: 0.3s;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 60px 0;
}

.section-title {
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--text-color);
    padding-bottom: 10px;
    display: inline-block;
}

/* ===== Header Navigation ===== */
.site-header {
    position: absolute;
    top: 0;
    width: 100%;
    background-color: var(--bg-color);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: transform 0.4s ease;
    height: auto;
}

.site-header.fixed {
    position: fixed;
    transform: translateY(-100%);
}

.site-header.fixed.show {
    transform: translateY(0);
}

.header-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* Centered Logo */
    align-items: center;
    padding: 20px 24px;
}

.header-actions {
    justify-self: end;
}

.logo {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    justify-self: center;
}

.site-logo {
    width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.header-left {
    position: relative;
}

.menu-btn {
    display: none; /* Hidden by default on desktop */
    padding: 8px;
    color: var(--text-color);
}

/* ===== Desktop Main Navigation ===== */
.main-nav {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 18px 0;
    text-align: center;
    background-color: var(--bg-color);
}

.main-nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.main-nav-links li a {
    color: var(--text-color);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.2s ease;
}

.main-nav-links li a:hover {
    color: var(--text-secondary);
}

/* ===== Side Menu (Off-Canvas) ===== */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-speed) ease;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 350px;
    max-width: 80vw;
    height: 100vh;
    background-color: var(--bg-color);
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.side-menu.active {
    transform: translateX(0);
}

.side-menu-header {
    display: flex;
    justify-content: flex-end;
    padding: 20px 24px;
}

.close-menu-btn {
    padding: 8px;
    color: var(--text-color);
    transition: transform var(--transition-speed) ease;
}

.close-menu-btn:hover {
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-links li {
    width: 100%;
}

.nav-links a {
    display: block;
    padding: 15px 24px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--text-color);
    transition: width var(--transition-speed) ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* ===== Full Screen Search Overlay ===== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-color);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    display: flex;
    flex-direction: column;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-header {
    display: flex;
    justify-content: flex-end;
    padding: 30px;
}

.close-search-btn {
    padding: 10px;
    color: var(--text-color);
    transition: transform var(--transition-speed) ease;
}

.close-search-btn:hover {
    transform: scale(1.1);
}

.search-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 5%;
}

.search-input {
    width: 100%;
    max-width: 800px;
    font-size: 5vw;
    font-family: var(--font-serif);
    color: var(--text-color);
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--text-color);
    padding: 10px 0;
    outline: none;
    text-align: center;
}

.search-input::placeholder {
    color: var(--border-color);
}

.search-prompt {
    margin-top: 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-color);
    opacity: 0.6;
}

#main-content {
    padding-top: 175px; /* ~130px header + 45px visual space */
}

/* ===== Split Hero Section (Sticky) ===== */
.hero-split-section {
    width: 100%;
    background: var(--bg-color);
    margin-bottom: 60px;
}

.split-container {
    display: flex;
    align-items: flex-start;
}

.hero-fixed {
    width: 50%;
    /* 
       To make it sticky exactly under the header, we stick it to top 0.
       It takes the full viewport height. 
    */
    position: sticky;
    top: 0; 
    height: 100vh; 
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--hover-bg);
}

.hero-cover-article {
    height: 100%;
    width: auto;
    max-width: 100%;
    aspect-ratio: 1409 / 2000;
    position: relative;
}

.hero-cover-article .image-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-cover-article img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

.cover-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 40px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-center {
    text-align: center;
}

.light-text {
    color: #ffffff;
}

.cover-content .category {
    color: #fff;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.cover-content .title {
    font-size: 46px;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 90%;
}

.cover-content .meta {
    font-size: 13px;
    color: #ccc;
}

/* Right Scrollable Side */
.hero-scrollable {
    width: 50%;
    padding: 40px;
}

/* ===== Cards & Articles ===== */
.card {
    position: relative;
    display: flex;
    flex-direction: column;
}

.card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.image-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    aspect-ratio: 1409 / 2000;
    background-color: var(--hover-bg);
}

.portrait-wrapper {
    aspect-ratio: 1409 / 2000;
}

.square-wrapper {
    aspect-ratio: 1409 / 2000;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.card:hover .image-wrapper img {
    transform: scale(1.05);
}

.card-content {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.category {
    font-family: var(--font-sans);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: #000; /* Subtle Vogue Red accent */
    margin-bottom: 10px;
}

.title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 10px;
    transition: color var(--transition-speed) ease;
}

.small-title {
    font-size: 20px;
}

.smaller-title {
    font-size: 18px;
}

.card:hover .title {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.meta {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.6;
}

/* ===== Grid Layouts ===== */
.grid {
    display: grid;
    gap: 40px;
}

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

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

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

/* ===== Social Interactive Section ===== */
.social-interactive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.social-block {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-color: #111;
    transition: color 0.6s ease;
}

.social-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #000;
    transition: transform 0.6s ease;
    z-index: 1;
}

.youtube-block .social-bg {
    background: #FF0000; /* YouTube Red */
    transform: translateY(100%);
}

.instagram-block .social-bg {
    background: #ffffff; /* White background */
    transform: translateY(100%);
}

.social-block:hover .social-bg {
    transform: translateY(0);
}

.instagram-block:hover {
    color: #000;
}

.social-content {
    position: relative;
    z-index: 2;
    padding: 40px;
}

.social-label {
    font-family: var(--font-sans);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
    opacity: 0.8;
}

.social-title {
    font-family: var(--font-sans);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.social-icon {
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.social-block:hover .social-icon {
    transform: translateY(0);
    opacity: 1;
}

/* ===== Footer ===== */
.site-footer {
    background-color: #000;
    color: #fff;
    padding: 60px 0 30px;
    margin-top: 60px;
}

.site-footer .logo {
    color: #fff;
    margin-bottom: 40px;
    display: inline-block;
}

.footer-content-wrapper {
    text-align: center;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-content-wrapper .logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-description {
    color: #999;
    font-size: 14px;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.footer-main-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-main-links li a {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-main-links li a:hover {
    color: #999;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    padding-top: 30px;
    font-size: 12px;
    color: #999;
}



/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .split-container {
        flex-direction: column;
    }
    
    .hero-fixed, .hero-scrollable {
        width: 100%;
    }
    
    .hero-fixed {
        position: relative;
        height: 60vh;
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-interactive-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Issue Page Styles ===== */
.issue-hero-section {
    width: 100%;
    background: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
}

.issue-hero-text {
    width: 50%;
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.issue-header-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.issue-category {
    font-family: var(--font-sans);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-color);
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
}

.issue-main-heading {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 30px;
}

.issue-meta {
    margin-top: 30px;
}

.issue-author {
    font-family: var(--font-sans);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--text-color);
    display: block;
    margin-bottom: 10px;
    line-height: 1.6;
}

.issue-date {
    font-family: var(--font-sans);
    font-size: 11px;
    color: var(--text-secondary);
}

.issue-articles-section {
    padding: 80px 0;
    background: var(--bg-color);
}

.issue-articles-list {
    max-width: 800px;
    margin: 0 auto;
}

.issue-article-item {
    margin-bottom: 60px;
}

.issue-article-title {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 15px;
}

.issue-article-excerpt {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.read-more-btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: #ffffff;
    background-color: #000000;
    padding: 12px 24px;
    border: none;
    text-decoration: none;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.read-more-btn:hover {
    background-color: #333333;
    opacity: 1;
}

/* ===== Article Detail Page Styles ===== */
.article-detail {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
}

.article-meta {
    margin-bottom: 20px;
}

.article-category {
    font-family: var(--font-sans);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

.article-title {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 30px;
    text-align: center;
}

.article-author-info {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    justify-content: center;
    gap: 20px;
}

.article-hero-image {
    margin-bottom: 60px;
}

.article-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-hero-image figcaption,
.article-inline-image figcaption {
    font-family: var(--font-sans);
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 10px;
    text-align: right;
}

.article-body {
    width: 100%;
    font-family: var(--font-serif);
    font-size: 18px;
    line-height: 1.8;
    color: #111;
}

.article-body p {
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.article-body h2 {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 400;
    max-width: 600px;
    margin: 60px auto 30px auto;
}

.dropcap {
    float: left;
    font-size: 80px;
    line-height: 60px;
    padding-top: 4px;
    padding-right: 12px;
    font-family: var(--font-serif);
}

.article-inline-image {
    margin: 60px 0;
}

.article-inline-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-footer {
    text-align: center;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.back-to-issue-btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--text-color);
    transition: opacity 0.2s ease;
}

.back-to-issue-btn:hover {
    opacity: 0.6;
}

/* ===== Responsive Adaptations ===== */
@media (max-width: 1024px) {
    .menu-btn {
        display: flex;
    }
    
    .main-nav {
        display: none;
    }
    
    #main-content {
        padding-top: 125px; /* Back to original height since main-nav is hidden */
    }
}

@media (max-width: 768px) {
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .footer-content-wrapper {
        text-align: left;
    }
    
    .footer-description {
        margin-left: 0;
        margin-right: 0;
    }
    
    .footer-main-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .footer-bottom {
        justify-content: flex-start;
    }
    
    .cover-content .title {
        font-size: 32px;
    }
    
    .social-icon {
        opacity: 1;
        transform: translateY(0);
    }
    
    .issue-hero-section .split-container {
        flex-direction: column;
    }
    
    .issue-hero-section .hero-fixed {
        width: 100%;
        height: 60vh;
        position: relative;
    }
    
    .issue-hero-text {
        width: 100%;
        height: auto;
        padding: 60px 20px;
    }
    
    .issue-articles-section {
        padding: 40px 20px;
    }
    
    .issue-main-heading {
        font-size: 40px;
    }
    
    .article-title {
        font-size: 48px;
    }
    
    .article-body {
        font-size: 18px;
    }
}

/* ==========================================================================
   About Page Styles
   ========================================================================== */

.about-page .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero {
    padding: 100px 0 60px;
    text-align: center;
}

.about-title {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1.1;
}

.about-intro-text {
    font-size: 24px;
    line-height: 1.6;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

.about-intro-text p {
    margin-bottom: 24px;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 40px;
}

.bg-light {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.bg-dark {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

/* What We Believe */
.about-beliefs {
    padding: 80px 0;
}

.belief-content {
    max-width: 600px;
    margin: 0 auto;
}

.belief-highlight {
    font-size: 28px;
    font-family: var(--font-serif);
    line-height: 1.4;
    margin-bottom: 30px;
    font-weight: 500;
}

.belief-sub {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.belief-list {
    list-style: none;
    padding: 0;
}

.belief-list li {
    font-size: 18px;
    padding-left: 24px;
    position: relative;
    margin-bottom: 16px;
}

.belief-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #666;
}

/* What We Do */
.about-services {
    padding: 80px 0;
}

.services-intro {
    font-size: 22px;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 40px;
    text-align: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 24px;
    font-family: var(--font-serif);
    margin-bottom: 16px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Approach & Audience */
.approach-audience-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.bg-dark .section-heading {
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 20px;
}

.approach-col p, .audience-closing {
    font-size: 18px;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 24px;
}

.approach-list, .audience-list {
    list-style: none;
    padding: 0;
}

.approach-list li, .audience-list li {
    font-size: 18px;
    padding-left: 24px;
    position: relative;
    margin-bottom: 16px;
    color: #ddd;
}

.approach-list li::before, .audience-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--white);
}

/* Vision */
.about-vision {
    padding: 100px 0;
    text-align: center;
}

.vision-statement {
    font-size: 28px;
    font-family: var(--font-serif);
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto 60px;
}

.brand-tagline-block {
    margin-top: 40px;
}

.brand-name {
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

.tagline {
    font-size: 40px;
    font-family: var(--font-serif);
    font-style: italic;
    color: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-title {
        font-size: 40px;
    }
    .about-intro-text {
        font-size: 20px;
    }
    .services-grid, .approach-audience-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .vision-statement {
        font-size: 24px;
    }
}


/* ==========================================
   About Page Overrides
   ========================================== */
/* ── About Page Overrides ── */
        body.about-page { background: #fff; color: #111; }

        /* Hero */
        .ab-hero {
            background: #111;
            color: #fff;
            min-height: 520px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            position: relative;
            overflow: hidden;
        }
        .ab-hero-content {
            padding: 120px 60px 80px;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .ab-hero-eyebrow {
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #aaa;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .ab-hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: #fff; display: inline-block; }
        .ab-hero-h1 {
            font-size: 56px;
            font-weight: 300;
            line-height: 1.1;
            margin-bottom: 28px;
            letter-spacing: -1px;
        }
        .ab-hero-lead {
            font-size: 15px;
            color: #aaa;
            line-height: 1.7;
            max-width: 360px;
            margin-bottom: 40px;
        }
        .ab-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
        .btn-gold {
            background: #fff;
            color: #111;
            padding: 14px 28px;
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: background 0.2s, color 0.2s;
        }
        .btn-gold:hover { background: #e5e5e5; }
        .btn-outline-white {
            border: 1px solid rgba(255,255,255,0.4);
            color: #fff;
            padding: 14px 28px;
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            font-weight: 500;
            transition: border-color 0.2s;
        }
        .btn-outline-white:hover { border-color: #fff; }
        .ab-hero-image {
            position: relative;
            overflow: hidden;
        }
        .ab-hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.5;
            filter: grayscale(100%);
        }

        /* About Section */
        .ab-about { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 100px 80px; align-items: center; }
        .ab-about-img { position: relative; }
        .ab-about-img img { width: 100%; height: 420px; object-fit: cover; display: block; filter: grayscale(100%); }
        .ab-about-text {}
        .ab-section-label {
            font-size: 10px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: #888;
            margin-bottom: 20px;
        }
        .ab-about-h2 { font-size: 36px; font-weight: 400; line-height: 1.2; margin-bottom: 28px; }
        .ab-about-text p { font-size: 15px; line-height: 1.8; color: #444; margin-bottom: 18px; }
        .ab-quote {
            border-left: 3px solid #111;
            padding: 12px 24px;
            font-size: 20px;
            font-style: italic;
            color: #111;
            margin-top: 32px;
            line-height: 1.4;
        }

        /* Beliefs */
        .ab-beliefs { padding: 80px; background: #f5f5f5; }
        .ab-beliefs-top { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; margin-bottom: 60px; }
        .ab-beliefs-statement { font-size: 34px; font-weight: 300; line-height: 1.3; }
        .ab-beliefs-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
        .ab-belief-card { text-align: center; padding: 32px 20px; background: #fff; border: 1px solid #e5e5e5; }
        .ab-belief-icon { width: 40px; height: 40px; margin: 0 auto 16px; opacity: 0.6; }
        .ab-belief-card h4 { font-size: 14px; font-weight: 600; margin-bottom: 10px; }
        .ab-belief-card p { font-size: 13px; color: #666; line-height: 1.6; margin: 0; }

        /* What We Do */
        .ab-services { padding: 80px; }
        .ab-services-header { margin-bottom: 48px; }
        .ab-services-header p { font-size: 28px; font-weight: 400; }
        .ab-services-header strong { font-size: 28px; font-weight: 700; }
        .ab-services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; background: #ddd; }
        .ab-service-card {
            background: #1a1a1a;
            color: #fff;
            padding: 50px 44px;
            position: relative;
            overflow: hidden;
            min-height: 220px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }
        .ab-service-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
            z-index: 1;
        }
        .ab-service-card img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.35;
        }
        .ab-service-content { position: relative; z-index: 2; }
        .ab-service-icon { font-size: 22px; margin-bottom: 14px; opacity: 0.8; }
        .ab-service-card h3 { font-size: 18px; font-weight: 500; margin-bottom: 10px; }
        .ab-service-card p { font-size: 13px; color: #bbb; line-height: 1.6; margin-bottom: 18px; }
        .ab-service-link {
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #fff;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            opacity: 0.7;
            transition: opacity 0.2s;
        }
        .ab-service-link:hover { opacity: 1; }
        .ab-service-link::after { content: '→'; }

        /* Approach + Audience */
        .ab-approach-audience { display: grid; grid-template-columns: 1fr 1fr; background: #f5f5f5; }
        .ab-approach { padding: 80px; border-right: 1px solid #e0e0e0; }
        .ab-audience { padding: 80px; }
        .ab-approach h2, .ab-audience h2 { font-size: 13px; letter-spacing: 4px; text-transform: uppercase; color: #888; margin-bottom: 28px; }
        .ab-approach-statement { font-size: 40px; font-weight: 300; line-height: 1.2; margin-bottom: 40px; }
        .ab-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
        .ab-step-icon { font-size: 24px; margin-bottom: 10px; color: #111; }
        .ab-step h4 { font-size: 13px; font-weight: 600; margin-bottom: 6px; }
        .ab-step p { font-size: 12px; color: #777; line-height: 1.5; margin: 0; }
        .ab-audience-h2-main { font-size: 36px; font-weight: 300; margin-bottom: 32px; }
        .ab-audience-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
        .ab-tag {
            border: 1px solid #ccc;
            padding: 10px 20px;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 8px;
            color: #333;
        }
        .ab-tag-icon { color: #111; }
        .ab-audience-closing { font-size: 15px; color: #555; line-height: 1.7; font-style: italic; }

        /* Vision */
        .ab-vision {
            background: #0d0d0d;
            color: #fff;
            padding: 120px 80px;
            text-align: center;
        }
        .ab-vision-label { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: #aaa; margin-bottom: 40px; }
        .ab-vision-statement { font-size: 36px; font-weight: 300; line-height: 1.5; max-width: 760px; margin: 0 auto 60px; color: #e8e8e8; }
        .ab-tagline-name { font-size: 14px; letter-spacing: 3px; text-transform: uppercase; color: #888; margin-bottom: 12px; }
        .ab-tagline { font-size: 44px; font-style: italic; font-weight: 300; color: #fff; }

        /* Footer overrides */
        .ab-footer { background: #0d0d0d; color: #fff; padding: 70px 80px 30px; }
        .ab-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; padding-bottom: 50px; border-bottom: 1px solid #2a2a2a; margin-bottom: 30px; }
        .ab-footer-logo img { filter: brightness(0) invert(1); margin-bottom: 16px; }
        .ab-footer-desc { font-size: 13px; color: #666; line-height: 1.7; }
        .ab-footer-col h4 { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: #888; margin-bottom: 20px; }
        .ab-footer-col ul { list-style: none; padding: 0; margin: 0; }
        .ab-footer-col ul li { margin-bottom: 12px; }
        .ab-footer-col ul li a { color: #aaa; text-decoration: none; font-size: 14px; transition: color 0.2s; }
        .ab-footer-col ul li a:hover { color: #fff; }
        .ab-social { display: flex; gap: 16px; }
        .ab-social a { color: #aaa; text-decoration: none; font-size: 14px; font-weight: 600; transition: color 0.2s; }
        .ab-social a:hover { color: #fff; }
        .ab-footer-bottom { font-size: 12px; color: #555; text-align: center; }

        /* Responsive */
        @media (max-width: 900px) {
            .ab-hero, .ab-about, .ab-approach-audience { grid-template-columns: 1fr; }
            .ab-hero-image { display: none; }
            .ab-hero-content { padding: 100px 30px 60px; }
            .ab-hero-h1 { font-size: 40px; }
            .ab-about, .ab-beliefs, .ab-services, .ab-approach, .ab-audience, .ab-vision, .ab-footer { padding: 60px 30px; }
            .ab-beliefs-top, .ab-beliefs-cards, .ab-services-grid, .ab-steps, .ab-footer-grid { grid-template-columns: 1fr; }
            .ab-beliefs-cards { grid-template-columns: 1fr 1fr; }
        }

/* ==========================================================================
   YouTube Carousel Section
   ========================================================================== */
.youtube-carousel-section {
    padding: 60px 0;
    background-color: var(--bg-color);
}

.youtube-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.youtube-carousel-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Hide standard Firefox scrollbar */
    padding: 10px 0;
}

/* Hide standard Webkit scrollbar */
.youtube-carousel-slider::-webkit-scrollbar {
    display: none;
}

.youtube-video-item {
    flex: 0 0 340px; /* Width of the video item card */
    scroll-snap-align: start;
    transition: transform var(--transition-speed) ease;
}

.youtube-video-item .video-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.youtube-video-item .thumbnail-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* Standard widescreen video ratio */
    overflow: hidden;
    background-color: #000;
}

.youtube-video-item .thumbnail-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.youtube-video-item:hover .thumbnail-wrapper img {
    transform: scale(1.05);
}

/* Glassmorphism Play Button Overlay */
.play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0.8;
    transition: opacity var(--transition-speed) ease, background-color var(--transition-speed) ease;
}

.youtube-video-item:hover .play-button-overlay {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.4);
}

.play-icon-glass {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    
    /* Frosted glass effect */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.25);
    
    /* Play button padding offset to align triangle visually */
    padding-left: 4px;
    
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.youtube-video-item:hover .play-icon-glass {
    transform: scale(1.15);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 40px 0 rgba(255, 255, 255, 0.2), 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.youtube-video-item .video-meta {
    padding: 16px 0;
}

.youtube-video-item .video-category {
    font-family: var(--font-sans);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
    display: block;
}

.youtube-video-item .video-title {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-color);
    transition: color var(--transition-speed) ease;
}

.youtube-video-item:hover .video-title {
    color: var(--text-secondary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Carousel Control Buttons */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateY(-25px); /* Offset title space */
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.carousel-nav-btn:hover {
    background-color: var(--hover-bg);
    border-color: var(--text-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.prev-btn {
    left: -22px;
}

.next-btn {
    right: -22px;
}

.carousel-nav-btn:active {
    transform: translateY(-50%) translateY(-25px) scale(0.95);
}

/* Responsiveness for Carousel */
@media (max-width: 768px) {
    .youtube-video-item {
        flex: 0 0 280px; /* Smaller cards on mobile */
    }
    .carousel-nav-btn {
        display: none; /* Swipe is standard on touch devices */
    }
    .youtube-carousel-slider {
        padding: 10px 24px; /* Align scroll boundary to layout edges */
        margin: 0 -24px;
    }
}

