:root {
    --dark-charcoal: #2D3142;
    --alabaster-white: #F4F4F4;
    --pure-white: #FFFFFF;
    --golden-ochre: #BF9A68;
    --soft-gray: #A9A9A9;
    --font-primary: "lato-regular";
    --section-padding: 100px 0;
}

@font-face {
    font-family: "lato-regular";
    src: url("fonts/lato-regular.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

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

body.loading [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--pure-white);
    color: var(--dark-charcoal);
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
    color: var(--dark-charcoal);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; margin-bottom: 40px; text-align: center; }
h3 { font-size: 1.75rem; }
p { margin-top: 0; margin-bottom: 1rem; }
a { color: var(--golden-ochre); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow: hidden;
}
.swiper-pagination-bullet
{
    display: none !important;
}
.swiper-pagination-bullet-active
{
    display: none !important;
}
.section {
    padding: var(--section-padding);
}

.section-bg {
    background-color: var(--alabaster-white);
}

.section-title-wrapper {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
    text-align: center;
}

.section-title-wrapper .subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--golden-ochre);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title-wrapper p {
    font-size: 1.1rem;
    color: var(--soft-gray);
    max-width: 600px;
    margin: 0 auto;
}

.cta-button {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--golden-ochre);
    color: var(--pure-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
    border: 2px solid var(--golden-ochre);
}

.cta-button:hover {
    background-color: #a88556;
    transform: translateY(-2px);
}

.cta-button-outline {
    background-color: transparent;
    color: var(--golden-ochre);
}

.cta-button-outline:hover {
    background-color: var(--golden-ochre);
    color: var(--pure-white);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background-color 0.3s, box-shadow 0.3s, height 0.3s;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 70px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: height 0.3s;
}

header.scrolled .header-container {
    height: 70px;
}

.logo-link {
    flex-shrink: 0;
}

.logo-link img {
    height: 40px;
    width: auto;
    transition: height 0.3s;
}

header.scrolled .logo-link img {
    height: 35px;
}

.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 35px;
}

.cta-flex
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.main-nav a {
    text-decoration: none;
    color: var(--dark-charcoal);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s;
    padding: 5px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--golden-ochre);
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.main-nav a:hover, .main-nav a.active {
    color: var(--dark-charcoal);
}

.main-nav a:hover::after, .main-nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.burger-menu {
    display: none;
}

.hero {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    color: var(--pure-white);
    background: linear-gradient(rgba(45, 49, 66, 0.5), rgba(45, 49, 66, 0.5)), url('images/1.webp') center center / cover no-repeat;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin: 0 0 20px;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--pure-white);
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
    margin: 0 0 40px;
    opacity: 0.9;
    margin-left: auto;
    margin-right: auto;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.philosophy-item {
    padding: 30px;
    background-color: var(--pure-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.philosophy-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.philosophy-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--golden-ochre);
}

.philosophy-item h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.philosophy-item p {
    font-size: 0.95rem;
    color: var(--soft-gray);
    line-height: 1.7;
}

.new-arrivals .swiper-container {
    padding-top: 50px;
    padding-bottom: 50px;
}

.new-arrivals .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 320px;
    height: 480px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: transform 400ms ease, opacity 400ms ease;
}

.new-arrivals .swiper-slide-shadow-left,
.new-arrivals .swiper-slide-shadow-right {
    background-image: none;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: var(--pure-white);
}

.slide-content h3 {
    color: var(--pure-white);
    margin: 0 0 5px;
    font-size: 1.4rem;
}
.slide-content p {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--golden-ochre);
}

.design-studio-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: flex-start;
}

.tabs-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tab-button {
    width: 100%;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    background-color: var(--alabaster-white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    position: relative;
    border-left: 4px solid transparent;
}

.tab-button:hover {
    background-color: var(--golden-ochre);
    color: var(--pure-white);
}

.tab-button.active {
    background-color: var(--golden-ochre);
    color: var(--pure-white);
    border-left: 4px solid var(--dark-charcoal);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    margin-top: 0;
    margin-bottom: 20px;
}

.tab-content p {
    margin-bottom: 30px;
    color: #666;
}

.tab-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tab-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

.tab-gallery img:hover {
    transform: scale(1.05);
}

.testimonials {
    position: relative;
}

.testimonials .swiper-container {
    padding-bottom: 60px;
}

.testimonial-slide {
    background: var(--pure-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    height: auto;
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    flex-grow: 1;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.testimonial-quote::before {
    content: '“';
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--golden-ochre);
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: -10px;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.author-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0 0 5px;
    font-size: 1.1rem;
}

.author-info p {
    margin: 0;
    color: var(--soft-gray);
    font-size: 0.9rem;
}

.testimonials .swiper-pagination {
    bottom: 0;
}
.testimonials .swiper-pagination-bullet-active {
    background-color: var(--golden-ochre);
}


.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #e0e0e0;
}
.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 25px 0;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.accordion-header:hover {
    color: var(--golden-ochre);
}

.accordion-header.active {
    color: var(--golden-ochre);
}

.accordion-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    flex-shrink: 0;
    margin-left: 20px;
}

.accordion-header.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.4s;
}

.accordion-content-inner {
    padding-bottom: 25px;
    color: #666;
    line-height: 1.7;
}

.cta-section {
    background: var(--dark-charcoal);
    color: var(--pure-white);
    text-align: center;
}

.cta-section h2 {
    color: var(--pure-white);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    color: var(--alabaster-white);
    opacity: 0.9;
}


.main-footer {
    background-color: var(--dark-charcoal);
    color: var(--alabaster-white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 60px;
}

.footer-about h4, .footer-links h4 {
    font-size: 1.2rem;
    color: var(--pure-white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-about h4::after, .footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--golden-ochre);
}

.footer-about .logo-link {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-about .logo-link img {
    filter: brightness(0) invert(1);
    height: 35px;
}
.footer-about p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: var(--alabaster-white);
    opacity: 0.8;
    transition: opacity 0.3s, color 0.3s;
}
.footer-links a:hover {
    opacity: 1;
    color: var(--golden-ochre);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

.social-links {
    display: flex;
    gap: 15px;
}
.social-links a {
    color: var(--alabaster-white);
    font-size: 1.2rem;
    transition: color 0.3s, transform 0.3s;
}
.social-links a:hover {
    color: var(--golden-ochre);
    transform: translateY(-3px);
}

.slide-1 { background-image: url(images/12.webp); }
.slide-2 { background-image: url(images/13.webp); }
.slide-3 { background-image: url(images/14.webp); }
.slide-4 { background-image: url(images/15.webp); }
.slide-5 { background-image: url(images/16.webp); }
.slide-6 { background-image: url(images/17.webp); }
.slide-7 { background-image: url(images/18.webp); }

@media (max-width: 1024px) {
    .design-studio-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .tabs-nav {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    .tab-button {
        flex-shrink: 0;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--dark-charcoal);
        padding-top: 100px;
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    }
    .main-nav.open {
        right: 0;
    }
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .main-nav a {
        color: var(--pure-white) !important;
        font-size: 1.2rem;
    }
    .main-nav a:hover, .main-nav a.active {
        color: var(--golden-ochre);
    }
    .main-nav a::after {
        background-color: var(--golden-ochre);
    }
    .burger-menu {
        display: block;
        z-index: 1001;
    }
    .burger-menu.open span {
        background-color: var(--pure-white);
    }
    .burger-menu.open span:nth-child(1) {
        top: 9px;
        transform: rotate(45deg);
    }
    .burger-menu.open span:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.open span:nth-child(3) {
        top: 9px;
        transform: rotate(-45deg);
    }
    body.nav-open-overlay::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
        z-index: 999;
    }
    header .cta-button
    {
        display: none !important;
    }
    .featured-content-wrapper .subtitle
    {
        text-align: center;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem !important;}
    h2 { font-size: 2rem; }
    .hero-content h1 { font-size: 3rem; }
    .hero-content p { font-size: 1.2rem !important; }
    .section { padding: 80px 0; }
    .header-actions .cta-button { display: none; }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-about h4::after, .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }

}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.5rem; }
    .new-arrivals .swiper-slide {
        width: 280px;
        height: 420px;
    }
    .tab-gallery {
        grid-template-columns: 1fr;
    }
}

.featured-collection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 80px;
}
.featured-image-wrapper img {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    width: 100%;
}
.featured-content-wrapper .subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--golden-ochre);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.featured-content-wrapper h2 {
    text-align: left;
    margin-bottom: 20px;
}
.features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}
.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1rem;
}
.features-list svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--golden-ochre);
    margin-top: 2px;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.material-card {
    background-color: var(--pure-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}
.material-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.material-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.material-content {
    padding: 25px;
}
.material-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.4rem;
}
.material-content p {
    font-size: 0.95rem;
    color: var(--soft-gray);
    line-height: 1.7;
    margin-bottom: 0;
}

.crafting-process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}
.crafting-process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background-color: var(--alabaster-white);
    border-radius: 3px;
}
.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}
.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 70px;
    text-align: right;
}
.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 70px;
}
.timeline-content {
    padding: 20px 30px;
    background-color: var(--alabaster-white);
    border-radius: 12px;
    position: relative;
}
.timeline-step {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--golden-ochre);
    color: var(--pure-white);
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid var(--pure-white);
    box-shadow: 0 0 0 3px var(--golden-ochre);
}
.timeline-item:nth-child(odd) .timeline-step {
    right: -25px;
}
.timeline-item:nth-child(even) .timeline-step {
    left: -25px;
}
.timeline-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
}
.timeline-content p {
    margin-bottom: 0;
    color: var(--soft-gray);
    font-size: 0.95rem;
}

.community-slider {
    padding-bottom: 50px !important;
}
.community-slide {
    width: 300px;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.community-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.community-slide:hover img {
    transform: scale(1.1);
}
.community-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--pure-white);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.community-slide:hover .community-slide-overlay {
    transform: translateY(0);
}
.community-slide-overlay p {
    margin: 0;
    font-weight: 500;
}
.community-section .swiper-pagination-bullet-active {
    background-color: var(--golden-ochre);
}

@media (max-width: 992px) {
    .featured-collection-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .featured-content-wrapper h2 {
        text-align: center;
    }
    .materials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .crafting-process-timeline::before {
        display: none;
    }
    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        left: 0;
        padding: 0;
    }
    .timeline-item:nth-child(odd) {
        text-align: left;
        padding: 0;
    }
    .timeline-step,
    .timeline-item:nth-child(odd) .timeline-step,
    .timeline-item:nth-child(even) .timeline-step {
        left: 0;
    }
     .timeline-step
    {
        display: none;
    }
    .timeline-content
    {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .materials-grid {
        grid-template-columns: 1fr;
    }
    .community-slide {
        width: 280px;
        height: 350px;
    }
    .testimonial-slide
    {
        padding: 10px; 
    }
}

.page-hero {
    padding-top: 160px;
    padding-bottom: 100px;
    background-color: var(--alabaster-white);
    overflow: hidden;
}
.page-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 60px;
}
.page-hero-content .subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--golden-ochre);
    margin-bottom: 15px;
    display: block;
}
.page-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}
.page-hero-content p {
    font-size: 1.1rem;
    color: var(--soft-gray);
    max-width: 550px;
}
.page-hero-image img {
    border-radius: 12px;
    width: 100%;
    box-shadow: 0 15px 40px rgba(45,49,66,0.1);
}

.mission-vision {
    padding: 120px 0;
}
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.mission-block, .vision-block {
    padding: 50px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}
.mission-block {
    background-color: var(--dark-charcoal);
    color: var(--pure-white);
}
.vision-block {
    background-color: var(--alabaster-white);
}
.mission-block::before, .vision-block::before {
    content: '“';
    font-family: Georgia, serif;
    font-size: 15rem;
    position: absolute;
    bottom: -50px;
    right: 10px;
    line-height: 1;
    opacity: 0.05;
}
.mission-block h3, .vision-block h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.mission-block h3 { color: var(--pure-white); }
.mission-block p { color: var(--alabaster-white); opacity: 0.8; }
.vision-block p { color: var(--soft-gray); }
.mission-vision-grid p {
    font-size: 1.05rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.founder-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 30px;
    align-items: center;
    background-color: var(--pure-white);
    padding: 30px;
    border-radius: 12px;
}
.founder-card img {
    width: 180px;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}
.founder-info h3 {
    margin-top: 0;
    margin-bottom: 5px;
}
.founder-info span {
    display: block;
    font-weight: 600;
    color: var(--golden-ochre);
    margin-bottom: 15px;
}
.founder-info p {
    font-size: 0.95rem;
    color: var(--soft-gray);
    margin-bottom: 0;
}

.principles-accordion .accordion-item {
    background-color: var(--pure-white);
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.04);
    border: 1px solid var(--alabaster-white);
    transition: box-shadow 0.3s;
}
.principles-accordion .accordion-item:last-child {
    margin-bottom: 0;
}
.principles-accordion .accordion-item:hover {
    box-shadow: 0 8px 35px rgba(0,0,0,0.07);
}
.principles-accordion .accordion-header {
    font-size: 1.25rem;
    padding: 25px 30px;
    font-weight: 700;
    gap: 20px;
}
.principles-accordion .accordion-header.active {
    background-color: var(--golden-ochre);
    color: var(--pure-white);
    border-top-left-radius: 11px;
    border-top-right-radius: 11px;
}
.principles-accordion .accordion-header.active .accordion-icon-wrapper {
    background-color: var(--pure-white);
    color: var(--golden-ochre);
}
.accordion-icon-wrapper {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--alabaster-white);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s, color 0.3s;
}
.accordion-icon-wrapper svg {
    width: 28px;
    height: 28px;
}
.accordion-chevron {
    width: 14px;
    height: 14px;
    border-right: 3px solid var(--dark-charcoal);
    border-bottom: 3px solid var(--dark-charcoal);
    transform: rotate(45deg);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-left: auto;
}
.principles-accordion .accordion-header.active .accordion-chevron {
    transform: rotate(225deg);
    border-color: var(--pure-white);
    margin-top: -10px;
}
.principles-accordion .accordion-content {
    background-color: var(--pure-white);
    border-bottom-left-radius: 11px;
    border-bottom-right-radius: 11px;
}
.principles-accordion .accordion-content-inner {
    padding: 0 30px 30px 100px;
    font-size: 1.05rem;
}


.team-tabs-container .tabs-nav {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}
.team-tabs-container .tab-button {
    padding: 12px 30px;
    background-color: var(--pure-white);
    border: 2px solid var(--alabaster-white);
    color: var(--soft-gray);
}
.team-tabs-container .tab-button:hover {
    background-color: var(--golden-ochre);
    color: var(--pure-white);
    border-color: var(--golden-ochre);
}
.team-tabs-container .tab-button.active {
    background-color: var(--golden-ochre);
    color: var(--pure-white);
    border-color: var(--golden-ochre);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(191,154,104,0.3);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.team-member-card {
    text-align: center;
}
.team-member-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center top;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.team-member-card h4 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}
.team-member-card p {
    color: var(--soft-gray);
    font-weight: 500;
    margin-bottom: 0;
}


@media (max-width: 992px) {
    .page-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .page-hero-content p {
        margin: 0 auto;
    }
    .page-hero-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto 40px;
    }
    .mission-vision-grid, .founders-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero-content h1 { font-size: 2.8rem; }
    .founder-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .founder-card img {
        margin: 0 auto;
    }
    .principles-accordion .accordion-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .principles-accordion .accordion-chevron { display: none; }
    .principles-accordion .accordion-content-inner { padding: 20px; }
    .team-tabs-container .tabs-nav {
        flex-wrap: wrap;
    }
}

.creative-hub-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 80px;
    background-color: var(--alabaster-white);
    padding: 60px;
    border-radius: 12px;
}
.creative-hub-image img {
    border-radius: 8px;
    width: 100%;
}
.creative-hub-content .subtitle {
    display: block;
    font-weight: 600;
    color: var(--golden-ochre);
    margin-bottom: 10px;
}
.creative-hub-content h2 {
    text-align: left;
    margin-bottom: 20px;
}
.creative-hub-content p {
    color: var(--soft-gray);
    font-size: 1rem;
    line-height: 1.7;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.impact-card {
    background-color: var(--pure-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #EAEAEA;
    transition: transform 0.3s, box-shadow 0.3s;
}
.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.impact-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--golden-ochre);
    line-height: 1.1;
    margin-bottom: 15px;
}
.impact-card h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}
.impact-card p {
    font-size: 0.9rem;
    color: var(--soft-gray);
    line-height: 1.6;
    margin: 0;
}

.careers-section {
    padding: 120px 0;
    position: relative;
    background-image: linear-gradient(rgba(45, 49, 66, 0.7), rgba(45, 49, 66, 0.7)), url(images/21.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
    text-align: center;
    color: var(--pure-white);
}
.careers-content {
    max-width: 700px;
    margin: 0 auto;
}
.careers-content h2 {
    color: var(--pure-white);
    font-size: 2.8rem;
}
.careers-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .creative-hub-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
    .creative-hub-content h2 {
        text-align: center;
    }
    .creative-hub-content {
        text-align: center;
    }
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }
    .careers-content h2 {
        font-size: 2.2rem;
    }
    .mission-block, .vision-block
    {
        padding: 20px;
    }
}

.page-hero-compact {
    padding: 140px 0 60px;
    background-color: var(--alabaster-white);
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}
.page-hero-compact h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}
.page-hero-compact p {
    font-size: 1.1rem;
    color: var(--soft-gray);
    max-width: 700px;
    margin: 0 auto;
}

.catalog-section {
    padding: 80px 0;
}
.catalog-layout-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: flex-start;
}

.filter-sidebar {
    position: sticky;
    top: 100px; 
    background: var(--pure-white);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
}
.filter-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
}
.filter-sidebar-header h3 {
    margin: 0;
    font-size: 1.4rem;
}
#reset-filters-btn {
    background: none;
    border: none;
    color: var(--golden-ochre);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
}
.filter-group {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}
.filter-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.filter-group h4 {
    margin: 0 0 15px 0;
    font-size: 1.1rem;
}
.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.filter-list li {
    margin-bottom: 10px;
}
.filter-list label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    color: var(--dark-charcoal);
}
.filter-list input[type="checkbox"] {
    margin-right: 10px;
    accent-color: var(--golden-ochre);
}

.price-slider {
    position: relative;
    height: 20px;
    margin-bottom: 15px;
}
.price-slider-track, .price-slider-progress {
    position: absolute;
    height: 4px;
    border-radius: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}
.price-slider-track {
    background-color: #e0e0e0;
}
.price-slider-progress {
    background-color: var(--golden-ochre);
}
.price-slider-handle {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--pure-white);
    border: 3px solid var(--golden-ochre);
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 2;
}
.price-display {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: var(--soft-gray);
}

.color-swatch-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.color-swatch-list input[type="checkbox"] {
    display: none;
}
.color-swatch {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #e0e0e0;
    transition: transform 0.2s, border-color 0.2s;
}
.color-swatch-list input:checked + .color-swatch {
    transform: scale(1.2);
    border-color: var(--golden-ochre);
}

.toggle-switch {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
}
.toggle-switch input { display: none; }
.toggle-slider {
    position: relative;
    width: 44px;
    height: 24px;
    background-color: #ccc;
    border-radius: 34px;
    transition: background-color 0.3s;
}
.toggle-slider::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s;
}
.toggle-switch input:checked + .toggle-slider {
    background-color: var(--golden-ochre);
}
.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(20px);
}

.product-grid-container {
    min-width: 0;
}
.grid-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e8e8e8;
}
.product-count {
    font-weight: 500;
    color: var(--soft-gray);
}
.sort-control select {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 0.9rem;
    background-color: var(--pure-white);
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.product-card {
    background-color: var(--pure-white);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid transparent;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.product-card-link {
    text-decoration: none;
    color: var(--dark-charcoal);
    display: block;
}
.product-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    overflow: hidden;
}
.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-info {
    padding: 20px;
}
.product-category {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--soft-gray);
    text-transform: uppercase;
    margin-bottom: 8px;
}
.product-info h4 {
    margin: 0 0 10px;
    font-size: 1.2rem;
}
.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--golden-ochre);
    margin: 0;
}

.featured-service-card {
    grid-column: 1 / -1; 
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: var(--alabaster-white);
    border-radius: 12px;
    overflow: hidden;
    margin: 15px 0;
}
.featured-service-content {
    padding: 50px;
}
.featured-service-content .subtitle {
    display: block;
    color: var(--golden-ochre);
    font-weight: 600;
}
.featured-service-content h3 {
    margin: 10px 0 15px;
    font-size: 2rem;
}
.featured-service-content p {
    color: var(--soft-gray);
    margin-bottom: 30px;
}
.featured-service-image {
    height: 100%;
}
.featured-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-the-look-section {
    background-color: var(--alabaster-white);
}
.look-slide {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
.look-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hotspot {
    position: absolute;
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.hotspot-pulse {
    width: 100%;
    height: 100%;
    outline: 2px solid #FFF;
    border: 4px solid #bf9a68;
    border-radius: 50%;
    background-color: var(--pure-white);
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(255,255,255, 0.7);
}
.hotspot-info {
    position: absolute;
    bottom: 150%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--pure-white);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, bottom 0.3s;
}
.hotspot:hover .hotspot-info {
    opacity: 1;
    visibility: visible;
    bottom: 100%;
}
.hotspot-info h5 {
    margin: 0 0 5px;
}
.hotspot-info p {
    margin: 0 0 10px;
    color: var(--golden-ochre);
    font-weight: 600;
}
.hotspot-info a {
    font-size: 0.9rem;
    font-weight: 600;
}
.shop-the-look-slider .swiper-button-next,
.shop-the-look-slider .swiper-button-prev {
    color: var(--golden-ochre);
    background: rgba(255,255,255,0.7);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.shop-the-look-slider .swiper-button-next::after,
.shop-the-look-slider .swiper-button-prev::after {
    font-size: 1.2rem;
}
@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255,255,255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255,255,255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255,255,255, 0); }
}


@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 992px) {
    .catalog-layout-grid {
        grid-template-columns: 1fr;
    }
    .filter-sidebar {
        position: static;
        margin-bottom: 40px;
    }
    .featured-service-card {
        grid-template-columns: 1fr;
    }
    .featured-service-image {
        height: 300px;
        order: -1;
    }
}
@media (max-width: 768px) {
    .grid-controls {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    .shop-the-look-slider {
        padding: 0 0 50px !important;
    }
    .shop-the-look-slider .swiper-button-next,
    .shop-the-look-slider .swiper-button-prev {
        display: none;
    }
}
@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    .featured-service-content
    {
        padding: 20px;
    }
}

.info-grid-card {
    display: grid;
    grid-column: 1 / -1; 
    background-color: var(--dark-charcoal);
    color: var(--pure-white);
    border-radius: 12px;
    padding: 40px 50px;
    margin: 15px 0;
}
.info-grid-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
}
.info-grid-header svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--golden-ochre);
}
.info-grid-header h3 {
    margin: 0;
    color: var(--pure-white);
    font-size: 1.8rem;
}
.info-grid-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.info-item h4 {
    color: var(--pure-white);
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.info-item p {
    margin: 0;
    color: var(--alabaster-white);
    opacity: 0.8;
    line-height: 1.7;
    font-size: 0.95rem;
}

.material-samples-section {
    padding: 120px 0;
}
.material-samples-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 80px;
}
.material-samples-content .subtitle {
    display: block;
    color: var(--golden-ochre);
    font-weight: 600;
}
.material-samples-content h2 {
    text-align: left;
    margin: 10px 0 20px;
}
.material-samples-content p {
    color: var(--soft-gray);
    margin-bottom: 20px;
}
.material-samples-content .cta-button {
    margin-top: 10px;
}
.material-samples-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .info-grid-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .material-samples-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .material-samples-content h2 {
        text-align: center;
    }
}
@media (max-width: 768px) {
    .info-grid-card {
        padding: 30px;
    }
    .info-grid-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

.blog-content-section {
    padding-top: 60px;
}
.featured-post {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    background-color: var(--alabaster-white);
    border-radius: 12px;
    overflow: hidden;
}
.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.featured-post-content {
    padding: 50px;
}
.post-category-tag {
    display: inline-block;
    padding: 5px 12px;
    background-color: var(--golden-ochre);
    color: var(--pure-white);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-decoration: none;
}
.featured-post-content h2 {
    text-align: left;
    font-size: 2.2rem;
    margin-bottom: 20px;
}
.featured-post-content > p {
    font-size: 1.05rem;
    color: var(--soft-gray);
    margin-bottom: 30px;
}
.post-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--soft-gray);
    margin-bottom: 30px;
}
.post-meta span {
    position: relative;
}
.post-meta span:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -12px;
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 10px 25px;
    font-size: 1rem;
    font-weight: 600;
    background-color: var(--pure-white);
    border: 2px solid #e0e0e0;
    color: var(--soft-gray);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}
.filter-btn:hover {
    border-color: var(--golden-ochre);
    color: var(--golden-ochre);
}
.filter-btn.active {
    background-color: var(--golden-ochre);
    border-color: var(--golden-ochre);
    color: var(--pure-white);
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding-bottom: 30px;
}
.article-card {
    background-color: var(--pure-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.article-card[style*="display: none;"] {
    animation: fadeOut 0.4s ease forwards;
}
.article-card-link {
    text-decoration: none;
    color: var(--dark-charcoal);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.article-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.article-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.article-card:hover .article-image-wrapper img {
    transform: scale(1.05);
}
.article-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.article-info .post-category-tag {
    font-size: 0.75rem;
    padding: 4px 10px;
    margin-bottom: 15px;
    align-self: flex-start;
}
.article-info h4 {
    margin: 0 0 10px;
    font-size: 1.4rem;
    line-height: 1.3;
}
.article-info p {
    font-size: 0.95rem;
    color: var(--soft-gray);
    margin-bottom: 0;
    flex-grow: 1;
}
.read-more {
    margin-top: 20px;
    font-weight: 700;
    color: var(--golden-ochre);
}

.newsletter-section {
    background-color: var(--dark-charcoal);
    color: var(--pure-white);
    padding: 80px 0;
    text-align: center;
    margin: 80px 0;
}
.newsletter-section h3 {
    color: var(--pure-white);
    font-size: 2rem;
    margin: 0 0 15px;
}
.newsletter-section p {
    color: var(--alabaster-white);
    opacity: 0.8;
    max-width: 500px;
    margin: 0 auto 30px;
}
.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}
.newsletter-form input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    color: var(--pure-white);
    font-size: 1rem;
}
.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}
.newsletter-form button {
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .featured-post {
        grid-template-columns: 1fr;
    }
    .featured-post-content { padding: 40px; }
}

@media (max-width: 768px) {
    .featured-post-content h2 { font-size: 1.8rem; }
}

@media (max-width: 576px) {
    .article-grid {
        grid-template-columns: 1fr;
    }
    .newsletter-form {
        flex-direction: column;
    }
}

@keyframes fadeOut {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0; transform: scale(0.95); }
}

.article-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.article-modal.is-visible {
    opacity: 1;
    visibility: visible;
}
.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(45, 49, 66, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.modal-content {
    position: relative;
    background-color: var(--pure-white);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 12px;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.article-modal.is-visible .modal-content {
    transform: scale(1);
}
.modal-close-btn {
    position: sticky;
    top: 15px;
    right: 15px;
    float: right;
    width: 40px;
    height: 40px;
    background: var(--alabaster-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}
.modal-close-btn svg {
    width: 24px;
    height: 24px;
    color: var(--dark-charcoal);
}
.modal-body {
    padding: 0;
}
.modal-body .modal-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}
.modal-body .modal-text-content {
    padding: 40px 50px;
}
.modal-body .post-category-tag {
    margin-bottom: 20px;
}
.modal-body h2 {
    text-align: left;
    font-size: 2.2rem;
    margin-bottom: 20px;
}
.modal-body h5 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
}
.modal-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--soft-gray);
}
.article-full-content
{
    display: none;
}

@media (max-width: 768px) {
    .modal-body .modal-text-content {
        padding: 30px;
    }
    .modal-body h2 {
        font-size: 1.8rem;
    }
}

.contact-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;text-align:center}
.contact-info-block svg{width:48px;height:48px;color:var(--golden-ochre);margin-bottom:20px}
.contact-info-block p{color:var(--soft-gray);font-size:.95rem;margin-bottom:.5rem}
.contact-form-layout{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.contact-map{height:550px;border-radius:12px;overflow:hidden}
.contact-map iframe{filter: invert(1); border: 0;}
.contact-form-wrapper h3{margin-bottom:30px;font-size:2rem}
.form-group{margin-bottom:20px}
.form-group label{display:block;font-weight:600;margin-bottom:8px}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:14px;font-size:1rem;border:1px solid #ccc;border-radius:8px;transition:border-color .3s,box-shadow .3s}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:0;border-color:var(--golden-ochre);box-shadow:0 0 0 3px rgba(191,154,104,.2)}
.error-message{color:red;font-size:.85rem;margin-top:5px;display:none}
.form-group input.is-invalid,.form-group select.is-invalid,.form-group textarea.is-invalid{border-color:red}
.form-group .is-invalid+.error-message{display:block}
.thank-you-section{display:flex;align-items:center;justify-content:center;min-height:calc(100vh - 160px);text-align:center}
.thank-you-content{max-width:600px; margin: 0 auto;}
.thank-you-icon{width:80px;height:80px;color:var(--golden-ochre);margin:0 auto 30px}
.thank-you-content p{margin:20px 0 40px;font-size:1.1rem;color:var(--soft-gray)}
.thank-you-actions{display:flex;justify-content:center;gap:20px}
.text-page-section{padding:80px 0}
.text-page-section .container{overflow: unset;}
.text-page-layout{display:grid;grid-template-columns:250px 1fr;gap:60px;align-items:flex-start}
.text-page-nav{position:sticky;top:120px}
.text-page-nav ul{list-style:none;padding:0;margin:0;border-left:2px solid #e0e0e0}
.text-page-nav li a{display:block;padding:10px 20px;text-decoration:none;color:var(--soft-gray);font-weight:600;border-left:2px solid transparent;margin-left:-2px;transition:all .3s}
.text-page-nav li a:hover{color:var(--golden-ochre)}
.text-page-nav li a.active{color:var(--dark-charcoal);border-left-color:var(--golden-ochre);background-color:#fafafa}
.text-page-content .last-updated{font-style:italic;color:var(--soft-gray);margin-bottom:40px}
.text-page-content section{margin-bottom:40px;padding-top:20px;margin-top:-20px}
.text-page-content h2{text-align:left;border-bottom:1px solid #e0e0e0;padding-bottom:10px;margin-bottom:20px}
.text-page-content ul{line-height:1.8}

@media(max-width: 768px)
{
    .contact-form-layout,.contact-gridl, .text-page-layout, .contact-grid
    {
        grid-template-columns: 1fr;
    }
    .text-page-nav
    {
        position: unset;
    }
}