/* 
   =============================================
   ABOUT US PAGE STYLES (about-design.css)
   Follows SKILL.md Luxury Guidelines
   ============================================= 
*/

/* --- 1. HERO SECTION --- */
.about-hero {
    position: relative;
    width: 100%;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-dark);
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 8, 6, 0.94) 0%, rgba(12, 10, 8, 0.85) 100%);
    z-index: 2;
}

/* Background Animation: Blueprint Lines & Glow */
.about-hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    opacity: 0.5;
    pointer-events: none;
}
.hero-noise-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    z-index: 4;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px;
}
.hero-bg-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    opacity: 0.25;
}
.hero-bg-lines svg {
    width: 100%;
    height: 100%;
}
.blueprint-grid {
    stroke: rgba(206, 158, 81, 0.12);
    stroke-dasharray: 20 20;
}
.blueprint-line {
    stroke: rgba(206, 158, 81, 0.25);
    stroke-width: 1;
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
}

.about-hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 900px;
    padding: var(--space-4);
}

.about-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(237, 139, 51, 0.1);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 30px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--space-4);
}

.about-hero h1 {
    font-size: clamp(36px, 5vw, 64px);
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: var(--space-4);
    font-family: var(--font-heading);
}

.about-hero p {
    font-size: 18px;
    color: var(--color-light);
    line-height: 1.6;
    margin-bottom: var(--space-5);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- 2. BREADCRUMB --- */
.about-breadcrumb {
    background-color: var(--color-white);
    padding: var(--space-3) 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.about-breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.about-breadcrumb li {
    color: var(--color-text);
}

.about-breadcrumb li a {
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
}

.about-breadcrumb li a:hover {
    color: var(--color-primary);
}

.about-breadcrumb li.separator {
    margin: 0 10px;
    color: var(--color-text-muted);
}

/* --- 3. COMPANY STORY --- */
.about-story {
    padding: 120px 0;
    background-color: var(--color-white);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 38% 56%;
    gap: 6%;
    align-items: center;
}

.about-story-images {
    position: relative;
    height: 100%;
    min-height: 550px;
}

.about-story-img-main {
    width: 80%;
    height: 75%;
    object-fit: cover;
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-story-img-sub {
    width: 55%;
    height: 45%;
    object-fit: cover;
    border-radius: 4px;
    position: absolute;
    bottom: -20px;
    right: 20px;
    border: 8px solid var(--color-white);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 2;
}

.about-story-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: var(--space-4);
    color: var(--color-dark);
}

.about-story-content p {
    font-size: 16px;
    color: var(--color-text-muted);
    margin-bottom: var(--space-3);
    line-height: 1.8;
}

/* --- 4. VISION, MISSION, VALUES --- */
.about-vmv {
    padding: 120px 0;
    background-color: #121212;
}

.about-vmv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
}

.vmv-card {
    background: #1a1a1a;
    padding: var(--space-5);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-top: 3px solid transparent;
    border: 1px solid rgba(255,255,255,0.05);
}

.vmv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(206,158,81,0.05);
    border-top-color: var(--color-primary);
}

.vmv-icon {
    font-size: 40px;
    color: var(--color-primary);
    margin-bottom: var(--space-3);
}

.vmv-card h3 {
    font-size: 24px;
    margin-bottom: var(--space-3);
    color: var(--color-white);
}

.vmv-card p, .vmv-card ul {
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.vmv-card ul {
    padding-left: 20px;
    margin-top: 15px;
}

.vmv-card li {
    margin-bottom: 12px;
    font-size: 15px;
    color: rgba(255,255,255,0.7);
}

/* --- 5. WHY CHOOSE US --- */
.about-why {
    padding: 120px 0;
    background-color: var(--color-white);
}

.about-why-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-6);
}

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.why-feature-card {
    background: #fafafa !important;
    padding: 30px !important;
    border-radius: 12px !important;
    border-left: none !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
    transition: all 0.4s ease !important;
    position: relative;
    overflow: hidden;
}
.why-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #BC9B57, transparent);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}
.why-feature-card:hover::before {
    transform: scaleY(1);
}
.why-feature-card:hover {
    background: white !important;
    box-shadow: 0 12px 45px rgba(188,155,87,0.12) !important;
    transform: translateY(-4px) !important;
}

.why-feature-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px !important;
}

.why-feature-num {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    color: #BC9B57 !important;
    font-family: 'Outfit', sans-serif !important;
    opacity: 1 !important;
}

.why-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(188,155,87,0.12);
    color: #BC9B57;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.4s ease;
}

.why-feature-card:hover .why-feature-icon {
    background: #BC9B57;
    color: #fff;
    transform: rotate(15deg) scale(1.1);
}

.why-feature-card h4 {
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    font-family: 'Cormorant Garamond', serif !important;
    color: #1C1410 !important;
    margin-bottom: 10px !important;
    line-height: 1.3 !important;
    letter-spacing: 0.01em !important;
}

.why-feature-card p {
    font-size: 1.02rem !important;
    font-family: 'Outfit', sans-serif !important;
    color: #4A443E !important;
    line-height: 1.65 !important;
    font-weight: 400 !important;
}



/* --- 7. DESIGN PHILOSOPHY --- */
.about-philosophy {
    padding: 120px 0;
    background-color: #F8F9FA;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 58% 38%;
    gap: 4%;
    align-items: center;
}

.philosophy-content h2 {
    font-size: 40px;
    margin-bottom: var(--space-4);
}

.philosophy-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.philosophy-list li {
    background: #111;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.05);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    color: var(--color-white);
}

.philosophy-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(206,158,81,0.1);
    border-color: rgba(206,158,81,0.3);
}

.philosophy-list li i {
    color: var(--color-primary);
    margin-right: 12px;
    font-size: 16px;
}

.philosophy-visual {
    position: relative;
    z-index: 1;
}

.philosophy-visual::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-primary);
    border-radius: 8px;
    z-index: -1;
}

.philosophy-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.philosophy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(237, 139, 51, 0.1), transparent);
    pointer-events: none;
    border-radius: 8px;
}

/* --- 8. PROCESS TIMELINE --- */
.about-process {
    padding: 120px 0;
    background-color: var(--color-white);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: var(--space-6);
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(0,0,0,0.05);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 15%;
}

.process-dot {
    width: 80px;
    height: 80px;
    background: var(--color-white);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-3);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
}

.process-step:hover .process-dot {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1);
}

.process-step h4 {
    font-size: 16px;
    color: var(--color-dark);
}



/* --- 10. STUDIO SHOWCASE --- */
.about-studio {
    padding: 120px 0;
    background-color: var(--color-dark);
    color: var(--color-white);
}

.about-studio-header h2 {
    color: var(--color-white);
}

.studio-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: var(--space-3);
    margin-top: var(--space-5);
}

.studio-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.studio-item:nth-child(1) { grid-row: span 2; }
.studio-item:nth-child(4) { grid-column: span 2; }

.studio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.studio-item:hover img {
    transform: scale(1.1);
}

.studio-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-3);
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--color-white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.studio-item:hover .studio-caption {
    opacity: 1;
}

/* --- 11. TESTIMONIALS --- */
/* (Re-use existing sasvat-design.css testimonials slider, just need wrapper styling) */
.about-testimonials {
    padding: 120px 0;
    background-color: var(--color-white);
}

/* --- 12. FINAL CTA --- */
.about-cta {
    position: relative;
    padding: 100px 0;
    text-align: center;
    background-color: #080705;
    overflow: hidden;
}

/* Dark background image — strong vignette so text is always legible */
.about-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.22;
}

/* Extra dark gradient overlay on top of the image */
.about-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(8, 6, 4, 0.92) 0%,
        rgba(12, 9, 6, 0.85) 50%,
        rgba(8, 6, 4, 0.92) 100%
    );
    z-index: 1;
}

/* Radial dark vignette — deepens edges for cinematic look */
.about-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 30%,
        rgba(0, 0, 0, 0.65) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.about-cta-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.about-cta-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: #FFFFFF;
    margin-bottom: var(--space-3);
    text-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 8px 30px rgba(0,0,0,0.6);
}

.about-cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: var(--space-5);
    text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    flex-wrap: wrap;
}


/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 991px) {
    .about-story, .about-vmv, .about-why, .about-stats, .about-philosophy, .about-process, .about-team, .about-studio, .about-testimonials {
        padding: 50px 0;  /* Reduced from 80px */
    }
    .about-hero { 
        height: auto; 
        min-height: 100vh;
        padding: 150px 20px 80px;
    }
    .about-story-grid, .philosophy-grid {
        grid-template-columns: 1fr;
    }
    .about-story-images {
        min-height: 400px;
        margin-bottom: var(--space-5);
    }
    .philosophy-visual {
        margin-top: 40px;
        margin-right: 15px;
    }
    .philosophy-visual::before {
        top: -15px;
        right: -15px;
    }
    .about-vmv-grid, .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-timeline {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-4);
    }
    .process-timeline::before {
        top: 0;
        left: 40px;
        width: 2px;
        height: 100%;
    }
    .process-step {
        width: 100%;
        display: flex;
        align-items: center;
        text-align: left;
    }
    .process-dot {
        margin: 0 var(--space-3) 0 0;
    }
    .studio-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .studio-item:nth-child(1), .studio-item:nth-child(4) {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* iPad Pro 11" (768px–991px): reduce hero top/bottom padding */
@media (max-width: 991px) and (min-width: 768px) {
    .about-hero {
        min-height: 450px !important;
        padding: 90px 20px 50px !important;
    }
    .about-story, .about-vmv, .about-why, .about-stats, .about-philosophy, .about-process, .about-team, .about-studio, .about-testimonials {
        padding: 40px 0 !important;
    }
}

/* iPad Mini & mobile (up to 767px): reduce hero top/bottom padding */
@media (max-width: 767px) {
    .about-hero {
        min-height: auto !important;
        height: auto !important;
        padding: 90px 20px 50px !important;  /* Was 150px top / 80px bottom */
    }
    .about-story, .about-vmv, .about-why, .about-stats, .about-philosophy, .about-process, .about-team, .about-studio, .about-testimonials {
        padding: 40px 0 !important;
    }
    .about-story-content {
        text-align: center;
    }
    .about-story-content .btn {
        width: 100%;
        display: block;
        margin-top: 30px;
        margin-bottom: 10px;
    }
    .about-vmv-grid, .about-stats-grid, .studio-gallery, .philosophy-list {
        grid-template-columns: 1fr;
    }
    .philosophy-visual::before {
        top: -10px;
        right: -10px;
    }
    .philosophy-visual {
        margin-right: 10px;
    }
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM WORKFLOW CARDS GRID DESIGN
   ═══════════════════════════════════════════════════════════ */
.workflow-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 50px;
}

.workflow-card {
    background: #ffffff;
    border: 1px solid rgba(188, 155, 87, 0.25);
    border-radius: 16px;
    padding: 32px 26px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.workflow-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #BC9B57, #E8D5A3);
    border-radius: 16px 16px 0 0;
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.workflow-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(188, 155, 87, 0.15);
    border-color: #BC9B57;
}

.workflow-card:hover::before {
    opacity: 1;
}

.workflow-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.workflow-step-badge {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #BC9B57;
    background: rgba(188, 155, 87, 0.1);
    border: 1px solid rgba(188, 155, 87, 0.3);
    padding: 4px 14px;
    border-radius: 50px;
    letter-spacing: 0.05em;
}

.workflow-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1C1410 0%, #2A2420 100%);
    color: #E8D5A3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, background 0.4s ease;
}

.workflow-card:hover .workflow-icon {
    transform: rotate(12deg) scale(1.08);
    background: linear-gradient(135deg, #BC9B57 0%, #A68343 100%);
    color: #ffffff;
}

.workflow-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.38rem;
    font-weight: 700;
    color: #1C1410;
    margin-bottom: 12px;
    line-height: 1.25;
}

.workflow-card-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 0.98rem;
    color: #55504A;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 991px) {
    .workflow-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .workflow-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════
   FOUNDERS / LEADERSHIP SECTION (Nikunj Bhai & Rajesh Bhai)
   ═══════════════════════════════════════════════════════════ */
.founders-section {
  background: #FAF6EE;
  padding: 5rem 2rem 6rem;
  position: relative;
  z-index: 5;
  border-top: 1px solid rgba(188, 155, 87, 0.2);
  border-bottom: 1px solid rgba(188, 155, 87, 0.2);
}

.founders-container {
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}

.founders-header {
  margin-bottom: 3.5rem;
}

.founders-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 600;
  color: #1C1410;
  margin: 0 0 1rem;
  line-height: 1.15;
}

.founders-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  color: #635E55;
  max-width: 680px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.7;
}

.founders-rows-wrap {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.founder-row {
  display: flex;
  align-items: center;
  gap: 4.5rem;
  background: rgba(254, 252, 247, 0.95);
  border: 1px solid rgba(188, 155, 87, 0.3);
  border-radius: 32px;
  padding: 3.5rem;
  box-shadow: 0 25px 60px rgba(44, 42, 38, 0.08);
  backdrop-filter: blur(10px);
  position: relative;
  transition: all 0.4s ease;
}

.founder-row:hover {
  border-color: #BC9B57;
  box-shadow: 0 35px 80px rgba(188, 155, 87, 0.18);
}

.founder-row-reverse {
  flex-direction: row-reverse;
}

.founder-img-col {
  flex: 0 0 40%;
  max-width: 40%;
}

.founder-portrait-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/4.8;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  background: #1C1410;
}

.founder-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.founder-experience-badge {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  background: rgba(28, 20, 16, 0.9);
  backdrop-filter: blur(8px);
  color: #E8D5A3;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(188, 155, 87, 0.4);
}

.founder-content-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.founder-role-tag {
  display: inline-flex;
  align-items: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #6e5323;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  background: rgba(188, 155, 87, 0.12);
  border: 1px solid rgba(188, 155, 87, 0.35);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
}

.founder-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: #1C1410;
  margin: 0 0 0.8rem;
}

.founder-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  font-style: italic;
  color: #7B5A30;
  line-height: 1.5;
  margin: 0 0 1.2rem;
  border-left: 2.5px solid #BC9B57;
  padding-left: 1rem;
}

.founder-bio {
  font-family: 'Outfit', sans-serif;
  font-size: 0.98rem;
  color: #635E55;
  line-height: 1.75;
  font-weight: 400;
  margin: 0 0 1rem;
}

.founder-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.8rem 0 1.5rem;
}

.founder-hl-item {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #2C1F0E;
  display: flex;
  align-items: center;
}

.founder-hl-item i {
  color: #BC9B57;
}

.founder-tags {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.founder-tags span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #6e5323;
  text-transform: uppercase;
  background: rgba(188, 155, 87, 0.1);
  border: 1px solid rgba(188, 155, 87, 0.25);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
}

@media (max-width: 992px) {
  .founder-row, .founder-row-reverse {
    flex-direction: column;
    padding: 2.2rem;
    gap: 2rem;
  }
  .founder-img-col {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
}
