:root {
    --primary-font: 'Helvetica Neue', Arial, sans-serif;
    --serif-font: 'Georgia', 'Times New Roman', serif;
    --color-text: #333333;
    --color-primary: #2c3e50;
    --color-background: #ffffff;
    --color-accent: #e74c3c;
    --color-light-gray: #f8f9fa;
    --container-width: 1200px;
    --base-font-size: 16px;
    --spacing-unit: 1rem;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--primary-font);
    font-size: var(--base-font-size);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul { list-style: none; }

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: color 0.3s ease;
}

a:hover { color: var(--color-accent); }

h1, h2, h3, h4 {
    font-family: var(--serif-font);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}

h1 { font-size: 3rem; margin-bottom: 1rem; }
h2 { font-size: 2.25rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }
p { margin-bottom: 1rem; max-width: 65ch; }
p:last-child { margin-bottom: 0; }

.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 5rem 2rem;
}

.cta-button, .cta-button-secondary, .read-more-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: 2px solid var(--color-primary);
}

.cta-button {
    background-color: var(--color-primary);
    color: var(--color-background);
}

.cta-button:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-background);
    transform: translateY(-2px);
}

.cta-button-secondary, .read-more-btn {
    background-color: transparent;
    color: var(--color-primary);
}

.cta-button-secondary:hover, .read-more-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-background);
    transform: translateY(-2px);
}

.section-title { text-align: center; }

.site-header {
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--color-background);
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo img { height: 40px; width: auto; }

.main-navigation ul { display: flex; gap: 2rem; }
.main-navigation a { font-weight: bold; font-size: 0.95rem; }

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.burger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

.hero-content h1 { font-size: 3.5rem; }
.hero-content p { font-size: 1.1rem; }
.hero-image-container img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }

.featured-categories-section { background-color: var(--color-light-gray); }
.categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.category-card { background-color: var(--color-background); border-radius: 8px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.category-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.category-card img { width: 100%; height: 250px; object-fit: cover; }
.category-card h3, .category-card p { padding: 0 1.5rem; }
.category-card h3 { margin-top: 1.5rem; }
.category-card p { padding-bottom: 1.5rem; }

.philosophy-section .section-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.philosophy-image img { border-radius: 8px; }
.philosophy-text .section-title { text-align: left; }

.new-arrivals-section { background-color: var(--color-light-gray); }
.arrivals-header { text-align: center; margin-bottom: 3rem; }
.arrivals-header p { margin-left: auto; margin-right: auto; }
.arrivals-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: auto; gap: 2rem; }
.arrival-item { position: relative; overflow: hidden; border-radius: 8px; }
.arrival-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.arrival-item:hover img { transform: scale(1.05); }
.arrival-item.large { grid-row: span 2; }
.item-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); color: white; }
.item-info h3 { font-size: 1.25rem; color: white; margin: 0; }
.item-info span { font-size: 0.9rem; opacity: 0.8; }

.parallax-feature-section {
    background-image: url('images/67.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 6rem 2rem;
    text-align: center;
}
.parallax-content { background-color: rgba(255, 255, 255, 0.9); padding: 3rem; max-width: 800px; margin: 0 auto; border-radius: 8px; }
.parallax-content p { margin-left: auto; margin-right: auto; }
.parallax-content .section-title { color: var(--color-primary); }
.collapsible-content { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-out; }
.collapsible-text-wrapper.is-expanded .collapsible-content { max-height: 1000px; }
.read-more-btn { margin-top: 1.5rem; }

.tabs-section { background-color: var(--color-light-gray); }
.tabs-nav { display: flex; justify-content: center; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.tab-button { background: none; border: 2px solid #ddd; padding: 0.75rem 1.5rem; border-radius: 30px; cursor: pointer; transition: all 0.3s ease; font-weight: bold; }
.tab-button.active { background-color: var(--color-primary); color: white; border-color: var(--color-primary); }
.tab-panel { display: none; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.tab-panel.active { display: grid; }
.panel-image img { border-radius: 8px; width: 100%; height: 100%; object-fit: cover; }
.panel-text h3 { margin-bottom: 0.5rem; }

.asymmetric-feature-section .section-container { max-width: 1000px; }
.asymmetric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.asymmetric-image img { border-radius: 8px; }
.asymmetric-text-box { background-color: var(--color-light-gray); padding: 3rem; z-index: 1; border-radius: 8px; margin-left: -4rem; }

.testimonial-slider-section { background-color: var(--color-light-gray); }
.slider-container { position: relative; max-width: 800px; margin: 0 auto; overflow: hidden; }
.slider-wrapper { display: flex; transition: transform 0.5s ease-in-out; }
.slide { flex: 0 0 100%; padding: 2rem 4rem; text-align: center; }
.slide blockquote { font-family: var(--serif-font); font-size: 1.5rem; font-style: italic; margin-bottom: 1.5rem; }
.slide cite { font-style: normal; font-weight: bold; color: var(--color-primary); }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background-color: white; border: 1px solid #ddd; border-radius: 50%; width: 40px; height: 40px; cursor: pointer; font-size: 1.5rem; z-index: 10; }
.prev-btn { left: 0; }
.next-btn { right: 0; }

.image-stack-section { padding: 5rem 0; }
.image-stack-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 2rem; max-width: 1000px; margin: 0 auto; padding: 0 2rem; }
.image-stack-text { padding-right: 2rem; }
.image-stack-text .section-title { text-align: left; }
.image-stack-container { position: relative; min-height: 400px; }
.image-stack-bottom, .image-stack-top { position: absolute; width: 65%; border-radius: 8px; box-shadow: 0 15px 30px rgba(0,0,0,0.15); }
.image-stack-bottom { top: 0; left: 0; transform: rotate(-8deg); }
.image-stack-top { bottom: 0; right: 0; transform: rotate(5deg); z-index: 2; }

.final-cta-section { background-color: var(--color-light-gray); text-align: center; }
.cta-content { max-width: 600px; margin: 0 auto; }

.site-footer { background-color: var(--color-primary); color: #f0f0f0; padding: 4rem 2rem; }
.footer-container { max-width: var(--container-width); margin: 0 auto; }
.footer-main { display: flex; justify-content: space-between; gap: 3rem; }
.footer-branding { flex-basis: 40%; }
.footer-branding img { height: 40px; margin-bottom: 1rem; }
.footer-logo-img {
    filter: brightness(0) invert(1);
}
.footer-branding p { font-size: 0.9rem; opacity: 0.8; max-width: none; }
.footer-links { display: flex; gap: 3rem; flex-basis: 50%; justify-content: flex-end; }
.footer-column h4 { color: white; margin-bottom: 1rem; }
.footer-column a { color: #f0f0f0; opacity: 0.8; font-size: 0.95rem; }
.footer-column a:hover { opacity: 1; }

.fade-in-bottom { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-in-bottom.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 992px) {
    p { max-width: 60ch; }
    .hero-section, .philosophy-section .section-container, .tab-panel, .asymmetric-grid { grid-template-columns: 1fr; }
    .hero-section { text-align: center; }
    .hero-content p { margin-left: auto; margin-right: auto; }
    .philosophy-text { order: 2; }
    .philosophy-image { order: 1; margin-bottom: 2rem; }
    .philosophy-text .section-title { text-align: center; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .arrivals-grid { grid-template-columns: 1fr 1fr; }
    .arrival-item.large { grid-row: span 1; grid-column: span 2; height: 400px; }
    .tab-panel.active { text-align: center; }
    .panel-image { margin-bottom: 2rem; }
    .asymmetric-text-box { margin: 2rem 0 0 0; }
    .asymmetric-grid { gap: 0; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .section-container { padding: 3rem 1.5rem; }
    
    .main-navigation { position: fixed; top: 0; right: -100%; width: 80%; max-width: 300px; height: 100vh; background-color: var(--color-background); box-shadow: -5px 0 15px rgba(0,0,0,0.1); transition: right 0.4s ease-in-out; display: flex; justify-content: center; align-items: center; }
    .main-navigation.is-active { right: 0; }
    .main-navigation ul { flex-direction: column; text-align: center; }
    .burger-menu { display: block; }
    .burger-menu.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .burger-menu.is-active span:nth-child(2) { opacity: 0; }
    .burger-menu.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .image-stack-grid { grid-template-columns: 1fr; text-align: center; }
    .image-stack-text { padding-right: 0; order: 1; }
    .image-stack-text .section-title { text-align: center; }
    .image-stack-container { order: 2; margin-top: 3rem; min-height: auto; }
    .image-stack-bottom, .image-stack-top { position: static; transform: none; width: 100%; }
    .image-stack-bottom { margin-bottom: 1.5rem; }
    
    .footer-main { flex-direction: column; text-align: center; }
    .footer-branding img { margin: 0 auto 1rem; }
    .footer-links { justify-content: center; }
    .slide { padding: 1.5rem; }
    .slider-btn { display: none; }
    .slider-wrapper {
    cursor: pointer;
    }
    .asymmetric-text-box { margin-left: 0; }
}

@media (max-width: 480px) {
    .hero-section { padding: 3rem 1.5rem; }
    .hero-content h1 { font-size: 2.25rem; }
    
    .categories-grid, .arrivals-grid { grid-template-columns: 1fr; }
    .arrival-item.large { height: 300px; grid-column: auto; }
    .footer-links { flex-direction: column; gap: 2rem; }
    .slide blockquote { font-size: 1.25rem; }
    .parallax-content { padding: 2rem; }
    .asymmetric-text-box { padding: 2rem; }
}
.page-header-section {
    text-align: center;
    background-color: var(--color-light-gray);
    padding: 4rem 2rem;
}
.page-header-section .section-container {
    padding-top: 0;
    padding-bottom: 0;
}
.page-header-section h1 {
    margin-bottom: 0.5rem;
}
.page-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: #666;
}

.category-grid-section .section-container {
    padding-top: 4rem;
}
.shop-page-grid.categories-grid {
    grid-template-columns: repeat(3, 1fr);
}
.shop-page-grid .card-link {
    display: inline-block;
    margin: 0 1.5rem 1.5rem;
    font-weight: bold;
    color: var(--color-primary);
    text-decoration: underline;
}

.highlight-section {
    background-color: var(--color-light-gray);
}
.highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}
.highlight-image img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.highlight-text h2 {
    text-align: left;
}

.mission-statement-section {
    background-color: var(--color-background);
}
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.mission-text {
    padding-left: 2rem;
}
.mission-text .section-title {
    text-align: left;
}
.mission-image img {
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.clip-path-section {
    background-image: url('images/68.webp');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding: 8rem 2rem;
    clip-path: polygon(0 15%, 100% 0, 100% 85%, 0% 100%);
}
.clip-path-content {
    text-align: center;
}
.clip-path-content h3 {
    font-size: 2.5rem;
    color: var(--color-primary);
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.8);
    padding: 1rem 2rem;
    border-radius: 8px;
}

.dual-image-feature-section {
    background-color: var(--color-light-gray);
}
.dual-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.dual-image-text {
    padding-right: 2rem;
}
.dual-image-text .section-title {
    text-align: left;
}
.dual-image-container {
    position: relative;
    min-height: 400px;
}
.dual-image-bottom, .dual-image-top {
    position: absolute;
    width: 65%;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    object-fit: cover;
}
.dual-image-bottom {
    height: 65%;
    top: 0;
    left: 0;
    transform: rotate(-8deg);
}
.dual-image-top {
    height: 65%;
    bottom: 0;
    right: 0;
    transform: rotate(5deg);
    z-index: 2;
}
.sticky-accordion-section .section-container {
    padding-bottom: 2rem;
}
.sticky-accordion-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: flex-start;
}
.sticky-image-column {
    position: sticky;
    top: 100px;
}
.sticky-image img {
    border-radius: 8px;
}
.accordion-item {
    border-bottom: 1px solid #eee;
}
.accordion-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start; 
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 1rem; 
}
.accordion-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--color-primary);
}
.accordion-icon {
    width: 14px;
    height: 14px;
    position: relative;
    transition: transform 0.3s ease;
    flex-shrink: 0; 
    margin-top: 0.25em; 
}
.accordion-icon::before, .accordion-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
}
.accordion-icon::after {
    transform: rotate(90deg);
}
.accordion-button[aria-expanded="true"] .accordion-icon {
    transform: rotate(45deg);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.accordion-content p {
    padding-bottom: 1.5rem;
}

@media (max-width: 992px) {
    .shop-page-grid.categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .highlight-grid, .mission-grid, .dual-image-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .highlight-text h2, .mission-text .section-title, .dual-image-text .section-title {
        text-align: center;
    }
    .mission-text {
    padding-left: 0; 
    margin-bottom: 0;
    order: 2; 
}
.mission-image {
    order: 1; 
    margin-bottom: 2rem;
}
    .mission-text, .dual-image-text {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    .dual-image-text {
        order: 1;
    }
    .dual-image-container {
        order: 2;
    }
    .sticky-accordion-container {
        grid-template-columns: 1fr;
    }
    .sticky-image-column {
        display: none;
    }
}
@media (max-width: 768px) {
    .shop-page-grid.categories-grid {
        grid-template-columns: 1fr;
    }
    .dual-image-container {
        min-height: auto;
    }
    .dual-image-bottom, .dual-image-top {
        position: static;
        transform: none;
        width: 100%;
        height: auto;
    }
    .dual-image-bottom {
        margin-bottom: 1.5rem;
    }
}
@media (max-width: 480px) {
    .clip-path-content h3 {
        font-size: 2rem;
    }
}
.product-grid-section .section-container {
    padding-top: 4rem;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.product-card {
    background-color: var(--color-background);
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: center;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.product-card h3 {
    font-size: 1.1rem;
    margin: 1rem 1rem 0.5rem;
}
.product-price {
    display: block;
    color: #666;
    margin-bottom: 1rem;
}
.product-card .cta-button-secondary {
    margin: 0 auto 1.5rem;
    width: calc(100% - 3rem);
}

.kitchen-parallax {
    background-image: url('images/69.webp');
}

.materials-showcase-section {
    background-color: var(--color-light-gray);
}
.materials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}
.materials-text .section-title {
    text-align: left;
}
.materials-text .read-more-btn {
    margin-top: 1.5rem;
}
.materials-images {
    position: relative;
    min-height: 400px;
}
.material-image-1, .material-image-2 {
    position: absolute;
    width: 65%;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    object-fit: cover;
}
.material-image-1 {
    height: 65%;
    top: 0;
    left: 0;
    transform: rotate(-8deg);
}
.material-image-2 {
    height: 65%;
    bottom: 0;
    right: 0;
    transform: rotate(5deg);
    z-index: 2;
}

.care-guide-section .section-container {
    max-width: 900px;
}
.care-guide-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}
.care-guide-text .section-title {
    text-align: left;
}
.care-guide-tips {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.tip-item h3 {
    margin-bottom: 0.5rem;
    border-left: 3px solid var(--color-primary);
    padding-left: 1rem;
}
.tip-item p {
    padding-left: calc(1rem + 3px);
    font-size: 0.95rem;
}

.next-category-cta-section {
    background-color: var(--color-primary);
    text-align: center;
}
.next-category-cta-section h2 {
    color: white;
}
.next-category-cta-section .cta-button {
    background-color: white;
    color: var(--color-primary);
    border-color: white;
}
.next-category-cta-section .cta-button:hover {
    background-color: var(--color-accent);
    color: white;
    border-color: var(--color-accent);
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .materials-grid, .care-guide-grid {
        grid-template-columns: 1fr;
    }
    .materials-text, .care-guide-text {
        text-align: center;
        margin-bottom: 2rem;
    }
    .materials-text .section-title, .care-guide-text .section-title {
        text-align: center;
    }
    .materials-images {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .product-card img {
        height: 220px;
    }
    .materials-images {
        display: flex;
        flex-direction: column;
        position: static;
        gap: 1.5rem;
    }
    .material-image-1, .material-image-2 {
        position: static;
        transform: none;
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}
.featured-product-grid-section .section-container {
    padding-top: 4rem;
}
.featured-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.featured-product-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}
.featured-product-card.large-card {
    grid-row: span 2;
}
.featured-product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.featured-product-card:hover img {
    transform: scale(1.05);
}
.featured-product-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
}
.card-content h3 {
    color: white;
    font-size: 1.25rem;
    margin: 0;
}
.card-content .product-price {
    color: white;
    opacity: 0.8;
    margin: 0.25rem 0 1rem;
}
.card-content a {
    color: white;
    font-weight: bold;
    text-decoration: underline;
}

.anatomy-of-comfort-section {
    background-color: var(--color-light-gray);
}
.comfort-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}
.comfort-image img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.comfort-text .section-title {
    text-align: left;
}

.shop-the-look-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}
.shop-the-look-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
}
.look-point {
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.8);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: all 0.2s ease;
}
.look-point.point-1 { top: 55%; left: 48%; }
.look-point.point-2 { top: 45%; left: 25%; }
.look-point.point-3 { top: 68%; left: 75%; }
.look-point.is-active, .look-point:hover {
    transform: translate(-50%, -50%) scale(1.2);
    background-color: var(--color-primary);
}
.look-point::after {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -51%);
    font-size: 18px;
    font-weight: bold;
    color: var(--color-primary);
    transition: color 0.2s ease;
}
.look-point.is-active::after, .look-point:hover::after {
    color: white;
}
.look-product-card {
    display: none;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
    background-color: var(--color-background);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.look-product-card.is-active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}
.look-product-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
}
.look-product-info h3 {
    margin: 0 0 0.25rem;
    font-size: 1.1rem;
}
.look-product-info .cta-button-secondary {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.living-room-parallax {
    background-image: url('images/70.webp');
}

.curated-life-section {
    background-color: var(--color-light-gray);
}
.curated-life-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.curated-image-wrapper {
    position: relative;
}
.curated-bg-shape {
    position: absolute;
    top: -2rem;
    left: -2rem;
    width: 100%;
    height: 100%;
    background-color: #e0e0e0;
    border-radius: 8px;
    z-index: 0;
}
.curated-image-wrapper img {
    position: relative;
    z-index: 1;
    border-radius: 8px;
}
.curated-text {
    padding-left: 2rem;
}
.curated-text .section-title {
    text-align: left;
}

@media (max-width: 992px) {
    .comfort-grid, .curated-life-grid {
        grid-template-columns: 1fr;
    }
    .comfort-text, .curated-text {
        text-align: center;
    }
    .comfort-text .section-title, .curated-text .section-title {
        text-align: center;
    }
    .curated-image-wrapper {
        margin-bottom: 2rem;
    }
    .curated-text {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .featured-product-grid {
        grid-template-columns: 1fr;
    }
    .featured-product-card.large-card {
        grid-row: auto;
        height: 400px;
    }
    .featured-product-card {
        height: 300px;
    }
}
@media (max-width: 480px) {
    .look-point {
        width: 32px;
        height: 32px;
    }
    .look-point::after {
        font-size: 24px;
    }
    .look-product-card {
        flex-direction: column;
        text-align: center;
    }
    .curated-image-wrapper {
        padding: 0 1rem;
    }
    .curated-bg-shape {
        display: none;
    }
}
.about-hero-section {
    position: relative;
    padding: 6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/72.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.about-hero-content {
    color: white;
    max-width: 800px;
}
.about-hero-content h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}
.about-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 60ch;
    margin: 0 auto;
}
.asymmetric-mission-section {
    position: relative;
    background-color: var(--color-light-gray);
    overflow: hidden;
    padding: 6rem 2rem;
}
.asymmetric-mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background-color: var(--color-primary);
    clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
    z-index: 0;
}
.asymmetric-mission-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center; 
}
.asymmetric-content-box {
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    max-width: 55%;
    position: relative;
    z-index: 1;
}
.asymmetric-content-box h2 {
    margin-bottom: 1rem;
}

.timeline-section .section-container {
    max-width: 800px;
}
.timeline {
    position: relative;
    padding-left: 3rem;
    border-left: 3px solid #eee;
}
.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -3.7rem;
    top: 0.25rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--color-primary);
    border: 4px solid #eee;
}
.timeline-year {
    display: block;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.stats-counter-section {
    color: white;
    background-image: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.85)), url('images/71.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    font-family: var(--serif-font);
    display: block;
    color: white;
}
.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0 auto;
}

.team-section {
    background-color: var(--color-light-gray);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.team-member {
    text-align: center;
}
.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
}
.team-member h3 {
    margin-bottom: 0.25rem;
}
.team-member span {
    display: block;
    color: #666;
    margin-bottom: 1rem;
    font-weight: bold;
}

.curation-process-section {
    background-color: var(--color-background);
    padding: 6rem 2rem;
}
.curation-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.curation-image {
    flex: 1 1 50%;
}
.curation-image img {
    border-radius: 8px;
}
.curation-text {
    flex: 1 1 50%;
    background-color: white;
    padding: 3rem;
    margin-left: -4rem;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.curation-text h2 {
    margin-bottom: 1rem;
}

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

@media (max-width: 992px) {
    .asymmetric-mission-section::before {
        width: 80%;
    }
    .asymmetric-content-box {
        max-width: 70%;
    }
    .curation-wrapper {
        display: block;
    }
    .curation-text {
        margin-left: 0;
        margin-top: -3rem;
        position: relative;
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .team-member {
        max-width: 400px;
        margin: 0 auto;
    }
     .team-member:not(:last-child) {
        margin-bottom: 3rem;
    }
}
@media (max-width: 768px) {
    .asymmetric-mission-section {
        padding: 4rem 1.5rem;
    }
    .asymmetric-mission-section::before {
        display: none;
    }
    .asymmetric-mission-container {
        justify-content: center;
    }
    .asymmetric-content-box {
        max-width: 100%;
        text-align: center;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    .curation-text {
        background-color: transparent;
        box-shadow: none;
        padding: 2rem 0 0 0;
        margin-top: 0;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .timeline {
        padding-left: 2rem;
    }
    .timeline-item::before {
        left: -2.7rem;
    }
}
.about-cta .cta-button-secondary {
    color: white;
    border-color: white;
}

.about-cta .cta-button-secondary:hover {
    background-color: white;
    color: var(--color-primary);
}
/* --- BLOG PAGE STYLES --- */

.featured-post-section {
    background-color: var(--color-light-gray);
}
.featured-post-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}
.featured-post-image img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.post-category {
    display: block;
    font-weight: bold;
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
.featured-post-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.article-grid-section .section-container {
    padding-top: 5rem;
}
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.article-card {
    background-color: var(--color-light-gray);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.article-card .card-image {
    height: 220px;
}
.article-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.article-card .card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.article-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}
.article-card p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}
.article-card .card-link {
    font-weight: bold;
    text-decoration: underline;
}

.quote-section {
    background-color: var(--color-primary);
    text-align: center;
    padding: 5rem 2rem;
}
.quote-section blockquote {
    font-family: var(--serif-font);
    font-size: 2rem;
    font-style: italic;
    color: white;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.4;
}
@media (max-width: 992px) {
    .featured-post-grid {
        grid-template-columns: 1fr;
    }
    .article-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .article-grid {
        grid-template-columns: 1fr;
    }
    .quote-section blockquote {
        font-size: 1.5rem;
    }
}
.text-content-section .section-container {
    max-width: 800px;
    padding-top: 2rem;
    padding-bottom: 5rem;
}
.text-content-section h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
    font-size: 1.75rem;
}
.text-content-section p {
    line-height: 1.7;
}
.text-content-section ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}
.text-content-section li {
    margin-bottom: 0.75rem;
}
.thank-you-page {
    background-color: var(--color-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 2rem;
}
.thank-you-content {
    max-width: 500px;
}
.thank-you-logo {
    display: block;
    margin: 0 auto 2rem;
    max-width: 200px;
}
.thank-you-content h1 {
    margin-bottom: 1rem;
}
.thank-you-content p {
    margin: 0 auto 2rem;
    color: #666;
    font-size: 1.1rem;
}
