/* ===================================
   CLAF GOLDSMITH - INDEX.HTML
   Estilos específicos de la página principal
   =================================== */

/* HERO SECTION - CON IMAGEN Y LOGO */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 51, 71, 0.4) 0%,
        rgba(10, 51, 71, 0.6) 50%,
        rgba(10, 51, 71, 0.8) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    margin-top: 8vh;
}

.hero-logo-container {
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.hero-brand-name {
    font-size: 5rem;
    font-weight: 100;
    letter-spacing: 8px;
    color: var(--color-white);
    margin: 0;
    animation: fadeInDown 1s ease-out;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.hero-brand-subtitle {
    display: block;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--color-white);
    margin-top: 0.5rem;
}

.hero-logo {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.hero-title {
    font-size: 2rem;
    font-weight: var(--weight-regular);
    margin-bottom: 1rem;
    color: var(--color-white);
    animation: fadeInUp 1s ease-out 0.3s both;
    letter-spacing: 2px;
    margin-top: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: var(--weight-light);
    color: var(--color-white);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-section .btn-primary {
    background-color: var(--color-rose);
    border-color: var(--color-rose);
    color: var(--color-white);
}

.hero-section .btn-primary:hover {
    background-color: var(--color-white);
    color: var(--color-rose);
    border-color: var(--color-rose);
}

.hero-section .btn-secondary {
    background-color: var(--color-rose);
    border-color: var(--color-rose);
    color: var(--color-white);
}

.hero-section .btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-rose);
    border-color: var(--color-rose);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.hero-scroll i {
    font-size: 2rem;
    color: var(--color-rose);
}

/* FILOSOFÍA DEL TALLER */
.philosophy-section {
    background-color: var(--color-white);
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.philosophy-text h2 {
    font-size: 2.5rem;
    font-weight: var(--weight-regular);  /* 300 */
    margin-bottom: var(--spacing-md);
}

.lead-text {
    font-size: 1.2rem;
    font-weight: var(--weight-regular);  /* 300 */
    line-height: 1.8;
    color: var(--color-navy);
    margin-bottom: var(--spacing-md);
}

.philosophy-image {
    border: var(--border-thin) solid rgba(10, 51, 71, 0.1);
    overflow: hidden;
}

.philosophy-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

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

/* VALORES */
.values-section {
    background-color: var(--color-beige);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.value-card {
    background: var(--color-white);
    border: var(--border-thin) solid rgba(10, 51, 71, 0.1);
    overflow: hidden;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.value-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.value-card:hover .value-image img {
    transform: scale(1.1);
}

.value-content {
    padding: var(--spacing-md);
}

.value-content h3 {
    font-size: 1.5rem;
    font-weight: var(--weight-medium);  /* 400 */
    margin-bottom: var(--spacing-sm);
    color: var(--color-navy);
}

.value-content p {
    font-size: 0.95rem;
    font-weight: var(--weight-light);  /* 200 */
    line-height: 1.7;
}

/* DOS LÍNEAS DE NEGOCIO */
.business-lines-section {
    background-color: var(--color-white);
}

.business-lines-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.business-line-card {
    border: var(--border-thin) solid rgba(10, 51, 71, 0.1);
    overflow: hidden;
    transition: var(--transition);
    background: var(--color-beige);
}

.business-line-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.business-line-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.business-line-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.business-line-card:hover .business-line-image img {
    transform: scale(1.08);
}

.business-line-content {
    padding: var(--spacing-md);
}

.business-line-content h3 {
    font-size: 2rem;
    font-weight: var(--weight-regular);  /* 300 */
    margin-bottom: var(--spacing-sm);
    color: var(--color-navy);
}

.business-line-content p {
    font-size: 1rem;
    font-weight: var(--weight-light);  /* 200 */
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.business-line-features {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.business-line-features li {
    font-size: 0.95rem;
    font-weight: var(--weight-regular);  /* 300 */
    padding: 0.5rem 0;
    color: var(--color-gray-dark);
}

.business-line-features i {
    color: var(--color-coral);
    margin-right: 0.5rem;
}

/* TESTIMONIOS / OPINIONES */
.testimonials-section {
    background-color: var(--color-white);
}

.testimonials-carousel {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    position: relative;
    min-width: calc(33.333% - 1.4rem);
    max-width: calc(33.333% - 1.4rem);
    height: 420px;
    flex-shrink: 0;
    scroll-snap-align: start;
    background: var(--color-beige);
    border: var(--border-thin) solid rgba(10, 51, 71, 0.1);
    padding: 1.5rem;
    padding-top: 4.5rem;
    transition: var(--transition);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

/* Logo badge de matrimonios.cl en cada tarjeta */
.matrimonios-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 5;
    width: 120px;
    height: auto;
    opacity: 0.9;
    transition: var(--transition);
}

.matrimonios-badge:hover {
    opacity: 1;
    transform: scale(1.05);
}

.matrimonios-badge img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-rose);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-avatar i {
    font-size: 1.5rem;
    color: var(--color-white);
}

.testimonial-info h4 {
    font-size: 1.2rem;
    font-weight: var(--weight-medium);
    color: var(--color-navy);
    margin: 0;
}

.testimonial-date {
    font-size: 0.85rem;
    color: var(--color-gray-medium);
    margin: 0.25rem 0 0 0;
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: var(--color-rose);
    font-size: 1rem;
}

.testimonial-title {
    font-size: 0.95rem;
    font-weight: var(--weight-medium);
    color: var(--color-navy);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    word-wrap: break-word;
}

.testimonial-text {
    font-size: 0.85rem;
    font-weight: var(--weight-light);
    line-height: 1.6;
    color: var(--color-gray-dark);
    word-wrap: break-word;
    white-space: normal;
    overflow-wrap: break-word;
    flex: 1;
    overflow-y: auto;
    max-height: 180px;
}

.testimonial-text::-webkit-scrollbar {
    width: 4px;
}

.testimonial-text::-webkit-scrollbar-track {
    background: rgba(10, 51, 71, 0.05);
}

.testimonial-text::-webkit-scrollbar-thumb {
    background: var(--color-rose);
    border-radius: 2px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-white);
    border: var(--border-thin) solid rgba(10, 51, 71, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--color-rose);
    border-color: var(--color-rose);
    color: var(--color-white);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

/* Indicadores del carousel (dots) */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(10, 51, 71, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot:hover {
    background: rgba(10, 51, 71, 0.4);
}

.carousel-dot.active {
    background: var(--color-rose);
    width: 30px;
    border-radius: 6px;
}

/* Rating number */
.rating-number {
    font-size: 0.9rem;
    color: var(--color-gray-medium);
    margin-left: 0.5rem;
    font-weight: var(--weight-medium);
}

/* Logo de testimonios */
.testimonials-logo {
    text-align: center;
}

.testimonials-logo img {
    filter: grayscale(20%);
    opacity: 0.9;
    transition: var(--transition);
}

.testimonials-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* SECCIONES DE VIDEO FIJO */

.video-section {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 51, 71, 0.7);
    z-index: 1;
}

.video-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: 2rem;
}

.video-content h2 {
    font-size: 3rem;
    font-weight: var(--weight-regular);  /* 300 */
    color: var(--color-white);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.video-content p {
    font-size: 1.3rem;
    font-weight: var(--weight-light);  /* 200 */
    color: rgba(255, 255, 255, 0.9);
}

/* Video hero section */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-section .hero-content {
    position: relative;
    z-index: 3; /* encima del video y del overlay */
}

/* PRODUCTOS DESTACADOS */
.products-section {
    background-color: var(--color-beige);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.product-card {
    background: var(--color-white);
    border: var(--border-thin) solid rgba(10, 51, 71, 0.1);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-rose);
    color: var(--color-white);
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: var(--weight-medium);  /* 400 */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info {
    padding: var(--spacing-md);
}

.product-category {
    font-size: 0.8rem;
    font-weight: var(--weight-regular);  /* 300 */
    color: var(--color-gray-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1.3rem;
    font-weight: var(--weight-regular);  /* 300 */
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: var(--weight-medium);  /* 400 */
    color: var(--color-rose);
    margin-bottom: 1rem;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-add-cart {
    flex: 1;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.btn-icon {
    padding: 0.75rem 1rem;
    background: transparent;
    border: var(--border-normal) solid var(--color-navy);
    color: var(--color-navy);
    cursor: pointer;
    transition: var(--transition);
}

.btn-icon:hover {
    background: var(--color-navy-dark);
    color: var(--color-white);
}

/* PROCESO ARTESANAL */
.process-section {
    background-color: var(--color-white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.process-step {
    position: relative;
    text-align: center;
}

.process-number {
    font-size: 3rem;
    font-weight: var(--weight-light);  /* 200 */
    color: var(--color-rose);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.process-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border: var(--border-thin) solid rgba(10, 51, 71, 0.1);
    margin-bottom: var(--spacing-sm);
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.process-step:hover .process-image img {
    transform: scale(1.1);
}

.process-content h3 {
    font-size: 1.3rem;
    font-weight: var(--weight-medium);  /* 400 */
    margin-bottom: 0.5rem;
    color: var(--color-navy);
}

.process-content p {
    font-size: 0.9rem;
    font-weight: var(--weight-light);  /* 200 */
    line-height: 1.6;
}

/* CTA FINAL */
.cta-section {
    /* Nuevo degradado: rosa palo a azul oscuro acorde a la paleta de marca */
    background: linear-gradient(135deg, #D4A5A0 0%, #0a3347 100%);
    padding: var(--spacing-xl) 0;
}

.cta-content {
    text-align: center;
    color: var(--color-white);
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: var(--weight-regular);  /* 300 */
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    font-size: 1.2rem;
    font-weight: var(--weight-light);  /* 200 */
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto var(--spacing-md);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    background: var(--color-white);
    color: var(--color-navy);
    border-color: var(--color-white);
}

.cta-buttons .btn:hover {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.section-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* ANIMACIONES */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* ===================================
   RESPONSIVE - INDEX
   =================================== */

/* Tablets */
@media (max-width: 1024px) {
    .hero-brand-name {
        font-size: 4rem;
    }
    
    .hero-brand-subtitle {
        font-size: 2rem;
    }
    
    .philosophy-content,
    .business-lines-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-track {
        gap: 1.5rem;
    }
}

/* Móviles */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-content {
        padding: 1rem;
        margin-top: 5vh;
    }
    
    .hero-brand-name {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    .hero-brand-subtitle {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .hero-logo {
        max-width: 150px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* Filosofía y valores */
    .philosophy-image img {
        height: 350px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .value-image {
        height: 220px;
    }
    
    /* Business lines */
    .business-line-image {
        height: 280px;
    }
    
    /* Testimonios */
    .testimonials-carousel {
        padding: 0 45px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .testimonial-card {
        min-width: calc(50% - 1rem);
        padding: 1.5rem;
        padding-top: 3.5rem;
    }
    
    .matrimonios-badge {
        width: 60px;
        top: 0.5rem;
        left: 0.5rem;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-avatar i {
        font-size: 1.2rem;
    }
    
    .testimonial-card {
        min-width: 100%;
    }
    
    .matrimonios-badge {
        width: 50px;
    }
    
    /* Video sections */
    .video-section {
        height: 40vh;
        min-height: 300px;
    }
    
    .video-content h2 {
        font-size: 1.8rem;
    }
    
    .video-content p {
        font-size: 1.1rem;
    }
    
    /* Proceso */
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    /* Productos */
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    /* CTA */
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    .hero-brand-name {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .hero-brand-subtitle {
        font-size: 1.2rem;
    }
    
/* SECCIÓN VIÑA DEL MAR - GALERÍA */
.vina-del-mar-section {
    background-color: #fff;
    padding: 60px 0 80px 0;
}

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

.vina-header .section-title {
    margin-bottom: 10px;
}

/* Contenedor wrapper */
.vina-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Layout FLEXBOX - galería izquierda, texto derecha */
.founder-layout {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 40px;
}

/* COLUMNA 1: GALERÍA - 200px fijo */
.founder-photo-wrapper {
    flex: 0 0 200px !important;
    width: 200px !important;
}

.founder-photo-container {
    width: 100% !important;
    height: 260px !important;
    overflow: hidden;
    background: #f0f0f0;
    margin-bottom: 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%);
    transition: opacity 0.5s ease;
}

/* Thumbnails clicables */
.photo-thumbnails {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
}

.thumbnail {
    width: 100%;
    height: 30px !important;
    object-fit: cover;
    filter: grayscale(100%);
    cursor: pointer;
    border-radius: 4px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: #8B7355;
    opacity: 1;
}

/* COLUMNA 2: TEXTO - toma el resto del espacio disponible */
.founder-panel {
    flex: 1 1 auto;
    background-color: #F7F5F0;
    padding: 50px 45px;
    min-width: 0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-panel-content {
    width: 100%;
    max-width: 600px;
}

.founder-eyebrow {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #999;
    margin: 0 0 12px 0;
}

.founder-title {
    font-family: 'Trajan', serif;
    font-size: 26px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #0a3347;
    margin: 0 0 18px 0;
    line-height: 1.3;
}

.founder-description {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.85;
    color: #555;
    margin: 0 0 22px 0;
}

.founder-panel .btn {
    font-size: 12px;
    padding: 10px 30px;
    letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .founder-layout {
        flex-direction: column;
    }
    
    .founder-photo-wrapper {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .founder-photo-container {
        width: 100%;
        height: auto;
        aspect-ratio: 3/4;
    }
    
    .founder-photo {
        width: 100%;
        height: 100%;
    }
    
    .founder-panel {
        flex: 0 0 auto;
        padding: 25px 20px;
    }
    
    .founder-title {
        font-size: 22px;
    }
    
    .founder-description {
        font-size: 13px;
    }
}

    
