/* ================================
   ABOUT PAGE SPECIFIC STYLES
   ================================ */

/* ===== PAGE HERO ===== */
.page-hero {
    height: 400px;
    background: linear-gradient(rgba(44, 44, 44, 0.5), rgba(44, 44, 44, 0.5)),
                url('https://images.pexels.com/photos/4202388/pexels-photo-4202388.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.page-title {
    font-size: clamp(48px, 6vw, 72px);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.breadcrumb {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb span {
    margin: 0 10px;
    color: var(--secondary-color);
}

/* ===== OUR STORY SECTION ===== */
.our-story-section {
    padding: 120px 0;
    background-color: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--white);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
    text-align: center;
}

.story-badge svg {
    margin-bottom: 10px;
}

.story-badge p {
    font-size: 11px;
    letter-spacing: 1.5px;
    line-height: 1.4;
    color: var(--primary-color);
    font-weight: 600;
}

.story-img-1 {
    width: 100%;
    height: 450px;
    object-fit: cover;
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.story-img-2 {
    width: 100%;
    height: 300px;
    object-fit: cover;
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    align-self: end;
}

.story-content {
    padding: 0 20px;
}

.section-title-left {
    font-size: clamp(36px, 4vw, 48px);
    margin-bottom: 20px;
    text-align: left;
    color: var(--text-dark);
}

.divider-line {
    width: 80px;
    height: 2px;
    background-color: var(--primary-color);
    margin-bottom: 30px;
}

.story-text {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* ===== VALUES SECTION ===== */
.values-section {
    padding: 80px 0;
    background-color: var(--bg-cream);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-card {
    background-color: var(--white);
    padding: 50px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 25px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.value-card p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
}

/* ===== ABOUT BANNER ===== */
.about-banner {
    height: 500px;
    background: url('https://images.pexels.com/photos/4041279/pexels-photo-4041279.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover fixed;
    position: relative;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(139, 115, 85, 0.2);
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: 100px 0;
    background-color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
}

.team-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 25px;
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .team-image img {
    transform: scale(1.1);
}

.member-name {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.member-role {
    font-size: 13px;
    letter-spacing: 1.5px;
    color: var(--text-light);
    text-transform: uppercase;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section-about {
    padding: 100px 0;
    background-color: var(--bg-cream);
}

.testimonials-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 40px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: calc(50% - 20px);
    flex-shrink: 0;
    background-color: var(--white);
    display: flex;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.product-image-testimonial {
    width: 45%;
    position: relative;
    overflow: hidden;
}

.product-image-testimonial img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.testimonial-card:hover .product-image-testimonial img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px 20px 20px;
    color: var(--white);
}

.product-overlay h4 {
    font-size: 18px;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.price-range {
    font-size: 14px;
    color: var(--secondary-color);
}

.testimonial-content {
    width: 55%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.4;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.author-role {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white);
    border: 1px solid var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.testimonial-nav:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.testimonial-nav svg {
    stroke: currentColor;
}

.prev-testimonial {
    left: -25px;
}

.next-testimonial {
    right: -25px;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section-about {
    padding: 100px 0;
    background-color: var(--accent-color);
    text-align: center;
}

.newsletter-brand {
    margin-bottom: 30px;
}

.newsletter-logo {
    font-size: 32px;
    letter-spacing: 4px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.newsletter-tagline {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.newsletter-title {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 15px;
    color: var(--text-dark);
}

.newsletter-subtitle {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.newsletter-form-about {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-color: var(--white);
}

.newsletter-input-about {
    flex: 1;
    padding: 18px 25px;
    border: none;
    font-size: 14px;
    outline: none;
    font-family: var(--font-primary);
}

.btn-newsletter {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 18px 25px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-newsletter:hover {
    background-color: var(--text-dark);
}

.btn-newsletter svg {
    display: block;
}

/* ===== ACTIVE NAVIGATION ===== */
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    width: 100%;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .story-grid {
        gap: 60px;
    }
    
    .testimonial-card {
        min-width: 100%;
    }
    
    .testimonial-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 300px;
    }
    
    .page-title {
        font-size: 42px;
    }
    
    .our-story-section {
        padding: 80px 0;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .story-images {
        order: 2;
    }
    
    .story-content {
        order: 1;
        padding: 0;
    }
    
    .story-img-1 {
        height: 350px;
    }
    
    .story-img-2 {
        height: 250px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .value-card {
        padding: 40px 25px;
    }
    
    .about-banner {
        height: 300px;
        background-attachment: scroll;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-image {
        height: 350px;
    }
    
    .testimonial-card {
        flex-direction: column;
    }
    
    .product-image-testimonial,
    .testimonial-content {
        width: 100%;
    }
    
    .product-image-testimonial {
        height: 250px;
    }
    
    .testimonial-content {
        padding: 30px 25px;
    }
    
    .newsletter-form-about {
        flex-direction: column;
    }
    
    .newsletter-input-about {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 32px;
    }
    
    .breadcrumb {
        font-size: 12px;
    }
    
    .section-title-left {
        font-size: 28px;
    }
    
    .story-badge {
        width: 100px;
        height: 100px;
    }
    
    .story-badge svg {
        width: 40px;
        height: 40px;
    }
    
    .story-badge p {
        font-size: 9px;
    }
    
    .value-icon {
        font-size: 36px;
    }
    
    .newsletter-logo {
        font-size: 24px;
    }
    
    .newsletter-title {
        font-size: 24px;
    }
}

/* ═══════════════════════════════════════
   OUR STORY SECTION
═══════════════════════════════════════ */
.our-story-section {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ── Left Visual ── */
.story-images {
    position: relative;
    height: 560px;
}

/* Diagonal decorative line */
.deco-line {
    position: absolute;
    top: 50%;
    left: -30px;
    right: -30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #F5E6D3 20%, #D4A574 50%, #F5E6D3 80%, transparent);
    transform: translateY(-50%) rotate(-8deg);
    z-index: 0;
    border-radius: 2px;
}
.deco-line::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -30px;
    right: -30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #F5E6D3 30%, #F5E6D3 70%, transparent);
    border-radius: 2px;
    opacity: .5;
}

/* Image 1 – tall, left */
.story-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 62%;
    height: 78%;
    object-fit: cover;
    z-index: 1;
    animation: floatA 5s ease-in-out infinite;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

/* Image 2 – smaller, bottom right */
.story-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 54%;
    height: 55%;
    object-fit: cover;
    z-index: 2;
    animation: floatB 5s ease-in-out infinite;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .14);
}

@keyframes floatA {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-18px); }
}
@keyframes floatB {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(18px); }
}

/* ── Rotating Ring ── */
.rotating-ring {
    position: absolute;
    top: 28%;
    left: 48%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    z-index: 3;
}
.rotating-ring svg {
    width: 100%;
    height: 100%;
    animation: spinRing 12s linear infinite;
}
@keyframes spinRing {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
.ring-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    margin: auto;
    top: 0; bottom: 0; left: 0; right: 0;
}
.ring-center i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* ── Right Content ── */
.story-label {
    display: block;
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.story-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 18px;
}

.story-text {
    font-size: 14.5px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 16px;
    font-weight: 300;
}

/* ── Stats Grid ── */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
    margin: 32px 0;
    padding: 28px 0;
    border-top: 1px solid rgba(139, 115, 85, .15);
    border-bottom: 1px solid rgba(139, 115, 85, .15);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 968px) {
    .story-grid        { grid-template-columns: 1fr; gap: 60px; }
    .story-images      { height: 420px; }
}
@media (max-width: 540px) {
    .story-images      { height: 300px; }
    .rotating-ring     { width: 90px; height: 90px; }
    .stat-number       { font-size: 1.6rem; }
}

/* ═══════════════════════════════════════
   OUR STORY SECTION
═══════════════════════════════════════ */
.our-story-section {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-images {
    position: relative;
    height: 580px;
}

.deco-line {
    position: absolute;
    top: 55%;
    left: -10px;
    width: 75%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D4A574 40%, #D4A574 60%, transparent);
    transform: rotate(-10deg);
    z-index: 0;
}

.story-img-1 {
    position: absolute;
    top: 0; left: 0;
    width: 55%; height: 90%;
    object-fit: cover;
    object-position: center top;
    z-index: 1;
    box-shadow: 0 20px 50px rgba(0,0,0,.14);
    animation: floatUp 5s ease-in-out infinite;
}

.story-img-2 {
    position: absolute;
    bottom: 0; right: 0;
    width: 56%; height: 48%;
    object-fit: cover;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0,0,0,.16);
    animation: floatDown 5s ease-in-out infinite;
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-16px); }
}
@keyframes floatDown {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(16px); }
}

.rotating-ring {
    position: absolute;
    top: -16px;
    right: 16%;
    width: 136px;
    height: 136px;
    z-index: 4;
}
.rotating-ring svg {
    width: 100%;
    height: 100%;
    animation: spin 14s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.ring-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ring-center i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.story-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.story-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 18px;
}

.story-text {
    font-size: 14.5px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 16px;
    font-weight: 300;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 50px;
    padding: 30px 0;
    margin: 28px 0;
    border-top: 1px solid rgba(139,115,85,.15);
    border-bottom: 1px solid rgba(139,115,85,.15);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.btn-story {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 34px;
    background: var(--primary-color);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    transition: background .3s, transform .25s, box-shadow .25s;
    box-shadow: 0 4px 16px rgba(139,115,85,.25);
}
.btn-story:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.btn-story i { font-size: 15px; }

/* Responsive */
@media (max-width: 968px) {
    .story-grid   { grid-template-columns: 1fr; gap: 60px; }
    .story-images { height: 460px; }
}
@media (max-width: 540px) {
    .story-images  { height: 320px; }
    .rotating-ring { width: 100px; height: 100px; }
    .stat-number   { font-size: 1.6rem; }
}

.story-images   { position: relative; height: 580px; }

.story-img-1 {
    position: absolute;
    top: 0; left: 0;
    width: 60%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 1;
    box-shadow: 0 20px 50px rgba(0,0,0,.14);
    animation: floatUp 5s ease-in-out infinite;
}

.story-img-2 {
    position: absolute;
    bottom: 0; right: 0;
    width: 52%;
    height: 55%;
    object-fit: cover;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0,0,0,.16);
    animation: floatDown 5s ease-in-out infinite;
}

/* Ring — centered at the overlap point of both images */
.rotating-ring {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    z-index: 3;
}

.story-img-1,
.story-img-2 {
    border: 6px solid #fff;
    outline: 1px solid #D4A574;
}