/* About Page - Hero Section */

.about-hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-bg-wrapper {
    position: absolute;
    inset: 0;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(59, 47, 47, 0.7) 0%, 
        rgba(74, 124, 62, 0.5) 50%, 
        rgba(59, 47, 47, 0.7) 100%);
    z-index: 10;
}

.about-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-blur-container {
    position: absolute;
    inset: 0;
    z-index: 15;
    pointer-events: none;
}

.about-hero-blur-circle {
    position: absolute;
    width: 8rem;
    height: 8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(64px);
    opacity: 0.2;
}

.about-hero-blur-circle:nth-child(1) {
    transform: translateY(-371.292px) scale(2.85646);
}

.about-hero-blur-circle:nth-child(2) {
    transform: translateX(10%) translateY(-387.451px) scale(2.93726);
}

.about-hero-blur-circle:nth-child(3) {
    transform: translateX(20%) translateY(-195.707px) scale(1.97853);
}

.about-hero-blur-circle:nth-child(4) {
    transform: translateX(30%) translateY(-161.023px) scale(1.80511);
}

.about-hero-blur-circle:nth-child(5) {
    transform: translateX(40%) translateY(-116.413px) scale(1.58207);
}

.about-hero-blur-circle:nth-child(6) {
    transform: translateX(50%) translateY(-156.911px) scale(1.78455);
}

.about-hero-blur-circle:nth-child(7) {
    transform: translateX(60%) translateY(-29.3495px) scale(1.14675);
}

.about-hero-blur-circle:nth-child(8) {
    transform: translateX(70%) translateY(-38.9773px) scale(1.19489);
}

.about-hero-blur-circle:nth-child(9) {
    transform: translateX(80%) translateY(-47.0807px) scale(1.2354);
}

.about-hero-blur-circle:nth-child(10) {
    transform: translateX(90%) translateY(-384.265px) scale(2.92132);
}

.about-hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    color: white;
    padding: 0 1rem;
    max-width: 80rem;
    margin: 0 auto;
}

.about-hero-content-inner {
    opacity: 1;
    transform: none;
}

.about-hero-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.15rem;
    margin: 0 0 1.25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(255, 248, 232, 0.92);
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.about-hero-title {
    font-family: var(--font-display-vn);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 400;
}

@media (min-width: 1024px) {
    .about-hero-title {
        font-size: 4.5rem;
    }
}

.about-hero-subtitle {
    font-family: var(--font-display-vn);
    font-size: 1.875rem;
    color: #E8C469;
    margin-bottom: 1rem;
    opacity: 1;
    font-weight: 400;
}

@media (min-width: 1024px) {
    .about-hero-subtitle {
        font-size: 2.25rem;
    }
}

.about-hero-description {
    font-family: var(--font-display-vn);
    font-size: 1.25rem;
    color: rgba(248, 246, 240, 0.95);
    max-width: 48rem;
    margin: 0 auto;
    opacity: 1;
    font-weight: 400;
    line-height: 1.8;
}

.about-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    max-width: 980px;
    margin: 2.5rem auto 0;
}

.about-hero-stat {
    padding: 1.15rem 1rem;
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 18px 45px rgba(22, 20, 18, 0.12);
}

.about-hero-stat strong {
    display: block;
    margin-bottom: 0.45rem;
    color: #ffffff;
    font-size: 1.35rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.about-hero-stat span {
    display: block;
    color: rgba(255, 248, 232, 0.84);
    line-height: 1.55;
    font-size: 0.95rem;
}

/* Social Media Icons - Right Side */
.about-social-icons {
    position: fixed;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 1024px) {
    .about-social-icons {
        right: 2rem;
    }
}

.about-social-icon {
    background: black;
    color: white;
    padding: 0.75rem;
    border-radius: 50%;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
    opacity: 1;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
}

.about-social-icon:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.about-social-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.about-social-icon.facebook {
    background: #1877F2;
}

.about-social-icon.zalo {
    background: #0068FF;
}

/* Bottom Left - Leaf Icon */
.about-leaf-button-container {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 40;
    display: flex;
    align-items: flex-end;
    gap: 1rem;
}

.about-leaf-button {
    position: relative;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}

.about-leaf-button-inner {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(to bottom right, #4A7C3E, #E8C469);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.about-leaf-button-glow {
    position: absolute;
    inset: 0;
    background: rgba(232, 196, 105, 0.2);
    border-radius: 50%;
    transform: scale(1.13082);
}

.about-leaf-button-icon {
    width: 2rem;
    height: 2rem;
    color: white;
    position: relative;
    z-index: 10;
}

.about-leaf-button-sparkle {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
}

.about-leaf-button-sparkle-inner {
    width: 1.25rem;
    height: 1.25rem;
    background: #E8C469;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-leaf-button-sparkle svg {
    width: 0.75rem;
    height: 0.75rem;
    color: white;
}

.about-leaf-button-border {
    position: absolute;
    inset: 0;
    border: 2px solid #E8C469;
    border-radius: 50%;
    transform: scale(1.08721);
}

.about-leaf-button-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.about-leaf-button:hover .about-leaf-button-tooltip {
    opacity: 1;
}

.about-leaf-button-tooltip-text {
    background: #3B2F2F;
    color: white;
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    white-space: nowrap;
}

/* Scroll Indicator - Bottom Center */
.about-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
}

.about-scroll-indicator-inner {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid #E8C469;
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.about-scroll-dot {
    width: 0.375rem;
    height: 0.375rem;
    background: #E8C469;
    border-radius: 50%;
    transform: translateY(2.42571px);
}

/* About Page - Origin Section */

.about-origin-section {
    padding: 6rem 0;
    background-color: white;
}

@media (min-width: 1024px) {
    .about-origin-section {
        padding: 8rem 0;
    }
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 1024px) {
    .about-container {
        padding: 0 2rem;
    }
}

.about-origin-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-origin-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.about-origin-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-origin-main-image {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
}

.about-origin-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-origin-sub-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-origin-sub-image {
    position: relative;
    aspect-ratio: 1;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    width: 100%;
}

.about-origin-sub-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-hover {
    transition: transform 0.7s ease;
}

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

.about-origin-content {
    opacity: 1;
    transform: none;
}

.about-origin-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    color: #3B2F2F;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .about-origin-title {
        font-size: 3rem;
    }
}

.about-origin-divider {
    width: 8rem;
    height: 0.25rem;
    background: linear-gradient(to right, #4A7C3E, #E8C469);
    margin-bottom: 2rem;
}

.about-origin-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 1.125rem;
    color: rgba(59, 47, 47, 0.8);
    line-height: 1.625;
}

.about-origin-text p {
    margin: 0;
}

.about-text-highlight {
    color: #4A7C3E;
}

.about-quote-block {
    border-left: 4px solid #E8C469;
    padding-left: 1.5rem;
    font-style: italic;
    color: #4A7C3E;
    font-size: 1.25rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin: 0;
}

.about-philosophy-section {
    padding: 6rem 0;
    background:
        radial-gradient(circle at top left, rgba(232, 196, 105, 0.12), transparent 28%),
        linear-gradient(180deg, #fffdfa 0%, #f8f6f0 100%);
}

.about-philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.about-philosophy-card {
    position: relative;
    height: 100%;
    padding: 2rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(74, 124, 62, 0.08);
    box-shadow: 0 20px 40px rgba(59, 47, 47, 0.08);
}

.about-philosophy-index {
    display: inline-block;
    margin-bottom: 1rem;
    color: #E8C469;
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
}

.about-philosophy-title {
    margin: 0 0 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    line-height: 1.3;
    color: #3B2F2F;
}

.about-philosophy-text {
    margin: 0;
    color: rgba(59, 47, 47, 0.72);
    line-height: 1.8;
}

.about-philosophy-highlight {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
    gap: 1.5rem;
    align-items: stretch;
    margin-top: 2rem;
}

.about-philosophy-highlight-copy,
.about-philosophy-highlight-metrics {
    border-radius: 1.5rem;
    padding: 2rem;
}

.about-philosophy-highlight-copy {
    background: linear-gradient(135deg, #3b2f2f 0%, #4a7c3e 100%);
    color: rgba(255, 249, 238, 0.92);
    box-shadow: 0 24px 54px rgba(51, 41, 35, 0.16);
}

.about-philosophy-highlight-label {
    margin: 0 0 0.8rem;
    color: #E8C469;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}

.about-philosophy-highlight-copy h3 {
    margin: 0 0 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    line-height: 1.25;
    color: #fff7e8;
}

.about-philosophy-highlight-copy p:last-child {
    margin: 0;
    line-height: 1.85;
}

.about-philosophy-highlight-metrics {
    display: grid;
    gap: 1rem;
    background: white;
    border: 1px solid rgba(74, 124, 62, 0.08);
    box-shadow: 0 18px 40px rgba(59, 47, 47, 0.08);
}

.about-philosophy-highlight-metrics div {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(74, 124, 62, 0.08);
}

.about-philosophy-highlight-metrics div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.about-philosophy-highlight-metrics strong {
    display: block;
    margin-bottom: 0.45rem;
    color: #3B2F2F;
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
}

.about-philosophy-highlight-metrics span {
    color: rgba(59, 47, 47, 0.72);
    line-height: 1.7;
}

/* About Page - Mission Section */
.about-mission-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, rgba(74, 124, 62, 0.05) 0%, white 100%);
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .about-mission-section {
        padding: 8rem 0;
    }
}

.about-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-section-title-large {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #3B2F2F;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .about-section-title-large {
        font-size: 3.75rem;
    }
}

.about-divider {
    width: 8rem;
    height: 0.25rem;
    background: linear-gradient(to right, #4A7C3E, #E8C469);
    margin: 0 auto 1.5rem;
}

.about-section-subtitle {
    font-size: 1.25rem;
    color: rgba(59, 47, 47, 0.7);
    max-width: 48rem;
    margin: 0 auto;
}

.about-mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .about-mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .about-mission-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
}

.about-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-craft-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fbf7ef 100%);
}

.about-craft-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.4rem;
}

.about-craft-card {
    position: relative;
    padding: 2rem 1.6rem;
    border-radius: 1.25rem;
    background: white;
    border: 1px solid rgba(232, 196, 105, 0.22);
    box-shadow: 0 18px 40px rgba(59, 47, 47, 0.08);
}

.about-craft-step {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(232, 196, 105, 0.14);
    color: #8f6b1d;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-craft-title {
    margin: 0 0 0.85rem;
    color: #3B2F2F;
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    line-height: 1.32;
}

.about-craft-text {
    margin: 0;
    color: rgba(59, 47, 47, 0.72);
    line-height: 1.8;
}

.about-card-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(to bottom right, #4A7C3E, #E8C469);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.about-card-icon svg {
    color: white;
    width: 2rem;
    height: 2rem;
}

.about-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #3B2F2F;
    margin-bottom: 0.75rem;
    text-align: center;
}

.about-card-text {
    color: rgba(59, 47, 47, 0.7);
    text-align: center;
    line-height: 1.625;
}

/* Background Decorations */
.about-bg-decoration {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
    overflow: hidden;
}

.about-bg-leaf {
    position: absolute;
    width: 2rem;
    height: 2rem;
    color: #4A7C3E;
}

.about-bg-leaf svg {
    width: 100%;
    height: 100%;
}

/* About Page - Journey Section */
.about-journey-section {
    padding: 6rem 0;
    background-color: white;
}

@media (min-width: 1024px) {
    .about-journey-section {
        padding: 8rem 0;
    }
}

.about-journey-timeline {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

@media (min-width: 1024px) {
    .about-journey-timeline {
        gap: 8rem;
    }
}

.about-journey-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-journey-item {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }
    
    .about-journey-item-reverse .about-journey-image-wrapper {
        order: 2;
    }
    
    .about-journey-item-reverse .about-journey-content {
        order: 1;
    }
}

.about-journey-image-wrapper {
    width: 100%;
}

.about-journey-image {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-journey-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-journey-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, 
        rgba(59, 47, 47, 0.6) 0%, 
        transparent 100%);
}

.about-journey-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.about-journey-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(to right, #4A7C3E, #E8C469);
    color: white;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    margin-bottom: 1.5rem;
    margin-left: 0;
    width: fit-content;
}

.about-journey-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #3B2F2F;
    margin-bottom: 1.5rem;
    margin-top: 0;
    margin-left: 0;
    font-weight: 400;
    text-align: left;
}

@media (min-width: 1024px) {
    .about-journey-title {
        font-size: 3rem;
    }
}

.about-journey-text {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.125rem;
    color: rgba(59, 47, 47, 0.7);
    line-height: 1.625;
    font-weight: 400;
    margin: 0;
    text-align: left;
}

/* About Page - Team Section */
.about-team-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #F8F6F0 0%, white 100%);
}

@media (min-width: 1024px) {
    .about-team-section {
        padding: 8rem 0;
    }
}

.about-team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .about-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .about-team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.about-team-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.about-team-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-team-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.about-team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.about-team-card:hover .about-team-img {
    transform: scale(1.1);
}

.about-team-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, 
        rgba(59, 47, 47, 1) 0%, 
        rgba(59, 47, 47, 0.5) 50%, 
        transparent 100%);
}

.about-team-content {
    padding: 1.5rem;
}

.about-team-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #3B2F2F;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.about-team-subtitle {
    color: #E8C469;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 400;
}

.about-team-text {
    color: rgba(59, 47, 47, 0.7);
    line-height: 1.625;
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
}

.about-experience-section {
    padding: 6rem 0;
    background:
        radial-gradient(circle at right top, rgba(74, 124, 62, 0.08), transparent 24%),
        linear-gradient(180deg, #f8f6f0 0%, #ffffff 100%);
}

.about-experience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.about-experience-panel {
    padding: 2rem;
    border-radius: 1.4rem;
    background: white;
    border: 1px solid rgba(74, 124, 62, 0.1);
    box-shadow: 0 20px 45px rgba(59, 47, 47, 0.08);
}

.about-experience-kicker {
    margin: 0 0 0.9rem;
    color: #8f6b1d;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}

.about-experience-panel h3 {
    margin: 0 0 1rem;
    color: #3B2F2F;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    line-height: 1.25;
}

.about-experience-list {
    margin: 0;
    padding-left: 1.25rem;
    color: rgba(59, 47, 47, 0.72);
    line-height: 1.8;
}

.about-experience-list li + li {
    margin-top: 0.8rem;
}

.about-cta-section {
    padding: 0 0 6rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f6f0 100%);
}

.about-cta-card {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) auto;
    gap: 2rem;
    align-items: center;
    padding: 2.4rem;
    border-radius: 1.75rem;
    background: linear-gradient(135deg, #3B2F2F 0%, #4A7C3E 100%);
    box-shadow: 0 28px 60px rgba(51, 41, 35, 0.18);
}

.about-cta-kicker {
    margin: 0 0 0.8rem;
    color: #E8C469;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}

.about-cta-title {
    margin: 0 0 1rem;
    color: #fff7e8;
    font-family: 'Playfair Display', serif;
    font-size: 2.35rem;
    line-height: 1.2;
}

.about-cta-text {
    margin: 0;
    color: rgba(255, 248, 232, 0.86);
    line-height: 1.8;
    max-width: 48rem;
}

.about-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-end;
}

.about-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    padding: 0.95rem 1.4rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.about-cta-button.primary {
    background: #E8C469;
    color: #3B2F2F;
    box-shadow: 0 14px 26px rgba(232, 196, 105, 0.22);
}

.about-cta-button.secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff7e8;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.about-cta-button:hover {
    transform: translateY(-2px);
}

/* About Page - Quote Section */
.about-quote-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, white 0%, #F8F6F0 100%);
}

.about-quote-wrapper {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.about-quote-text {
    font-family: 'Dancing Script', cursive;
    font-size: 1.875rem;
    color: #3B2F2F;
    font-style: normal;
    margin: 0 0 2rem 0;
    padding: 0;
    border: none;
    font-weight: 500;
}

@media (min-width: 1024px) {
    .about-quote-text {
        font-size: 2.25rem;
    }
}

.about-quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #4A7C3E;
}

.about-quote-leaf-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #4A7C3E;
}

.about-quote-author-name {
    font-size: 1.25rem;
    color: #4A7C3E;
    margin: 0;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 1023px) {
    .about-hero {
        min-height: 450px;
        height: 80vh;
    }
}

@media (max-width: 767px) {
    .about-hero {
        min-height: 400px;
        height: 80vh;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.5rem;
    }
    
    .about-hero-description {
        font-size: 1rem;
    }

    .about-hero-kicker {
        font-size: 0.72rem;
        letter-spacing: 0.14em;
    }

    .about-hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.8rem;
        margin-top: 2rem;
    }

    .about-hero-stat {
        padding: 1rem 0.85rem;
    }
    
    .about-social-icons {
        right: 0.5rem;
    }
    
    .about-leaf-button-container {
        bottom: 1rem;
        left: 1rem;
    }
    
    .about-origin-section {
        padding: 4rem 0;
    }
    
    .about-origin-grid {
        gap: 2rem;
    }
    
    .about-origin-title {
        font-size: 2rem;
    }
    
    .about-origin-text {
        font-size: 1rem;
    }
    
    .about-mission-section {
        padding: 4rem 0;
    }
    
    .about-section-title-large {
        font-size: 2.5rem;
    }
    
    .about-section-subtitle {
        font-size: 1rem;
    }
    
    .about-card {
        padding: 1.5rem;
    }

    .about-philosophy-section,
    .about-craft-section,
    .about-experience-section {
        padding: 4rem 0;
    }

    .about-philosophy-grid,
    .about-craft-grid,
    .about-experience-grid {
        grid-template-columns: 1fr;
    }

    .about-philosophy-highlight,
    .about-cta-card {
        grid-template-columns: 1fr;
    }

    .about-philosophy-card,
    .about-philosophy-highlight-copy,
    .about-philosophy-highlight-metrics,
    .about-experience-panel {
        padding: 1.5rem;
    }

    .about-philosophy-title,
    .about-craft-title {
        font-size: 1.35rem;
    }

    .about-philosophy-highlight-copy h3,
    .about-experience-panel h3,
    .about-cta-title {
        font-size: 1.8rem;
    }

    .about-cta-section {
        padding-bottom: 4rem;
    }

    .about-cta-card {
        padding: 1.5rem;
    }

    .about-cta-actions {
        justify-content: flex-start;
    }
    
    .about-journey-section {
        padding: 4rem 0;
    }
    
    .about-journey-timeline {
        gap: 4rem;
    }
    
    .about-journey-item {
        gap: 2rem;
    }
    
    .about-journey-title {
        font-size: 2rem;
    }
    
    .about-journey-text {
        font-size: 1rem;
    }
    
    .about-team-section {
        padding: 4rem 0;
    }
    
    .about-team-grid {
        gap: 1.5rem;
    }
    
    .about-team-content {
        padding: 1.25rem;
    }
    
    .about-team-title {
        font-size: 1.25rem;
    }
    
    .about-team-subtitle {
        font-size: 0.875rem;
    }
    
    .about-team-text {
        font-size: 0.875rem;
    }
    
    .about-quote-section {
        padding: 4rem 0;
    }
    
    .about-quote-text {
        font-size: 1.5rem;
    }
    
    .about-quote-author-name {
        font-size: 1rem;
    }
    
    .about-quote-leaf-icon {
        width: 1.25rem;
        height: 1.25rem;
    }
}

@media (max-width: 640px) {
    .about-hero-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 390px) {
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.5rem;
    }
    
    .about-hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 350px) {
    .about-hero-title {
        font-size: 1.75rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.35rem;
    }
    
    .about-hero-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 300px) {
    .about-hero-title {
        font-size: 1.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.25rem;
    }
    
    .about-hero-description {
        font-size: 0.875rem;
    }
}

@media (max-width: 290px) {
    .about-hero-title {
        font-size: 1.35rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.15rem;
    }
    
    .about-hero-description {
        font-size: 0.8rem;
    }
}
