@font-face {
    font-family: "span";
src: url('../fonts/d.woff') format('woff'),
       url('../fonts/a') format('opentype'),
       url('../fonts/l') format('opentype');
           font-display: auto;
    font-style: italic;
    font-weight: 200;
    font-stretch: normal;
}
:root{
  --bg: #f6f1ee; --accent: #B18B67; --text: #1C1613;
  --serif: 'span', serif; --sans: 'Jost', sans-serif;
  --inter: 'Inter', sans-serif;
  --theme-font-h1_font-family: span, serif;
}
html,body{height:100%;}
body{margin:0; font-family:var(--inter); background:var(--bg); color:var(--text);}
h1, h2, h3, h4, h5, h6 {font-family:var(--serif);}
p {font-family:var(--inter);}
.wrap{max-width:1200px; margin:0 auto; padding:0 20px;}

/* Header */
/* Initial State: Transparent */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, padding 0.3s ease;
    background-color: transparent;
    padding: 20px 0; /* Slightly larger padding at top */
}

/* Scrolled State: Black Background */
.site-header.scrolled {
    background-color: rgba(0, 0, 0, 0.95); /* Deep black with slight opacity */
    padding: 10px 0; /* Shrinks slightly for a sleek look */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Ensure Nav links are readable on both states */
.para-menu a, .site-logo {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Optional: change link color when scrolled if your background was light */
.site-header.scrolled .para-menu a {
    color: #f1f1f1;
}





.site-title{font-family:var(--serif); font-size:20px; text-decoration:none; color:var(--text);}

/* Hero */
.hero-inner{display:flex; gap:40px; align-items:center; padding:80px 0;}
.hero-left{flex:0 0 60%;}
.hero-right{flex:0 0 40%;}
.hero-title{font-family:var(--serif); font-size:60px; line-height:1.05; margin:0 0 10px;}
.hero-sub{font-family:var(--serif); font-size:24px; margin:0 0 16px; color:#6b635e}
.hero-lead{font-size:16px; margin-bottom:20px}
.btn{display:inline-block; padding:12px 28px; text-decoration:none;}
.btn-primary{background:var(--accent); color:#fff; border-radius:0;}

.hero-image-wrap{background:#efe8e2; padding:20px; display:flex; justify-content:center; align-items:center;}
.hero-image{max-width:100%; height:auto; display:block;}

/* Services */
.services-inner{padding:60px 0;}
.services-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:30px;}
.service-item{background:transparent; padding:20px}
.service-icon{font-size:36px; color:var(--accent); margin-bottom:12px}
.service-title{font-family:var(--serif); margin:0}

/* Overlap */
.overlap-inner{display:flex; gap:40px; align-items:center; padding:80px 0;}
.overlap-left{flex:0 0 55%; position:relative}
.overlap-right{flex:0 0 45%}
.overlap-wrap{position:relative}
.overlap-wrap .img-large{width:100%; display:block}
.overlap-wrap .img-small{position:absolute; right:8%; bottom:-50px; z-index:10; width:320px; box-shadow:0 8px 30px rgba(0,0,0,0.08)}

/* Footer */
.site-footer{background:#1b1412; color:#fff; padding:0;}
.footer-inner{display:grid; grid-template-columns:1.5fr 1fr 1fr 1.5fr; gap:60px; padding:80px 0;}

/* Footer Brand */
.footer-logo{display:flex; align-items:center; gap:12px; margin-bottom:20px;}
.logo-icon{font-size:28px; color:var(--accent);}
.logo-text{font-family:var(--serif); font-size:24px; font-weight:700; letter-spacing:-0.02em;}
.footer-tagline{font-size:15px; line-height:1.7; color:rgba(255,255,255,0.7); margin:0 0 24px; max-width:280px;}

/* Social Links */
.footer-social{display:flex; gap:12px;}
.social-link{width:44px; height:44px; border:1px solid rgba(255,255,255,0.15); border-radius:50%; display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,0.7); transition:all 0.3s ease;}
.social-link:hover{background:var(--accent); border-color:var(--accent); color:#fff; transform:translateY(-3px);}

/* Footer Headings */
.footer-heading{font-family:var(--serif); font-size:16px; font-weight:600; color:#fff; margin:0 0 24px; letter-spacing:0.05em; text-transform:uppercase;}

/* Footer Links */
.footer-menu{list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:14px;}
.footer-menu a{color:rgba(255,255,255,0.7); text-decoration:none; font-size:15px; transition:all 0.3s ease; position:relative;}
.footer-menu a:hover{color:var(--accent); padding-left:8px;}
.footer-menu a::before{content:'→'; position:absolute; left:0; opacity:0; transform:translateX(-8px); transition:all 0.3s ease; color:var(--accent);}
.footer-menu a:hover::before{opacity:1; transform:translateX(0);}

/* Contact List */
.contact-list{list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:18px;}
.contact-list li{display:flex; align-items:center; gap:14px;}
.contact-icon{width:36px; height:36px; background:rgba(177,139,103,0.15); border-radius:8px; display:flex; align-items:center; justify-content:center; color:var(--accent); font-size:16px; flex-shrink:0;}
.contact-list a{color:rgba(255,255,255,0.7); text-decoration:none; font-size:15px; transition:color 0.3s ease;}
.contact-list a:hover{color:var(--accent);}
.contact-list span{color:rgba(255,255,255,0.7); font-size:15px;}

/* Newsletter */
.newsletter-text{font-size:15px; line-height:1.6; color:rgba(255,255,255,0.7); margin:0 0 20px;}
.newsletter-form{display:flex; flex-direction:column; gap:12px;}
.newsletter-form input{background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.15); border-radius:8px; padding:14px 16px; color:#fff; font-size:15px; outline:none; transition:all 0.3s ease;}
.newsletter-form input::placeholder{color:rgba(255,255,255,0.4);}
.newsletter-form input:focus{border-color:var(--accent); background:rgba(255,255,255,0.12);}
.newsletter-btn{background:var(--accent); border:none; border-radius:8px; padding:14px 24px; color:#fff; font-family:var(--serif); font-size:15px; font-weight:600; cursor:pointer; display:flex; align-items:center; justify-content:center; gap:8px; transition:all 0.3s ease;}
.newsletter-btn:hover{background:#9a7658; transform:translateY(-2px);}
.btn-arrow{transition:transform 0.3s ease;}
.newsletter-btn:hover .btn-arrow{transform:translateX(4px);}

/* Footer Bottom */
.footer-bottom{border-top:1px solid rgba(255,255,255,0.08); padding:24px 0;}
.footer-bottom-inner{display:flex; justify-content:space-between; align-items:center;}
.copyright{font-size:14px; color:rgba(255,255,255,0.5); margin:0;}
.footer-bottom-links{display:flex; align-items:center; gap:16px;}
.footer-bottom-links a{font-size:14px; color:rgba(255,255,255,0.5); text-decoration:none; transition:color 0.3s ease;}
.footer-bottom-links a:hover{color:var(--accent);}
.footer-bottom-links .divider{color:rgba(255,255,255,0.2);}

/* Responsive Footer */
@media (max-width:1024px){
  .footer-inner{grid-template-columns:1fr 1fr; gap:40px; padding:60px 0;}
  .footer-brand{grid-column:1 / -1;}
}
@media (max-width:768px){
  .footer-inner{grid-template-columns:1fr; gap:40px; padding:50px 0;}
  .footer-bottom-inner{flex-direction:column; gap:16px; text-align:center;}
}

/* Responsive */
@media (max-width:1024px){
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .hero-title{font-size:42px}
}
@media (max-width:768px){
  .hero-inner, .overlap-inner{flex-direction:column}
  .hero-right{order:2}
  .hero-left{order:1}
  .services-grid{grid-template-columns:1fr}
  .overlap-wrap .img-small{position:static; margin-top:-20px; width:180px}
}
/* Header Layout */
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.para-site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 30px 0;
    background: transparent;
    transition: background 0.3s ease;
}
.v
.para-site-header.scrolled {
    background: #000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.para-container {
    margin: 0 auto;
    padding: 0 50px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* Left, Middle, Right */
    align-items: center;
}

.para-logo-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.para-logo-center img {
    max-width: 120px;
    height: auto;
}

/* Mobile hamburger button (hidden by default, shown via media query) */
.mobile-menu-toggle {
    display: none;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 24px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 100;
}

.mobile-menu-toggle .hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    margin: 4px 0;
}
.para-nav-left, 
.para-nav-right {
    flex: 1; 
}
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Give the left and right sides equal width so the center is true center */
.para-nav-left, 
.para-nav-right {
    flex: 1; 
}

.para-logo-center {
    flex: 0 0 auto;
    text-align: center;
}

.para-nav-right {
    text-align: right;
}

/* Hide primary nav on mobile, keep CTA and make room for hamburger */
@media (max-width: 1024px) {
    .para-nav-left {
        display: none;
    }

    .para-site-header .para-nav-right {
        display: flex;
        justify-content: flex-end;
    }

    .para-site-header .para-container {
        position: relative;
        padding-right: 72px; /* space for hamburger button */
    }

    .mobile-menu-toggle {
        display: block;
        position: absolute;
    }
}

/* Extra-small screens: hide header CTA button */
@media (max-width: 371px) {
    .para-site-header .para-nav-right {
        display: none;
    }
}
.para-nav-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.para-nav-left .para-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.para-nav-left .para-menu a {
    text-decoration: none;
    color: var(--text);
   font-family: 'span', serif;
    font-size: 16px;
    transition: color 0.3s ease;
    color: #fff;
}

@media (max-width: 1177px) {
    .para-nav-left .para-menu a {
        font-size: 12px;
    }
}

.para-nav-left .para-menu a:hover {
    color: var(--accent);
}

.para-nav-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

/* Mobile overlay/nav are hidden by default on desktop */
.mobile-menu-overlay,
.mobile-nav {
    display: none;
}

/* Mobile slide-out nav */
@media (max-width: 1024px) {
    .mobile-menu-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 98;
    }

    .mobile-menu-overlay.is-active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: #1C1613;
        color: #fff;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        padding: 80px 32px 32px;
        z-index: 99;
        flex-direction: column;
        gap: 32px;
        overflow-y: auto;
    }

    .mobile-nav.is-active {
        transform: translateX(0);
    }

    .mobile-nav .mobile-menu {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .mobile-nav .mobile-menu a {
        color: #fff;
        text-decoration: none;
        font-family: 'span', serif;
        font-size: 1rem;
    }

    .mobile-cta {
        margin-top: 32px;
    }
}

/* Full Width/Height Hero */
.para-hero-full {
    height: 100vh;
    max-height: 100vh;
    box-sizing: border-box;
    width: 100%;
    background: url('../img/hero-banner.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    color: #fff;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.hero-main-title {
   font-family: 'span', serif;
    font-size: clamp(3.5rem, 8vw, 5.5rem);
      line-height: 0.8;
    font-size: 70px;
    margin: 0;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.hero-subtitle {
   font-family: 'span', serif;
    font-size: clamp(1.75rem, 4vw, 4.5rem);
    line-height: 1.2;
    margin: 0;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    max-width: 550px;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

/* Section Spacing */
section {
    padding: 120px 0 140px 0;
}

/* Button Styles */
.para-btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
   font-family: 'span', serif;
    font-size: 1rem;
    font-weight: 400;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.para-btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.para-btn-primary:hover {
    background: #9a7658;
    border-color: #9a7658;
}

.para-btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.para-btn-secondary:hover {
    background: #fff;
    color: var(--accent);
    border-color: #fff;
}

/* Coach Profile Section */
.para-coach-profile {
    background: var(--bg);
}

.coach-content {
      display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-content: space-evenly;
    align-items: baseline;
    justify-content: space-evenly;
}

.coach-left {
        display: flex;
    justify-content: flex-end;
    align-content: flex-end;
    flex-wrap: nowrap;
    flex-direction: column;
}

.coach-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.coach-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section-title {
   font-family: 'span', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--accent);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.coach-name {
   font-family: 'span', serif;
    font-size: 2.25rem;
    line-height: 1.2;
    margin: 0;
    color: var(--text);
    font-weight: 600;
}

.coach-bio {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text);
    margin: 0;
}

.coach-quote {
   font-family: 'span', serif;
    font-size: 1.75rem;
    font-style: italic;
    color: var(--accent);
    border-left: 4px solid var(--accent);
    padding-left: 24px;
    margin: 0;
    line-height: 1.4;
}

.coach-highlights {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: 16px;
}

.highlight-item {
    display: block;
    gap: 16px;
    align-items: flex-start;
  width: 33.33%;
    padding: 20px;
    margin-top: 10px;
}

.highlight-item i {
    font-size: 28px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 4px;
}

.highlight-item p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text);
    margin: 0;
   font-family: 'span', serif;
}
.highlight-item img{
    width: 50px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 4px;
margin-top: 4px;
    margin-bottom: 10px;
    border-bottom: 1px solid;
    padding-bottom: 18px;
}

/* Responsive layout for coach highlights */
@media (max-width: 767px) {
    .coach-highlights {
        flex-direction: column;
        gap: 16px;
    }

    .highlight-item {
        width: 100%;
        padding: 16px 0;
        margin-top: 0;
        text-align: center;
    }
}
.center-highlight{

border-left: 2px solid rgba(177, 139, 103, 0.15);
border-right: 2px solid rgba(177, 139, 103, 0.15);

}
/* Philosophy Section - Creative Premium */
.para-philosophy {
    background: linear-gradient(135deg, #1a1410 0%, #2a1f18 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.para-philosophy::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(177, 139, 103, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.para-philosophy::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(177, 139, 103, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.philosophy-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Visual Side */
.philosophy-visual {
    position: relative;
}

.philosophy-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
}




.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.3);
}

.placeholder-icon {
    font-size: 48px;
    color: var(--accent);
    opacity: 0.4;
}

.placeholder-text {
    font-family: var(--serif);
    font-size: 1.125rem;
    letter-spacing: 0.05em;
}
   
.placeholder-content img, .philosophy-accent-box img {
    width: 100%;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 4px;
    border-radius: 10px;
}

.philosophy-accent-box {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: 12px;
   
}

.philosophy-decorative-line {
    position: absolute;
    top: 40px;
    left: -40px;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

/* Content Side */
.philosophy-content {
    display: flex;
    align-items: center;
}

.philosophy-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.philosophy-pretitle {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0;
}

.philosophy-title {
    font-family: var(--serif);
    font-size: 3.5rem;
    line-height: 1.1;
    color: #fff;
    margin: 8px 0;
    font-weight: 700;
}

.philosophy-highlight {
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--accent);
    margin: 0;
    font-weight: 600;
}

.philosophy-description {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin: 16px 0 0 0;
    max-width: 500px;
}

/* Builds Section - Full Width Below */
.philosophy-builds {
    grid-column: 1 / -1;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 20px;
}

.builds-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0 0 50px 0;
    text-align: center;
}

.builds-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.build-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 10px;
    position: relative;
    transition: all 0.4s ease;
}

.build-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(177, 139, 103, 0.3);
    transform: translateY(-8px);
}

.build-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
}

.build-card .build-number {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.15;
    position: absolute;
    top: 20px;
    right: 24px;
    line-height: 1;
}

.build-card .build-content h5 {
    font-family: var(--serif);
    font-size: 1rem;
    line-height: 1.35;
    color: #fff;
    margin: 0 0 12px 0;
    font-weight: 400;
}

.build-card .build-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Responsive Philosophy */
@media (max-width: 1024px) {
    .philosophy-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .philosophy-visual {
        max-width: 400px;
        margin: 0 auto;
    }

    .philosophy-content {
        justify-content: center;
        text-align: center;
    }

    .philosophy-inner {
        align-items: center;
    }

    .philosophy-title {
        font-size: 2.75rem;
    }

    .philosophy-highlight {
        font-size: 1.5rem;
    }

    .builds-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .para-philosophy {
        padding: 100px 0;
    }

    .philosophy-wrapper {
        padding: 0 20px;
    }

    .philosophy-title {
        font-size: 2rem;
    }

    .philosophy-highlight {
        font-size: 1.25rem;
    }

    .philosophy-description {
        font-size: 1rem;
    }

    .build-card {
        padding: 32px 24px;
    }

    .build-card .build-content h5 {
        font-size: 1.125rem;
    }
}
.coaching-model-section {
    padding: 140px 0;
    background: #ffffff;
    border-top: 1px solid #eee;
}

.model-header {
    margin-bottom: 80px;
}

.framework-title {
    font-family: 'span', serif;
    font-size: 3rem;
    margin: 10px 0;
    line-height: 1.1;
}

.framework-subtitle {
    font-family: 'Poppins', sans-serif;
    color: #888;
    font-size: 1.1rem;
    max-width: 500px;
}

/* The Grid System */
.framework-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0; /* Cards will be separated by internal borders */
    border-top: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
}

.step-card {
    padding: 40px;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    transition: background 0.4s ease;
}

.step-card:hover {
    background: #fcfcfc;
}

.step-number {
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #d4b08c; /* Gold Accent */
    margin-bottom: 30px;
}

.step-title {
    font-family: 'span', serif;
    font-size: 2rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.step-list {
    list-style: none;
    padding: 0;
}

.step-list li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

/* The ✦ Icon */
.step-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #d4b08c;
    font-size: 0.8rem;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .framework-grid { grid-template-columns: 1fr; }
    .step-card { padding: 40px; }
}
/* Why Coaching Matters Section */
.para-impact-section {
    background: linear-gradient(180deg, #fafaf8 0%, #f5f2ed 100%);
    padding: 160px 0;
    position: relative;
}

.impact-header {
    max-width: 900px;
    margin: 0 auto 100px;
    text-align: center;
}

.impact-title {
   font-family: 'span', serif;
    font-size: 2.75rem;
    line-height: 1.2;
    margin: 16px 0 0 0;
    color: var(--text);
    font-weight: 700;
}

.impact-intro {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #888;
    margin: 24px 0 0 0;
}

.impact-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.impact-card {
    background: #fff;
    border-radius: 12px;
    padding: 48px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.impact-card:hover {
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

.card-header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.card-icon-box {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stagnation-icon {
    background: linear-gradient(135deg, #fee5e5 0%, #fad5d5 100%);
    color: #c53a3a;
}

.changes-icon {
    background: linear-gradient(135deg, #e5f3ed 0%, #d5eae0 100%);
    color: #2d8659;
}

.card-icon-box i {
    font-size: 40px;
}

.card-title {
   font-family: 'span', serif;
    font-size: 1.5rem;
    line-height: 1.3;
    margin: 0;
    color: var(--text);
    font-weight: 700;
}

.impact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.impact-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.impact-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border-radius: 50%;
}

.stagnation-list .impact-icon {
    color: #c53a3a;
}

.changes-list .impact-icon {
    color: #2d8659;
}

.impact-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
}

.impact-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.arrow-icon {
    font-size: 2.5rem;
    color: var(--accent);
    font-weight: bold;
    opacity: 0.6;
}

.impact-outcome {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px;
    background: linear-gradient(135deg, #1a1410 0%, #2a1f18 100%);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

.outcome-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0 0 24px 0;
}

.outcome-statement {
   font-family: 'span', serif;
    font-size: 2rem;
    line-height: 1.5;
    color: #fff;
    margin: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.accent-text {
    color: var(--accent);
    font-weight: 700;
}

/* Industries & Engagement Section */
.para-industries-section {
    background: linear-gradient(to bottom, #fff 0%, #fafaf8 100%);
    padding: 160px 0;
    position: relative;
   
}

.industries-header {
    max-width: 800px;
    margin: 0 auto 100px;
    text-align: center;
}

.industries-title {
   font-family: 'span', serif;
    font-size: 2.75rem;
    line-height: 1.2;
    margin: 16px 0 0 0;
    color: var(--text);
    font-weight: 700;
}

.industries-subtitle {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #888;
    margin: 24px 0 0 0;
}

.industries-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.industries-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.industries-section-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section-header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.page-template-page-coaching .section-header {
      display: block;
}
.section-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f0d9c8 0%, #ead6c1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.section-icon-box.engagement-icon {
    background: linear-gradient(135deg, #deefd8 0%, #d5e8cf 100%);
    color: #2d8659;
}

.section-icon-box i {
    font-size: 32px;
}

.section-heading {
   font-family: 'span', serif;
    font-size: 1.625rem;
    line-height: 1.3;
    margin: 0;
    color: var(--text);
    font-weight: 700;
}

.industries-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.industry-badge {
    padding: 16px 24px;
    background: #fff;
    border: 1px solid #e8e4df;
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    padding-left: 24px;
}

.industry-badge:hover {
    border-color: var(--accent);
    border-left-color: var(--accent);
    background: rgba(177, 139, 103, 0.04);
    box-shadow: 0 4px 12px rgba(177, 139, 103, 0.1);
}

.engagement-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.engagement-card {
    padding: 28px 24px;
    background: #fff;
    border: 1px solid #e8e4df;
    border-radius: 8px;
    transition: all 0.4s ease;
    position: relative;
    padding-left: 80px;
}

.engagement-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(177, 139, 103, 0.12);
    transform: translateX(8px);
}

.engagement-number {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
   font-family: 'span', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.5;
}

.engagement-title {
   font-family: 'span', serif;
    font-size: 1.0625rem;
    line-height: 1.3;
    margin: 0 0 8px 0;
    color: var(--text);
    font-weight: 700;
}

.engagement-desc {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #888;
    margin: 0;
}

.industries-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f2ed 0%, #efe8e2 100%);
    border-radius: 12px;
    min-height: 550px;
    border: 2px dashed rgba(177, 139, 103, 0.25);
    grid-column: 1 / -1;
}

.visual-placeholder {
    text-align: center;
    color: #999;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.visual-placeholder i {
    font-size: 80px;
    color: rgba(177, 139, 103, 0.2);
}

.visual-placeholder p {
   font-family: 'span', serif;
    font-size: 1.5rem;
    margin: 0;
    color: var(--accent);
    font-weight: 600;
}

.visual-placeholder span {
    font-size: 0.95rem;
    color: #aaa;
}

/* Scroll Indicator */
.para-scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #fff;
   font-family: 'span', serif;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.para-scroll-indicator:hover {
    opacity: 0.7;
}

.para-scroll-indicator .arrow-down {
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Thought Leadership Section */
.para-thought-leadership {
    background: linear-gradient(to bottom, #fafaf8 0%, #f5f2ed 100%);
    padding: 80px 0;
    position: relative;
}

.thought-header {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.thought-header .section-title {
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 16px 0;
}

.thought-title {
   font-family: 'span', serif;
    font-size: 2.75rem;
    line-height: 1.2;
    margin: 0 0 16px 0;
    color: var(--text);
    font-weight: 700;
}

.thought-subtitle {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #888;
    margin: 0;
}

.thought-content {
    display: flex;
    flex-direction: column;
    gap: 100px;
    margin-bottom: 100px;
}

/* Blog Section */
.blog-section {
}

.content-subheading {
    font-family: 'span', serif;
    font-size: 1.875rem;
    line-height: 1.3;
    margin: 0 0 40px 0;
    color: var(--text);
    font-weight: 700;
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-image {
    width: 100%;
    height: 437px;
    background: linear-gradient(135deg, rgba(177, 139, 103, 0.1) 0%, rgba(177, 139, 103, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(177, 139, 103, 0.1);
    overflow: hidden;
}

.image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background: linear-gradient(135deg, rgba(177, 139, 103, 0.08) 0%, rgba(177, 139, 103, 0.02) 100%);
}

.image-placeholder i {
    font-size: 48px;
    color: var(--accent);
    opacity: 0.4;
}

.blog-content {
    padding: 32px 0;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-category {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    font-weight: 300;
}

.blog-title a {
    font-family: 'span', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.25rem);
    line-height: 1.2;
    margin: 0;
    color: var(--text) !important;
    font-weight: 400;
    text-decoration: none;
}

.blog-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: #888;
    margin: 0;
    flex: 1;
    margin-bottom: 16px;
}

.blog-link {
    font-size: 0.9em;letter-spacing: 1px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 300;
    text-transform: uppercase;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.blog-link:hover {
    margin-left: 8px;
}

/* Videos Section */
.videos-section {
    margin-top: 40px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-card {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #2a2420 0%, #3d3530 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.video-thumbnail i {
    position: absolute;
    font-size: 48px;
    color: var(--accent);
    opacity: 0.3;
}

.play-button {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.video-card:hover .play-button {
    transform: scale(1.15);
    box-shadow: 0 8px 24px rgba(177, 139, 103, 0.3);
}

.video-title {
   font-family: 'span', serif;
    font-size: 1.25rem;
    line-height: 1.4;
    margin: 0 0 8px 0;
    color: var(--text);
    font-weight: 700;
    transition: color 0.3s ease;
}

.video-card:hover .video-title {
    color: var(--accent);
}

.video-duration {
    font-size: 0.9375rem;
    color: #999;
    margin: 0;
}

/* Founder Video Section */
.founder-video-section {
    position: relative;
    padding: 0;
    margin: 60px 0;
    text-align: center;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    align-items: stretch;
    overflow: hidden;
    background: white;
    border-radius: 16px;
}

.founder-video-section .founder-intro {
    padding: 80px 60px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 2nd column: background image + video */
.founder-video-col {
    position: relative;
    min-height: 320px;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-video-col .founder-video {
    position: relative;
    z-index: 1;
}

.founder-video-col .video-label {
    color: #fff;
}

.founder-intro {
    text-align: left;
}

.founder-heading {
   font-family: 'span', serif;
    font-size: 2rem;
    line-height: 1.3;
    margin: 0 0 8px 0;
    color: var(--text);
    font-weight: 700;
}

.founder-subtitle {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--accent);
    margin: 0;
    font-weight: 600;
}

.founder-video {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.video-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

button.video-wrapper.founder-video-trigger {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font: inherit;
    text-align: center;
}

.video-thumbnail-large {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #2a2420 0%, #3d3530 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.video-thumbnail-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(177, 139, 103, 0.2);
}

.video-thumbnail-large i {
    font-size: 56px;
    color: var(--accent);
    opacity: 0.3;
}

.play-button-large {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 36px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.video-thumbnail-large:hover .play-button-large {
    transform: scale(1.1);
}

.video-label {
    font-size: 1.0625rem;
    color: var(--text);
    margin: 0;
}

/* Founder Video Modal (home page) */
.founder-video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.founder-video-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.fvm-inner {
    position: relative;
    width: 90%;
    max-width: 980px;
}

.fvm-close {
    position: absolute;
    top: -48px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.2rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
    padding: 0;
    transition: opacity 0.2s ease;
}

.fvm-close:hover {
    opacity: 1;
}

.fvm-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.fvm-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* CTA Section */
.thought-cta {
    text-align: center;
    padding: 60px 0 0 0;
}

.para-btn-primary {
    display: inline-block;
    padding: 16px 48px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
   font-family: 'span', serif;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--accent);
    cursor: pointer;
}

.para-btn-primary:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(177, 139, 103, 0.15);
}

/* Responsive Fixes */
@media (max-width: 1024px) {
    .nav-grid {
        grid-template-columns: 1fr 1fr; /* Drop middle logo or nav for mobile */
    }
    .para-nav-left { display: none; } /* Use a hamburger menu instead */
}
.para-btn-nav {
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.para-btn-nav:hover {
    border: 1px solid #B18B67;
    background-color: #B18B67;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-main-title {
        font-size: clamp(2rem, 6vw, 3.5rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1.25rem, 3vw, 1.75rem);
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    section {
        padding: 80px 0;
    }
    
    /* Coach Profile Responsive */
    .coach-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .coach-name {
        font-size: 1.75rem;
    }
    
    /* Philosophy Responsive */
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .philosophy-title {
        font-size: 2.25rem;
    }
    
    .philosophy-highlight {
        font-size: 1.5rem;
    }
    
    .build-item {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }
    
    .build-number {
        font-size: 1.75rem;
    }
    
    .build-content h5 {
        font-size: 1.25rem;
    }
    
    .para-philosophy {
        padding: 100px 0;
    }
    
    /* Coaching Model Responsive */
    .model-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .model-title {
        font-size: 1.875rem;
    }
    
    .model-card {
        padding: 32px 24px;
    }
    
    .model-number {
        font-size: 2.25rem;
    }
    
    .model-card-title {
        font-size: 1.125rem;
    }
    
    .para-coaching-model {
        padding: 100px 0;
    }
    
    /* Impact Section Responsive */
    .impact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .impact-arrow {
        display: none;
    }
    
    .impact-title {
        font-size: 1.875rem;
    }
    
    .card-title {
        font-size: 1.25rem;
    }
    
    .impact-card {
        padding: 40px 32px;
    }
    
    .impact-outcome {
        padding: 40px;
    }
    
    .outcome-statement {
        font-size: 1.375rem;
    }
    
    /* Industries Section Responsive */
    .industries-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .industries-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .industries-title {
        font-size: 1.875rem;
    }
    
    .section-icon-box {
        width: 50px;
        height: 50px;
    }
    
    .section-icon-box i {
        font-size: 28px;
    }
    
    .section-heading {
        font-size: 1.375rem;
    }
    
    .engagement-card {
        padding-left: 70px;
    }
    
    .engagement-number {
        font-size: 1.5rem;
    }
    
    .engagement-title {
        font-size: 1rem;
    }
    
    .industries-visual {
        min-height: 350px;
    }
    
    .para-industries-section {
        padding: 100px 0;
    }
    
    /* Testimonials Responsive */
    .impact-metrics {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .metric-number {
        font-size: 2.5rem;
    }
    
    .testimonials-title {
        font-size: 1.875rem;
    }
    
    .testimonials-carousel {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonial-card {
        padding: 28px 24px;
        min-width: unset;
    }
    
    .carousel-controls {
        gap: 24px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .para-testimonials-section {
        padding: 100px 0;
    }

    /* Thought Leadership Responsive */
    .thought-title {
        font-size: 2.25rem;
    }

    .thought-subtitle {
        font-size: 1rem;
    }

    .content-subheading {
        font-size: 1.5rem;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .blog-title {
        font-size: 1.25rem;
    }

    .blog-excerpt {
        font-size: 0.95rem;
    }

    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .video-title {
        font-size: 1.1rem;
    }

    .founder-video-section {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .founder-video-section .founder-intro,
    .founder-video-col {
        padding: 60px 40px;
    }

    .founder-intro {
        text-align: center;
    }

    .founder-heading {
        font-size: 1.75rem;
    }

    .video-thumbnail-large {
        max-width: 100%;
    }

    .thought-cta {
        padding: 40px 20px;
    }

    .para-thought-leadership {
        padding: 100px 0;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .model-grid {
        grid-template-columns: 1fr;
    }

    /* Thought Leadership Mobile */
    .thought-title {
        font-size: 1.875rem;
    }

    .content-subheading {
        font-size: 1.25rem;
        margin-bottom: 24px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .blog-card {
        padding: 20px;
    }

    .blog-image {
        height: 150px;
    }

    .blog-content {
        padding: 20px 16px;
    }

    .blog-title {
        font-size: 1.1rem;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .founder-video-section .founder-intro,
    .founder-video-col {
        padding: 40px 20px;
    }

    .founder-heading {
        font-size: 1.5rem;
        text-align: left;
    }

    .founder-intro {
        text-align: left;
    }

    .para-btn-primary {
        padding: 14px 32px;
        font-size: 0.95rem;
    }

    .thought-content {
        gap: 60px;
    }

    .para-thought-leadership {
        padding: 80px 0;
    }
}
.quote-wrapper{margin-top: 30px;}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* Color Variables for About Page */
.about-page {
    --about-bg: #F8F9FB;
    --about-text: #111111;
    --about-accent: #B18B67;
    --about-accent-dark: #1a3a5c;
    --about-gray: #666666;
    --about-light-gray: #e8e8e8;
}

/* Base Container */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section 1: WHY DECISION HABIT EXISTS */
.about-why {
    background: var(--about-bg);
    padding: 160px 0;
    text-align: center;
}



.about-main-headline {
    font-family: 'Inter', 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--about-text);
    margin: 0 0 40px 0;
    letter-spacing: -0.02em;
}

.about-divider {
    width: 80px;
    height: 2px;
    background: var(--about-accent);
    margin: 0 auto 40px;
}

.about-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--about-gray);
    margin: 0;
}

.about-subtext strong {
    color: var(--about-text);
    font-weight: 600;
}

/* Section 2: FOUNDER STORY */
.about-founder {
    background: #ffffff;
    padding: 140px 0;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.founder-image-wrap {
    position: relative;
}

.founder-photo {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.founder-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.founder-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--about-accent);
}

.founder-heading {
    font-family: 'span', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--about-text);
    margin: 0;
    letter-spacing: -0.02em;
}

.founder-paragraph {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--about-gray);
    margin: 0;
}

.founder-paragraph strong {
    color: var(--about-text);
    font-weight: 600;
}

/* Section 3: FOUNDER MESSAGE */
.about-message {
    background: linear-gradient(180deg, #f5f5f5 0%, #ffffff 100%);
    padding: 140px 0;
}

.message-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.message-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--about-accent);
    display: block;
    margin-bottom: 40px;
}

.message-quote-wrap {
    position: relative;
    margin-bottom: 48px;
}

.quote-mark {
   font-family: 'span', serif;
    font-size: 120px;
    color: var(--about-accent);
    opacity: 0.2;
    position: absolute;
    line-height: 1;
}

.quote-mark:first-child {
    top: -40px;
    left: -20px;
}

.quote-mark-end {
    display: none;
}

.founder-message {
   font-family: 'span', serif;
    font-size: 1.75rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--about-text);
    margin: 0;
    padding: 0 20px;
}

.founder-signature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.signature-img {
    width: 80px;
    height: auto;
    opacity: 0.6;
}

.signature-text {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.signature-text strong {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--about-text);
}

.signature-text span {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--about-gray);
}

/* Section 4: EXPERIENCE TIMELINE */
.about-timeline {
    background: #ffffff;
    padding: 140px 0;
}

.timeline-header {
    text-align: center;
    margin-bottom: 80px;
}

.timeline-title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--about-text);
    margin: 0;
    letter-spacing: -0.02em;
}

.timeline-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-wrapper .timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--about-accent) 0%, rgba(177, 139, 103, 0.2) 100%);
    transform: translateX(-50%);
    display: block;
}

.timeline-item {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 16px;
    background: var(--about-accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(177, 139, 103, 0.2);
}

.timeline-content {
    width: 100%;
    text-align: left;
    padding: 0 10px;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
    order: 1;
}

.timeline-item:nth-child(even) .timeline-content {
    order: 2;
}

.timeline-year {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--about-accent);
    margin-bottom: 8px;
}

.timeline-content h4 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--about-text);
    margin: 0 0 8px 0;
}

.timeline-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--about-gray);
    margin: 0;
}

/* Section 5: EXPERT TEAM */
.about-team {
    background: var(--about-bg);
    padding: 140px 0;
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--about-text);
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.team-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    color: var(--about-gray);
    margin: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.team-photo-wrap {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.05);
}

.team-info {
    padding: 24px;
    text-align: center;
}

.team-name {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--about-text);
    margin: 0 0 8px 0;
}

.team-role {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--about-accent);
    display: block;
    margin-bottom: 12px;
}

.team-expertise {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--about-gray);
    margin: 0;
    position: relative;
    padding-top: 12px;
}

.team-expertise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--about-accent);
}

/* Section 6: CSR & IMPACT */
.about-csr {
    background: #ffffff;
    padding: 140px 0;
}

.csr-header {
    text-align: center;
    margin-bottom: 60px;
}

.csr-title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--about-text);
    margin: 0;
    letter-spacing: -0.02em;
}

.csr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.csr-card {
    background: var(--about-bg);
    border-radius: 12px;

    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.csr-card a{
    text-decoration: none;
}

.csr-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.csr-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(177, 139, 103, 0.1) 0%, rgba(177, 139, 103, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.csr-icon i {
    font-size: 32px;
    color: var(--about-accent);
}

.csr-card-title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--about-text);
    margin: 0 0 12px 0;
}

.csr-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--about-gray);
    margin: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
    opacity: 0;
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
    opacity: 0;
    animation: fadeInRight 0.8s ease forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Stagger Delays */
.team-card:nth-child(1) .fade-in-up,
.timeline-item:nth-child(1),
.csr-card:nth-child(1) { animation-delay: 0s; }

.team-card:nth-child(2) .fade-in-up,
.timeline-item:nth-child(2),
.csr-card:nth-child(2) { animation-delay: 0.1s; }

.team-card:nth-child(3) .fade-in-up,
.timeline-item:nth-child(3),
.csr-card:nth-child(3) { animation-delay: 0.2s; }

.team-card:nth-child(4) .fade-in-up,
.timeline-item:nth-child(4) { animation-delay: 0.3s; }

/* ============================================
   RESPONSIVE: ABOUT PAGE
   ============================================ */

@media (max-width: 1024px) {
    .about-container {
        padding: 0 30px;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .founder-image-wrap {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .csr-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .csr-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-why,
    .about-founder,
    .about-message,
    .about-timeline,
    .about-team,
    .about-csr {
        padding: 100px 0;
    }
    
    .about-main-headline {
        font-size: 2rem;
    }
    
    .founder-heading {
        font-size: 1.75rem;
    }
    
    .founder-message {
        font-size: 1.375rem;
    }
    
    .timeline-wrapper .timeline-line {
        left: 20px;
    }
    
    .timeline-item {
        justify-content: flex-start;
    }
    
    .timeline-item::before {
        left: 20px;
    }
    
    .timeline-content {
        width: 100%;
        text-align: left !important;
        padding: 0 0 0 50px;
        order: unset !important;
    }
    
    .timeline-title,
    .team-title,
    .csr-title {
        font-size: 1.875rem;
    }
}

@media (max-width: 480px) {
    .about-container {
        padding: 0 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .csr-grid {
        grid-template-columns: 1fr;
    }
    
    .csr-card:last-child {
        max-width: 100%;
    }
    
    .founder-signature {
        flex-direction: column;
        text-align: center;
    }
    
.signature-text {
    text-align: center;
}
}
/* about us page */
.about-hero {
    position: relative;
    height: 40vh; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Simple Dark Gradient Overlay */
.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient: Darker at top/bottom, subtle in the middle */
    background: linear-gradient(
        to bottom, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(0, 0, 0, 0.4) 50%, 
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-page-title {
    color: #ffffff;
    font-family: 'span', serif; /* Using your premium local font */
    font-size: clamp(3rem, 8vw, 6rem); /* Scalable large title */
    /* text-transform: uppercase; */
    font-weight: 400;
    letter-spacing: 4px;
    margin: 0;
    line-height: 1;
    text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3); /* Extra depth for visibility */
}
/* Typography */
.serif-text,  .team-card h4 {
    font-family: 'span', serif;
    font-size: 3em;
    margin: 0px;
}

.about-story p, .about-story h5, .team-card p {
    font-family: 'Poppins', sans-serif;
}

/* Grids */
.team-grid, .csr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
/* Team Grid Layout */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-card {
    background: #fff;
    transition: transform 0.3s ease;
}

.team-image img {
    width: 100%;
    height: auto;
    filter: grayscale(100%); /* Optional: Premium look */
    transition: filter 0.3s ease;
}

.team-card:hover .team-image img {
    filter: grayscale(0%);
}

/* Typography Application */
.member-name {
    font-family: 'span', serif; /* Your local font */
    font-size: 1.8rem;
    margin: 20px 0 5px 0;
    color: #1a1a1a;
}

.member-designation {
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: #777;
    margin-bottom: 15px;
}

.member-bio {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}

.linkedin-link {
    display: inline-block;
    margin-top: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
    color: #000;
    border-bottom: 2px solid #000;
}
.team-carousel-section {
    padding: 80px 0;
    overflow: hidden; /* Prevents horizontal scroll */
}

.team-swiper {
    padding: 40px 0 60px !important; /* Space for pagination dots */
}

/* Custom Arrow Colors */
.swiper-button-next, .swiper-button-prev {
    color: #000;
    transform: scale(0.7);
}

.swiper-pagination-bullet-active {
    background: #000;
}

/* Ensure cards take full height of the slider */
.swiper-slide {
    height: auto;
}
.team-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* about us */
.why-exists-luxury {
    padding: 180px 0; /* Heavy padding for luxury feel */
    background-color: #ffffff;
    color: #1a1a1a;
}

.luxury-grid {
    display: grid;
    grid-template-columns: 150px 1fr; /* Asymmetrical layout */
    gap: 80px;
}

/* Meta Section (Left) */
.luxury-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section-index {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-label {
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: #888;
    writing-mode: vertical-rl; /* Vertical text for high-end look */
    margin-top: 20px;
}

.vertical-divider {
    width: 1px;
    height: 100px;
    background: #000;
    margin-top: 30px;
}

/* Statement Section (Right) */
.serif-statement {
    font-family: 'span', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 40px;
    font-weight: 400;
}

.italic-serif {
    font-style: italic;
}

.statement-body {
    max-width: 600px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .luxury-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .section-label {
        writing-mode: horizontal-tb;
    }
    .vertical-divider {
        display: none;
    }
}
/* --- Hover Effects --- */
.founder-message-section {
    position: relative;
    height: 90vh;
    padding: 0px;
    overflow: hidden;
    background: #000;
}

.video-trigger-area {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: none; /* Hide default cursor */
}
.founder-bg-image:hover {
    transform: scale(1.05);
    filter: brightness(0.8);
}
.founder-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90vh;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Custom Play Button Cursor */
.play-cursor {
    position: fixed;
    width: 100px;
    height: 100px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    pointer-events: none; /* Crucial: clicks go through to the section */
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease, background 0.3s ease;
}

.play-cursor span {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Show circle only when hovering the section */
.video-trigger-area:hover .play-cursor {
    transform: translate(-50%, -50%) scale(1);
}

.video-trigger-area:active .play-cursor {
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(255,255,255,0.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
}
@media (max-width: 1024px) {
    .video-trigger-area { cursor: pointer; }
    .play-cursor {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(1) !important;
        pointer-events: auto;
    }
}


.expert-team-section {
    padding: 120px 0;
    background: #fff;
}

.team-header {
    margin-bottom: 60px;
}

.section-subtitle-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #666;
    margin-top: 10px;
}

/* The Grid */
.expert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns for desktop */
    gap: 30px;
}

.expert-card {
    position: relative;
    transition: transform 0.4s ease;
}

.expert-image-wrapper {
    aspect-ratio: 4 / 5; /* Elegant portrait ratio */
    overflow: hidden;
    background: #f0f0f0;
    margin-bottom: 20px;
}

.expert-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%); /* Luxury standard */
    transition: filter 0.5s ease, transform 0.5s ease;
}

/* Interaction */
.expert-card:hover .expert-photo {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.expert-info {
    border-left: 1px solid #eee; /* Subtle anchor line */
    padding-left: 15px;
}

.expert-name {
    font-family: 'span', serif;
    font-size: 1.4rem;
    margin: 0 0 5px 0;
    color: #000;
}

.expert-role {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    display: block;
}
/* Laptop (3 Columns) */
@media (max-width: 1200px) {
    .expert-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet (2 Columns) */
@media (max-width: 768px) {
    .expert-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .expert-name { font-size: 1.2rem; }
}

/* Mobile (1 Column) */
@media (max-width: 480px) {
    .expert-grid {
        grid-template-columns: 1fr;
    }
    .expert-image-wrapper {
        aspect-ratio: 1 / 1; /* Square for mobile to save space */
    }
}
/* ------ */

.founder-timeline-section {
    padding: 140px 0;
    background: #f8eee5;
}

.timeline-main-title {
    text-align: center;
    margin-bottom: 100px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.timeline-relative-wrapper {
    position: relative;
    margin-top: 40px;
}

/* The Line */
.timeline-horizontal-line {
    position: absolute;
    top: 12px; /* Half of the 24px marker */
    left: 0;
    width: 100%;
    height: 1px;
    background: #e0e0e0;
    z-index: 1;
}

.timeline-grid {
    display: flex;
    justify-content: space-between;
    gap: 50px; /* Space between the 3 eras */
    position: relative;
    z-index: 2;
}

.timeline-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* The Dot Box helps with alignment */
.timeline-dot-box {
    height: 24px;
    margin-bottom: 40px;
}

.timeline-marker {
    width: 24px;
    height: 24px;
    background: #fff;
    border: 1px solid #d4b08c; /* Tan/Gold accent */
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.timeline-card:hover .timeline-marker {
    background: #d4b08c;
    transform: scale(1.2);
}

/* Content Styling */
.era-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #aaa;
    display: block;
    margin-bottom: 15px;
}

.era-location {
    font-family: 'span', serif;
    font-size: 1.8rem;
    line-height: 1.1;
    margin-bottom: 25px;
    min-height: 4.4rem; /* Ensures text alignment even with wrapping */
}

.timeline-body p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.era-highlight {
    font-weight: 700;
    color: #000 !important;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
    margin-top: auto; /* Pushes bold text to bottom */
}

/* Responsive Logic */
@media (max-width: 991px) {
    .timeline-grid { gap: 30px; }
    .era-location { font-size: 1.5rem; }
}

@media (max-width: 768px) {
    .timeline-horizontal-line { display: none; }
    .timeline-grid { flex-direction: column; gap: 60px; }
    .timeline-card { border-left: 1px solid #e0e0e0; padding-left: 30px; }
    .timeline-dot-box { position: absolute; left: -12px; }
    .era-location { min-height: auto; }
}

/* CSR- */
/* 6. CSR: Dark Mode, Blog Carousel */
/* Header Layout */
/* Layout & Grid Logic */
/* Layout & Grid Logic */
/* Container & Header Styling */
.csr-activities-section { padding: 140px 0; background: #0a0a0a; overflow: hidden; }

.csr-header-editorial {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 25px;
    margin-bottom: 70px;
}

.csr-header-editorial h2 { font-size: 2.2rem; color: #fff; margin: 0; }

.csr-filter-wrapper { display: flex; align-items: center; gap: 20px; }

.filter-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    cursor: pointer;
    transition: color 0.4s ease;
}

.filter-btn.active, .filter-btn:hover { color: #d4b08c; }

.dot-separator { width: 5px; height: 5px; background: rgba(212, 176, 140, 0.3); border-radius: 50%; }

/* Grid Logic: 4-3-2-2 */
.csr-post-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card Visuals */
.card-image-box { position: relative; aspect-ratio: 1 / 1.1; overflow: hidden; border-radius: 4px; }
.card-image-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1); }
.csr-card:hover img { transform: scale(1.08); }

.card-date-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #d4b08c;
    color: #000;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
}

.card-text-box { 
    padding: 25px 0; 
}
.card-title { font-size: 1.25rem; color: #fff; margin-bottom: 12px; line-height: 1.3; }
.card-meta { font-size: 0.85rem; color: #777; line-height: 1.6; margin-bottom: 15px; }
.card-link { font-size: 0.7rem; letter-spacing: 1px; color: #d4b08c; text-transform: uppercase; }

/* Responsive Adjustments */
@media (max-width: 1200px) { .csr-post-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 991px) { .csr-post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    .csr-header-editorial { flex-direction: column; align-items: flex-start; gap: 30px; }
    .csr-post-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .card-title { font-size: 1rem; }
}
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Forces exactly 3 columns */
    gap: 60px;
    position: relative;
    z-index: 2;
}

.timeline-relative-wrapper {
    position: relative;
    padding-top: 20px;
}

/* Horizontal Line spanning all 3 columns */
.timeline-horizontal-line {
    position: absolute;
    top: 32px; /* Centers the line behind the 24px markers */
    left: 0;
    width: 100%;
    height: 1px;
    background: #e0e0e0;
    z-index: 1;
}

.timeline-card {
    display: flex;
    flex-direction: column;
}

.timeline-dot-box {
    height: 24px;
    margin-bottom: 35px;
    position: relative;
    z-index: 3;
}

.timeline-marker {
    width: 24px;
    height: 24px;
    background: #fff;
    border: 1px solid #d4b08c;
    border-radius: 50%;
}

/* Responsive: Swaps to 1 column on mobile */
@media (max-width: 991px) {
    .timeline-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .timeline-horizontal-line {
        display: none;
    }
    .timeline-card {
        border-left: 1px solid #e0e0e0;
        padding-left: 30px;
    }
    .timeline-dot-box {
        position: absolute;
        left: -12px;
    }
}
/* Navigation Bar  */
/* Ensure the parent list item is the anchor for the dropdown */
.menu-item-has-children {
    position: relative;
}

/* 1. Hide the sub-menu by default */
.sub-menu {
    position: absolute;
    top: 100%; /* Positions it directly below the parent */
    left: 0;
    min-width: 220px;
    background: #0a0a0a; /* Match your dark luxury theme */
    padding: 20px 0;
    margin: 0;
    list-style: none;
    z-index: 999;
    
    /* Smooth Transition Setup */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1);
    
    border-top: 2px solid #d4b08c; /* Premium gold accent line */
}

/* 2. Show on Hover */
.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Sub-menu Link Styling */
.sub-menu li a {
    display: block;
    padding: 10px 25px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sub-menu li a:hover {
    color: #d4b08c; /* Gold accent on hover */
    background: rgba(255, 255, 255, 0.05);
}

/* homepage  */
.impact-comparison-section {
    padding: 160px 0;
    background: #0a0a0a;
    color: #fff;
    text-align: center;
}

.impact-header-box { margin-bottom: 50px; }
.impact-subtitle { 
    font-family: 'Poppins', sans-serif; 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    font-size: 0.9rem; 
    margin-top: 15px;
}

/* Text Side */
.hero-left {
    flex: 0 0 60%;
}

/* Signature Side */
.hero-right-signature {
    flex: 0 0 42%;
    display: flex;
    justify-content: flex-end;
    position: absolute;
    bottom: 40px;
    right: 0;
}

.hero-sig-svg {
    width: 100%;
    max-width: 550px;
    height: auto;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    .hero-left { flex: 0 0 100%; }
    .hero-right-signature { 
        flex: 0 0 100%; 
        margin-top: 30px; 
        justify-content: center;
    }
}

/* The Grid Logic */
.impact-comparison-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.impact-side {
    flex: 1;
    text-align: left;
    padding: 40px;
}

.side-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0.6;
}

.side-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 40px;
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 15px;
}

.marker { font-size: 0.9rem; }

/* The Divider */
.impact-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 300px;
}

.divider-line {
    width: 1px;
    flex-grow: 1;
    background: linear-gradient(to bottom, transparent, rgba(212, 176, 140, 0.4), transparent);
}

.divider-icon {
    margin: 20px 0;
    font-size: 1.2rem;
    color: #d4b08c;
}

/* Outcome Box */
.impact-outcome-box {
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 60px;
}

.outcome-text {
    font-size: 1.8rem;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 991px) {
    .impact-comparison-grid { flex-direction: column; text-align: center; }
    .impact-side { text-align: center; padding: 20px; }
    .comparison-list li { justify-content: center; }
    .impact-divider { height: 100px; flex-direction: row; width: 100%; }
    .divider-line { height: 1px; width: 100%; flex-grow: 1; }
}

/* .industries-cards-grid */
.creative-reach-section { padding: 120px 0;  overflow: hidden; }

@media (max-width: 353px) {
    .creative-reach-section .container {
        padding: 0;
    }
}

/* Header Alignment */
.reach-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    padding-bottom: 80px;
    align-items: center;
}
.header-desc { 
    color: #888; 
    font-size: 0.95rem;
    margin: 0;
}

/* Sticky Grid Logic */
.reach-interactive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.industry-sticky-side {
    position: sticky;
    top: 150px;
}

.industry-visual-card {
    background: #111;
    padding: 60px 40px;
    border: 1px solid rgba(212, 176, 140, 0.15);
    position: relative;
    overflow: hidden;
}
.industry-visual-card .modern-subtitle{
    color: #d4b08c;
}
.step-head .serif-text{
    color: #111111;
}
.industry-ticker .ticker-item {
    font-family: 'span', serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.industry-ticker span { color: #d4b08c; font-size: 1rem; }

/* Scrolling Content */
.engagement-step {
    margin-bottom:10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.step-head { display: flex; align-items: center; gap: 30px;  }
.step-index { font-family: 'Poppins'; font-size: 0.8rem; color: #d4b08c; letter-spacing: 2px; }
.step-head h3 { font-size: 2.5rem; color: #fff; }

.step-body p { color: #aaa; font-size: 1.1rem; max-width: 500px; margin-bottom: 40px; line-height: 1.6; }
.step-image { overflow: hidden; border-radius: 4px; filter: grayscale(100%); transition: filter 0.6s ease; }
.engagement-step:hover .step-image { filter: grayscale(0%); }

/* Mobile Adjustments */
@media (max-width: 991px) {
    .reach-interactive-grid { grid-template-columns: 1fr; }
    .industry-sticky-side { position: relative; top: 0; margin-bottom: 60px; }
    .reach-header {
        display: block;
        text-align: center;
    }

    .reach-header .header-main {
        margin-bottom: 16px;
    }

    .header-desc {
        max-width: 540px;
        margin: 0 auto;
    }
}

/* ---home page .reach-interactive-grid */
/* --- Impact Metrics --- */
body {
    overflow-x: hidden;
}

.impact-metrics-section { padding: 100px 0; background: #0a0a0a; border-bottom: 1px solid #1a1a1a; }
.metrics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }

.metric-number-wrapper { font-family: 'span', serif; font-size: 5rem; color: #fff; line-height: 1; margin-bottom: 15px; }
.metric-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; line-height: 1.5; }
.metric-item .metric-label {
    color:#fff;
}
.metric-subtext { font-size: 0.7rem; color: #666; display: block; margin-top: 10px; }

/* Extra-small screens: prevent horizontal overflow in metrics */
@media (max-width: 327px) {
    .impact-metrics-section {
        padding: 80px 0;
    }

    .impact-metrics-section .para-container {
        padding: 0 16px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .metrics-grid,
    .metric-item {
        width: 100%;
        max-width: 100%;
    }

    .metrics-grid {
        gap: 32px;
    }

    .metric-number-wrapper {
        font-size: 3.2rem;
    }
}

/* --- Testimonials --- */
.editorial-testimonials-section { padding: 120px 0; background: #fff; }
.testimonial-header { margin-bottom: 30px; text-align: center;}

.testimonial-slide { padding: 0 10%; }
.testimonial-inner { text-align: center; max-width: 900px; margin: 0 auto; }

.quote-icon { font-family: 'span', serif; font-size: 6rem; line-height: 1; margin-bottom:0px; }
.testimonial-inner blockquote { font-size: 2.2rem; line-height: 1.4; color: #111; margin-bottom: 40px; }

.author-info span { display: block; font-family: 'Poppins'; }
.author-name { font-weight: 700; font-size: 1.1rem; color: #000; }
.author-role { font-size: 0.8rem; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; }

/* Slider Nav */
.slider-nav { display: flex; align-items: center; justify-content: center; gap: 40px; margin-top: 60px; }
.nav-arrow { background: none; border: none; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; cursor: pointer; color: #888; border-bottom: 1px solid transparent; transition: 0.3s; }
.nav-arrow:hover { color: #d4b08c; border-bottom-color: #d4b08c; }

/* Responsive */
@media (max-width: 991px) {
    .metrics-grid { grid-template-columns: 1fr; gap: 60px; }
    .testimonial-inner blockquote { font-size: 1.6rem; }
}
/* Swiper specific overrides */
.testimonial-swiper {
    overflow: hidden;
}

.testimonial-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Custom Navigation Styling */
.slider-controls-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    position: relative;
}

.swiper-button-next, .swiper-button-prev {
    position: static !important; /* Removes default absolute positioning */
    width: auto !important;
    height: auto !important;
    color: #888 !important;
    font-size: 0.7rem !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.swiper-button-next::after, .swiper-button-prev::after {
    display: none; /* Removes the default blue arrow icons */
}

/* Pagination Dots */
.swiper-pagination {
    position: static !important;
    width: auto !important;
}

.swiper-pagination-bullet-active {
    background: #d4b08c !important; /* Your gold accent */
}
/* COntact us page */
.executive-contact-section { padding: 140px 0; background: #ffffff; color: #fff; }

.contact-split-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

/* Info Column */
.contact-info-col h2 { font-size: 3.5rem; line-height: 1.1; margin: 20px 0 60px; }
.base-location { margin-bottom: 40px; }
.location-text { font-size: 1.5rem; font-family: 'span', serif; margin-bottom: 10px; }
.global-note { color: #888; font-size: 0.95rem; line-height: 1.6; }

.booking-link {
    display: inline-block;
    margin-top: 15px;
    color: #d4b08c;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(212, 176, 140, 0.3);
    padding-bottom: 5px;
    transition: 0.3s;
}
.booking-link:hover { border-bottom-color: #d4b08c; }

/* Form Column Styling */
.form-wrapper {
    background: #111;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.input-group { margin-bottom: 30px; display: flex; flex-direction: column; }
.input-group label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d4b08c;
    margin-bottom: 10px;
}

.input-group input, 
.input-group select, 
.input-group textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.input-group input:focus, .input-group textarea:focus {
    border-color: #d4b08c;
}

.submit-btn {
    width: 100%;
    padding: 20px;
    border: none;
    background: #d4b08c;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
}

.submit-btn:hover { background: #e5c19d; transform: translateY(-3px); }

/* Responsive */
@media (max-width: 991px) {
    .contact-split-grid { grid-template-columns: 1fr; gap: 60px; }
    .contact-info-col h2 { font-size: 2.5rem; }
    .form-wrapper { padding: 40px 30px; }
}
.contact-info-col{
    color: #000;
}

.icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(212, 175, 55, 0.1); /* Subtle gold background */
    border-radius: 50%;
    width: 45px;
    height: 45px;
    margin-right: 15px;
    color: #D4AF37; /* Gold accent color */
    transition: transform 0.3s ease;
}

.contact-method-item:hover .icon-box {
    transform: scale(1.1);
    background: rgba(212, 175, 55, 0.2);
}
/* pricing  */
.pricing-packages-section { padding: 140px 0; background: #0a0a0a; color: #fff; }

.pricing-header { margin-bottom: 80px; text-align: center; }
.pricing-intro { color: #888; max-width: 500px; margin: 20px auto 0; font-size: 1.1rem; }

/* Grid System */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

/* Card Styling */
.pricing-card {
    background: #111;
    padding: 60px 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease;
}

.card-type {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    opacity: 0.6;
}

.package-name { font-size: 2rem; margin-bottom: 30px; line-height: 1.2; }

.package-outcome {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    margin-bottom: 30px;
    border-left: 2px solid #d4b08c;
}

.outcome-lead { font-weight: 700; color: #d4b08c; font-size: 0.8rem; text-transform: uppercase; margin-bottom: 5px; }
.package-outcome p { font-size: 0.95rem; line-height: 1.6; color: #ccc; margin: 0; }

.package-features { list-style: none; padding: 0; margin-bottom: 50px; flex-grow: 1; }
.package-features li { margin-bottom: 15px; font-size: 0.9rem; color: #888; }

/* Highlighted Card Logic */
.featured-card {
    border: 1px solid #d4b08c;
    transform: scale(1.05);
    background: #161616;
    z-index: 2;
    position: relative;
}

.featured-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #d4b08c;
    color: #000;
    padding: 5px 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buttons */
.price-btn {
    display: block;
    text-align: center;
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}

.gold-btn { background: #d4b08c; color: #000; border: none; font-weight: 700; }
.price-btn:hover { background: #fff; color: #000; }

/* Responsive */
@media (max-width: 1100px) {
    .pricing-grid { grid-template-columns: 1fr; gap: 50px; }
    .featured-card { transform: scale(1); }
}
/* Container Background */
.pricing-packages-section.light-theme-bg { 
    padding: 140px 0; 
    background: #ffffff; 
    color: #1a1a1a; 
}

.pricing-intro { color: #666; }

/* Card Styling for Light Mode */
.pricing-card {
    background: #fdfdfd;
    padding: 60px 40px;
    border: 1px solid #eeeeee;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.dark-text { color: #111111; }

.package-outcome {
    background: #f4f4f4; /* Subtle contrast for the outcome box */
    padding: 25px;
    margin-bottom: 30px;
    border-left: 2px solid #d4b08c;
}

.package-outcome p { color: #444; }

.package-features li { color: #666; }

/* Featured Card Adjustments */
.featured-card {
    background: #ffffff;
    border: 1px solid #d4b08c;
    transform: scale(1.05);
    z-index: 2;
}

/* Button Adjustments for Light Mode */
.price-btn {
    display: block;
    text-align: center;
    padding: 18px;
    border: 1px solid #111;
    color: #111;
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transition: 0.3s;
}

.price-btn:hover {
    background: #111;
    color: #fff;
}

.gold-btn {
    background: #d4b08c;
    border-color: #d4b08c;
    color: #000;
}

.gold-btn:hover {
    background: #c5a07b;
    border-color: #c5a07b;
    color: #fff;
}
/* Faq */
.faq-hero-section { padding: 120px 0; background: #ffffff; }

.faq-header { text-align: center; margin-bottom: 60px; }
.faq-subtitle { color: #666; font-size: 1.1rem; margin-top: 15px; }

/* Filter Buttons */
.faq-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.faq-filter {
    background: none;
    border: 1px solid #eee;
    padding: 10px 25px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    color: #888;
}

.faq-filter.active, .faq-filter:hover {
    border-color: #d4b08c;
    color: #111;
}

/* Accordion Styling */
.faq-accordion-container { max-width: 900px; margin: 0 auto; }

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 30px 0;
    font-size: 1.4rem;
    color: #111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-question:hover { color: #d4b08c; }

.faq-icon {
    font-size: 1.2rem;
    color: #d4b08c;
    transition: transform 0.4s ease;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding-bottom: 40px;
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
    max-width: 800px;
}
/* Accordion Container */
.faq-item {
    border-bottom: 1px solid #eeeeee;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.35rem;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.faq-question:hover { color: #d4b08c; }

/* Custom Plus/Minus Icon */
.faq-icon-wrapper {
    position: relative;
    width: 16px;
    height: 16px;
}

.line {
    position: absolute;
    background-color: #d4b08c;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.horizontal {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.vertical {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Open State Animation */
/* Section 1: Qualifiers */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 10px 0; }
.q-card { 
    background: #fdfdfd; 
    padding: 30px; 
    border: 1px solid #eee; 
    margin-bottom: 20px; 
    display: flex; gap: 20px;
    align-items: flex-start;
}
.q-icon { color: #d4b08c; font-weight: bold; }

/* Section 2: Focus & Chart */
.focus-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; padding: 120px 0; }
.strategic-chart { 
    background: #111; 
    padding: 50px; 
    border: 1px solid rgba(212, 176, 140, 0.2); 
    position: relative;
}
.performance-svg { filter: drop-shadow(0 0 10px rgba(212, 176, 140, 0.3)); }
.chart-labels { display: flex; justify-content: space-between; font-size: 0.6rem; color: #666; text-transform: uppercase; margin-top: 20px; }

/* Section 3: Methodology */
.vertical-process-flow { position: relative; max-width: 800px; margin: 60px auto; }
.vertical-process-flow::before { 
    content: ''; position: absolute; left: 25px; top: 0; bottom: 0; width: 1px; background: #d4b08c; opacity: 0.3; 
}
.process-step { display: flex; gap: 40px; margin-bottom: 60px; position: relative; }
.step-num { 
    width: 50px; height: 50px; background: #fff; border: 1px solid #d4b08c; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; font-weight: bold; z-index: 2;
}

/* Section 4: Format Banner */
.format-banner { 
    display: flex; background: #0a0a0a; color: #fff; padding: 60px; 
    justify-content: space-between; align-items: center; border: 1px solid #d4b08c;
}
.format-label { display: block; color: #d4b08c; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; }
.format-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

@media (max-width: 991px) {
    .split-layout, .focus-grid, .format-banner { grid-template-columns: 1fr; flex-direction: column; gap: 40px; }
    .format-divider { display: none; }
}
/* --- Global Responsive Rules --- */

@media (max-width: 1024px) {
    .para-container { padding: 0 10px; }
    .serif-text { font-size: 2.8rem; } /* Scale down large headings */
}

@media (max-width: 768px) {
    /* Stack all split grids */
    .split-layout, .focus-grid, .hero-split {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    /* Adjust the Vertical Flow */
    .vertical-step-flow::before {
        left: 20px; /* Move the spine to the left */
    }

    .v-step-number {
        left: 0; /* Align numbers to the spine */
    }

    .v-step-content {
        padding-left: 40px;
        text-align: left;
    }

    /* Format Banner: Stack the trust items */
    .format-banner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 20px;
    }

    .format-divider {
        display: none; /* Hide vertical lines on mobile */
    }
}
/* Base State: Hidden */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1); /* "Weighted" slide */
    transition-delay: 0.1s;
}

/* Active State: Visible */
.reveal-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delay for Cards */
.animate-card:nth-child(1) { transition-delay: 0.1s; }
.animate-card:nth-child(2) { transition-delay: 0.3s; }
.animate-card:nth-child(3) { transition-delay: 0.5s; }
.vertical-step-flow::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    height: 0; /* Starts at zero */
    width: 2px;
    background: #d4b08c;
    transition: height 1.5s ease-out; /* Slow, elegant growth */
}

/* When the section is in view, the line grows */
.vertical-step-flow.in-view::before {
    height: 100%;
}
.v-step-image {
    overflow: hidden;
    position: relative;
}

.v-step-image img {
    width: 100%;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
    filter: grayscale(100%);
}

.v-step-item:hover .v-step-image img {
    transform: scale(1.08); /* Subtle zoom */
    filter: grayscale(0%); /* Brings color to the "solution" */
}
/* --- Q-Card Base Styling --- */
.q-card {
    background: #ffffff;
    padding: 40px;
    border: 1px solid #eeeeee;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    position: relative;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1); /* Professional easing */
    cursor: default;
    overflow: hidden;
}

/* --- Hover State --- */
.q-card:hover {
    transform: translateY(-10px); /* Vertical Lift */
    border-color: #d4b08c; /* Gold Border Glow */
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05); /* Soft depth shadow */
}

/* --- Icon Animation on Hover --- */
.q-card .q-icon {
    font-size: 1.2rem;
    color: #d4b08c;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.q-card:hover .q-icon {
    transform: rotate(90deg) scale(1.2); /* Subtle rotation and grow */
}

/* --- Subtle Accent Line (Optional) --- */
.q-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4b08c;
    transition: width 0.5s ease;
}

.q-card:hover::after {
    width: 100%; /* Line grows across the bottom */
}
.coaching-qualifier, .methodology-section{
    background: #ffffff;
}

.gold-accent{
        text-transform: uppercase;
    font-weight: 300;
    color: #bb9b7c;
}
/* One on One Coaching page */
.focus-quadrant {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.focus-item {
    border-top: 1px solid rgba(212, 176, 140, 0.15);
    padding-top: 25px;
    transition: all 0.4s ease;
}

.focus-item:hover {
    border-top-color: #d4b08c;
    transform: translateX(5px);
}

.focus-icon-mini {
    color: #d4b08c;
    margin-bottom: 15px;
}

.focus-item h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.focus-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #999;
}

/* Strategic Chart Animation */
.chart-line-draw {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 2s ease-in-out;
}

.focus-visual.in-view .chart-line-draw {
    stroke-dashoffset: 0;
}

.pulse-point {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { r: 4; opacity: 1; }
    50% { r: 7; opacity: 0.5; }
    100% { r: 4; opacity: 1; }
}

@media (max-width: 768px) {
    .focus-quadrant {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Corporate Coaching & Training */

/* Editorial Image Cards */
.image-card-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.luxury-image-card {
    position: relative;
    aspect-ratio: 4/5;
    background: #000;
    overflow: hidden;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.card-img-wrap {
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.8s ease;
}

.luxury-image-card:hover .card-img-wrap {
    filter: grayscale(0%);
    opacity: 0.4;
    transform: scale(1.1);
}

.card-text-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    z-index: 2;
}

/* Strategic Matrix Split */
.matrix-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    padding: 160px 0;
    align-items: center;
}

.chart-container-luxury {
    background: #fff;
    padding: 60px;
    box-shadow: 40px 40px 80px rgba(0,0,0,0.08);
}

.focus-entry {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 40px 0;
}

.focus-entry h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

/* Ticker Styling */
.result-ticker {
    margin: 50px 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #666;
}

.results-body {
    max-width: 600px;
    margin: 0 auto 50px;
    color: #888;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 991px) {
    .image-card-row, .matrix-split, .menu-grid {
        grid-template-columns: 1fr;
    }
}
.card-text-overlay{
    color: #fff;
}

/* weekly  */
/* Hero Refinement */
.program-hero-luxury {
    height: 90vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    display: flex;
    align-items: center;
    position: relative;
}

/* Image Grid for Weeks */
.program-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.program-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    transition: all 0.5s ease;
}

.card-visual {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    margin-bottom: 25px;
}

.card-bg-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1), filter 0.8s ease;
}

.program-card:hover .card-bg-img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.card-week-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #d4b08c;
    color: #fff;
    padding: 8px 20px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Outcomes Grid */
.outcomes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    padding: 140px 0;
}

.outcome-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 1.2rem;
    color: #fff;
}

/* Ideal For Grid */
.ideal-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.ideal-item {
    background: #fff;
    padding: 60px 40px;
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
}

.ideal-item:hover {
    border-color: #d4b08c;
    transform: translateY(-10px);
}

.ideal-icon {
    font-size: 0.8rem;
    color: #d4b08c;
    margin-bottom: 20px;
    font-weight: 700;
}

.ideal-line {
    width: 30px;
    height: 1px;
    margin-top: 20px;
}

/* Responsive Fix */
@media (max-width: 991px) {
    .program-image-grid, .outcomes-grid, .ideal-image-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
/* ---- */
/* Objective Section Styling */
.objective-architectural-section {
    padding: 160px 0;
    overflow: hidden;
}

.objective-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: center;
}

/* The Visual Card */
.objective-visual {
    position: relative;
}

.objective-img-bg {
    width: 100%;
    aspect-ratio: 4/5;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) contrast(1.1);
    transition: 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.image-inner:hover .objective-img-bg {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.05);
}

.image-accent-border {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 2px solid #d4b08c;
    border-left: 2px solid #d4b08c;
    z-index: -1;
}

/* Content Styling */
.serif-display-small {
    font-size: 2.8rem;
    line-height: 1.2;
    font-family: 'span', serif;
    margin: 30px 0;
    color: #111;
}

.objective-body-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.sig-line {
    width: 60px;
    height: 1px;
    margin: 40px 0 15px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .objective-split {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .objective-visual {
        order: 2;
    }
    .objective-content {
        order: 1;
    }
    .serif-display-small {
        font-size: 2rem;
    }
}

/* ---- */
/* Header Split */
.section-header-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.title-area { width: 50%; }
.desc-area { width: 30%; color: #888; font-size: 0.95rem; line-height: 1.6; }

/* The Grid */
.program-architecture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
}

.architecture-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card-image-wrap {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.card-image-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transition: transform 1.2s ease, filter 0.8s ease;
}

.card-week-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #d4b08c;
    color: #fff;
    padding: 6px 15px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    font-weight: 700;
}

/* Hover Effects */
.architecture-card:hover .card-image-bg {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.card-body {
    padding: 30px 0;
}

.card-body h3 {
    font-size: 1.7rem;
    margin-bottom: 15px;
    color: #111;
}

.card-lorem {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

.footer-line {
    width: 40px;
    height: 1px;
    margin-top: 25px;
    transition: width 0.4s ease;
}

.architecture-card:hover .footer-line {
    width: 100px;
}

/* Mobile Fix */
@media (max-width: 991px) {
    .program-architecture-grid, .section-header-split {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    .title-area, .desc-area { width: 100%; }
}

/* Outcomes Section */
.outcomes-premium-section {
    padding: 160px 0;
    background-color: #0a0a0a; /* Deep Charcoal */
}

.outcomes-header {
    margin-bottom: 100px;
}

/* Grid Layout */
.outcomes-interactive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

/* Outcome Card */
.outcome-card {
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.02);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.outcome-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: #d4b08c;
    transform: translateY(-10px);
}

/* Visual Elements */
.outcome-num {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #d4b08c;
    display: block;
    margin-bottom: 20px;
}

.visual-line {
    width: 30px;
    height: 1px;
    margin-bottom: 40px;
    transition: width 0.4s ease;
}

.outcome-card:hover .visual-line {
    width: 100%;
}

/* Typography */
.outcome-info h3 {
    color: #d4b08c;
    font-size: 1.5rem;
    font-family: 'span', serif;
    margin-bottom: 20px;
    line-height: 1.3;
}

.outcome-info p {
    font-size: 0.95rem;
    color: #888;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 991px) {
    .outcomes-interactive-grid {
        grid-template-columns: 1fr;
    }
}

/* Section Layout */
.section-header-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.ideal-luxury-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 80px;
}

/* Persona Card */
.ideal-persona-card {
    position: relative;
    background: #fff;
    padding: 60px 40px;
    height: 100%;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    /* filter: grayscale(100%); */
    opacity: 1; /* Very subtle background */
    transition: all 0.8s ease;
}

.ideal-persona-card:hover .card-image-overlay {
    /* opacity: 0.6; */
    transform: scale(1.1);
    filter: grayscale(50%);
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-index {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 20px;
}

.ideal-persona-card h3 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #111;
}

.card-lorem {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.8;
}

.card-accent-line {
    width: 40px;
    height: 2px;
    transition: width 0.4s ease;
}

.ideal-persona-card:hover {
    border-color: #d4b08c;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

.ideal-persona-card:hover .card-accent-line {
    width: 100px;
}

/* Mobile Fix */
@media (max-width: 991px) {
    .ideal-luxury-grid {
        grid-template-columns: 1fr;
    }
    .section-header-split {
        flex-direction: column;
        align-items: flex-start;
    }
}/* Ensure the card is the container for the absolute overlay */
.ideal-persona-card {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end; /* Keeps text at the bottom */
    padding: 40px;
    min-height: 450px;
    border: none; /* Cleaner look for image cards */
}

/* The Overlay: This makes the text clear */
.ideal-persona-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient goes from transparent at top to 80% black at bottom */
    background: linear-gradient(
        to bottom, 
        rgba(0,0,0,0.1) 0%, 
        rgba(0,0,0,0.4) 40%, 
        rgba(0,0,0,0.85) 100%
    );
    z-index: 1;
    transition: opacity 0.4s ease;
}

/* Base Image Styling */
.card-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

/* Text Protection: Bring content above the overlay */
.card-content {
    position: relative;
    z-index: 2; /* Essential: puts text on top of the gradient */
    width: 100%;
}

/* Typography for Image Cards (Switch to light text for contrast) */
.ideal-persona-card h3.serif-text {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3); /* Extra layer of protection */
}

.ideal-persona-card .card-lorem {
    color: rgba(255, 255, 255, 0.8); /* Muted white for secondary text */
    font-size: 1rem;
    line-height: 1.6;
}

/* Hover Effect: Enhance the image but keep text readable */
.ideal-persona-card:hover .card-image-overlay {
    transform: scale(1.1);
}

.ideal-persona-card:hover::before {
    background: linear-gradient(
        to bottom, 
        rgba(0,0,0,0.3) 0%, 
        rgba(50, 48, 47, 0.6) 40%, 
        rgba(0, 0, 0, 0.7) 100% /* Subtle gold tint on hover */
    );
}

/* ---Booking page  */
/* Parallax Hero Background */
.booking-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0;
    background-color: #000;
}

.booking-parallax-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* THE SCRIM: Crucial for text clarity */
.booking-scrim {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 20%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

.booking-container {
    position: relative;
    z-index: 3;
}

/* Glassmorphism Card */
.booking-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 60px;
}

.booking-flow-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

/* coaching  */
/* Service Section Styling */
.service-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.service-row.reverse { flex-direction: row-reverse; }

.service-img {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border-subtle);
    transition: transform 0.8s ease;
}

.service-row:hover .service-img { transform: scale(1.02); }

.service-copy { flex: 1; }

.benefit-list {
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.benefit-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.95rem;
}
.image-card-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.luxury-image-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: var(--obsidian);
}

.card-img-wrap {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.card-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 40px;
    z-index: 2;
}

.card-num {
    display: block;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.card-text-overlay h3 { color: var(--white); font-size: 1.8rem; margin-bottom: 15px; }
.card-text-overlay p { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.6; }

/* Hover Animation */
.luxury-image-card:hover .card-img-wrap {
    transform: scale(1.1);
    filter: grayscale(0%);
    opacity: 0.4;
}
.matrix-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.chart-container-luxury {
    border-left: 1px solid var(--gold);
    padding-left: 40px;
}

.focus-entry {
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 30px;
}

.focus-entry h4 { margin-bottom: 10px; }
.focus-entry p { color: var(--text-dim); }
/* ---------- */
.obsidian-bg { background-color: var(--obsidian); color: var(--white); padding: 120px 0; }
.light-bg { background-color: #fff; color: var(--obsidian); padding: 120px 0; }
.gold-accent { color: var(--gold); text-transform: uppercase; letter-spacing: 3px; font-size: 0.8rem; }
.serif-display { font-family: 'Playfair Display', serif; font-size: 4rem; line-height: 1.1; }

/* Luxury Program Stack */
.luxury-program-stack {
    margin-top: 60px;
    border-top: 1px solid var(--grey-dim);
}

.stack-item {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    padding: 50px 0;
    border-bottom: 1px solid var(--grey-dim);
    align-items: center;
    transition: all 0.4s ease;
}

.stack-item.featured {
    background:#dbc4ae;
    margin: 0 -20px;
    padding: 60px 40px;
    border: 1px solid var(--gold);
}

.stack-num { font-size: 0.9rem; font-weight: 700; display: block; margin-bottom: 10px; }
.stack-info h3 { font-size: 1.8rem; margin-bottom: 5px; }
.stack-info p { color: var(--gold); font-size: 0.8rem; text-transform: uppercase; }

/* Buttons & Links */
.gold-link {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 5px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.gold-btn-solid {
    background: var(--gold);
    color: #000;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
}

/* Facilitation Menu Row */
.fac-row {
    display: flex;
    gap: 100px;
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.fac-label { font-weight: 700; text-transform: uppercase; color: var(--gold); font-size: 0.7rem; width: 100px; }

/* About Para Narrative Styles */
.about-para-narrative {
    padding: 120px 0;
    background-color: #fdfdfd; /* Off-white for contrast */
}

.narrative-split {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.experience-badge {
    border-left: 2px solid var(--gold);
    padding-left: 30px;
    margin-bottom: 50px;
}

.experience-badge .big-num {
    font-size: 5rem;
    font-family: 'Playfair Display', serif;
    display: block;
    line-height: 1;
}

.narrative-content h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 40px;
}

.narrative-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
}

.mid-text-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
    padding: 30px 0;
    margin: 40px 0;
    font-style: italic;
    text-transform: none;
    letter-spacing: 0;
}

.narrative-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.italic-serif {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

/* Responsive */
@media (max-width: 991px) {
    .narrative-split { grid-template-columns: 1fr; gap: 40px; }
}
/* coaching  */
/* FAQ Accordion Styling */
.para-accordion {
    border-top: 1px solid #333;
}

.accordion-item {
    border-bottom: 1px solid #333;
}

.accordion-header {
    width: 100%;
    padding: 25px 0;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-family: 'serif-text', serif; /* Use your theme's serif font */
    font-size: 1.25rem;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.accordion-header:hover {
    color: #D4AF37; /* Gold Accent */
}

.accordion-header .icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion-item.active .icon {
    transform: rotate(45deg);
    color: #D4AF37;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-body p {
    padding-bottom: 25px;
    color: #ccc;
    line-height: 1.6;
}

.accordion-item.active .accordion-body {
    max-height: 500px; /* Large enough to fit content */
}
/* Standard Accordion Animation */
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s ease;
    opacity: 0;
}

.accordion-item.active .accordion-body {
    max-height: 1000px; /* High enough to accommodate content */
    opacity: 1;
    padding-bottom: 20px;
}

/* Rotate the icon when active */
.accordion-item.active .icon {
    transform: rotate(45deg);
    color: #D4AF37;
}

.sf-root {
    background: #0b0e20;
    padding: 0;
    color: #fff;
}

/* Main content area */
.sf-body {
    padding: 80px 0 70px;
}

/* 3-column grid: large tagline | address | contact */
.sf-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left: large serif tagline */
.sf-tagline {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    margin: 0;
}

/* Shared column label */
.sf-col-label {
    font-family: var(--inter);
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    text-transform: none;
    letter-spacing: 0;
    margin: 0 0 18px;
}

/* Address text */
.sf-address-text {
    font-family: var(--inter);
    font-size: 0.875rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 28px;
}

/* Social icon row */
.sf-social-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.sf-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
    flex-shrink: 0;
}

.sf-icon-btn:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

/* Email link */
.sf-email {
    display: block;
    font-family: var(--inter);
    font-size: 0.875rem;
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-bottom: 16px;
    transition: opacity 0.3s ease;
}

.sf-email:hover {
    opacity: 0.75;
}

/* Phone */
.sf-phone {
    font-family: var(--serif);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

/* Bottom bar */
.sf-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 22px 0;
}

.sf-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Bottom nav links */
.sf-bottom-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.sf-bottom-nav a {
    font-family: var(--inter);
    font-size: 0.825rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sf-bottom-nav a:hover {
    color: #fff;
}

.sf-bottom-nav a.sf-nav-active {
    color: #fff;
    border-bottom: 1px solid #fff;
    padding-bottom: 2px;
}

/* Copyright */
.sf-copyright {
    font-family: var(--inter);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}


/* Laptop (1024px – 1199px): tighten gaps, reduce tagline size */
@media (max-width: 1199px) {
    .sf-grid {
        gap: 40px;
    }
    .sf-body {
        padding: 70px 0 60px;
    }
}

/* Tablet (768px – 1023px): tagline spans full width, two columns below */
@media (max-width: 1023px) {
    .sf-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 50px;
        text-align: center;
    }
    .sf-tagline-col {
        grid-column: 1 / -1;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding-bottom: 36px;
        margin-bottom: 4px;
    }
    .sf-tagline {
        font-size: clamp(1.9rem, 4vw, 2.5rem);
    }
    .sf-body {
        padding: 60px 0 50px;
    }
    .sf-bottom-inner {
        gap: 20px;
    }
}

/* Mobile landscape (480px – 767px): single column, centred */
@media (max-width: 767px) {
    .sf-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .sf-tagline-col {
        grid-column: 1;
        padding-bottom: 28px;
    }
    .sf-tagline {
        font-size: 2rem;
    }
    .sf-body {
        padding: 50px 0 44px;
    }
    .sf-phone {
        font-size: 1.35rem;
    }
    .sf-social-row {
        justify-content: center;
    }
    .sf-bottom-inner {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        text-align: center;
    }
    .sf-bottom-nav {
        gap: 22px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .sf-copyright {
        order: 2;
    }
}

/* Mobile portrait (< 480px): compact, centred bottom bar */
@media (max-width: 479px) {
    .sf-grid {
        gap: 26px;
    }
    .sf-tagline {
        font-size: 1.75rem;
    }
    .sf-body {
        padding: 44px 0 36px;
    }
    .sf-bottom-inner {
        align-items: center;
        text-align: center;
    }
    .sf-bottom-nav {
        justify-content: center;
        gap: 16px;
    }
    .sf-social-row {
        flex-wrap: wrap;
    }
}


.nl-section {
    background: #EDF4F6;
    padding: 56px 0;
}

.nl-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr 0.7fr;
    gap: 60px;
    align-items: center;
}

.nl-heading {
    font-family: var(--serif);
    font-size: clamp(1.55rem, 2.8vw, 2.15rem);
    font-weight: 400;
    color: var(--text);
    line-height: 1.25;
    margin: 0;
}

.nl-input {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(28, 22, 19, 0.28);
    padding: 10px 0 12px;
    font-family: var(--inter);
    font-size: 0.875rem;
    color: var(--text);
    outline: none;
    transition: border-color 0.3s ease;
    margin-bottom: 18px;
    box-shadow: none;
    border-radius: 0;
}

.nl-input::placeholder {
    color: rgba(28, 22, 19, 0.38);
}

.nl-input:focus {
    border-bottom-color: var(--text);
}

.nl-privacy-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    line-height: 1;
}

.nl-privacy-label input[type="checkbox"] {
    width: 13px;
    height: 13px;
    accent-color: var(--text);
    flex-shrink: 0;
    cursor: pointer;
    margin: 0;
}

.nl-privacy-label span {
    font-family: var(--inter);
    font-size: 0.78rem;
    color: var(--text);
    opacity: 0.6;
}

.nl-privacy-label a {
    color: var(--text);
    text-decoration: underline;
    opacity: 1;
}

.nl-submit-col {
    display: flex;
    justify-content: center;
}

.nl-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    font-family: var(--inter);
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    padding: 0;
    transition: opacity 0.3s ease;
}

.nl-submit-btn:hover {
    opacity: 0.5;
}

/* Laptop (1024px – 1199px): tighten gap only */
@media (max-width: 1199px) {
    .nl-grid {
        gap: 40px;
    }
}

/* Tablet (768px – 1023px): heading spans full width */
@media (max-width: 1023px) {
    .nl-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 40px;
    }
    .nl-heading-col {
        grid-column: 1 / -1;
    }
    .nl-submit-col {
        justify-content: flex-start;
    }
    .nl-section {
        padding: 48px 0;
    }
}

/* Mobile landscape (480px – 767px): fully stacked */
@media (max-width: 767px) {
    .nl-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .nl-submit-col {
        justify-content: flex-start;
    }
    .nl-section {
        padding: 44px 0;
    }
}

/* Mobile portrait (< 480px): compact */
@media (max-width: 479px) {
    .nl-heading {
        font-size: 1.55rem;
    }
    .nl-section {
        padding: 36px 0;
    }
}