:root {
    --color-bg: #ffffff;
    --color-text: #1b1b1b;
    --color-muted: #6b6b6b;
    --color-accent: #7a5c3b;
    --color-dark: #0e0f14;
    --color-light: #f6f6f6;
    --color-border: #e6e6e6;

    --container-width: 1200px;

    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Arial, sans-serif;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes slideInFromBehind {
    from {
        opacity: 0;
        transform: translateZ(-100px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateZ(0) scale(1);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes notificationReveal {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroImageReveal {
    0% {
        opacity: 0;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes overlayReveal {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes heroTextReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Ensure smooth animations */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Prevent animation glitches */
.hero * {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

html, body {
    height: 100%;
}

body {
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-sans);
    line-height: 1.6;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: var(--container-width);
    padding: 0 20px;
    margin: 0 auto;
}

.notification-bar {
    background: var(--color-dark);
    color: #fff;
    text-align: center;
    padding: 10px 12px;
    font-size: 13px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    animation: notificationReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.notification-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
}

.nav {
    width: 100%;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-serif);
    letter-spacing: 8px;
    font-weight: 700;
    font-size: 20px;
    background: linear-gradient(135deg, #1b1b1b 0%, #7a5c3b 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-size: 14px;
    color: #333;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left center;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active::after {
    width: 100%;
    background: var(--color-accent);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent);
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-btn {
    background: transparent;
    border: 1px solid var(--color-border);
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    cursor: pointer;
    color: #333;
}

.mobile-menu-btn {
    display: none;
    width: 36px;
    height: 36px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1px solid var(--color-border);
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    border-color: var(--color-accent);
    background: var(--color-accent);
}

.mobile-menu-btn:hover span {
    background: #fff;
}

.mobile-menu-btn span {
    display: block;
    width: 18px;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero */
.hero {
    position: relative;
    height: min(86vh, 820px);
    min-height: 520px;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.hero-image {
    position: absolute;
    inset: 0;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    animation: heroImageReveal 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    transform-origin: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    animation: overlayReveal 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    opacity: 0;
    transform: translateY(30px);
    animation: heroTextReveal 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards;
    letter-spacing: 3px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-family: var(--font-serif);
    opacity: 0;
    font-size: clamp(18px, 2.5vw, 26px);
    margin-top: 0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    transform: translateY(20px);
    animation: heroTextReveal 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s forwards;
    letter-spacing: 1.5px;
    line-height: 1.4;
    font-weight: 400;
    max-width: 600px;
}

.hero-tagline {
    font-family: var(--font-sans);
    font-size: clamp(14px, 1.8vw, 18px);
    opacity: 0;
    margin-top: 20px;
    margin-bottom: 32px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
    transform: translateY(20px);
    animation: heroTextReveal 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s forwards;
    letter-spacing: 1px;
    line-height: 1.5;
    font-weight: 300;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-top: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: heroTextReveal 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.4s forwards;
}

.hero-button {
    padding: 14px 28px;
    border: 2px solid;
    border-radius: 0;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-button.primary {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

.hero-button.primary:hover {
    background: #5a4a2f;
    border-color: #5a4a2f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(122, 92, 59, 0.4);
}

.hero-button.secondary {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.hero-button.secondary:hover {
    background: #fff;
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Featured Collection */
.featured-collection {
    padding: 80px 0;
}

.collection-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.image-collage {
    position: relative;
    height: 460px;
    perspective: 1000px;
}

.collage-img {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.collage-img:hover {
    transform: translateZ(20px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.img-1 { 
    top: 12%; 
    left: 4%; 
    width: 34%; 
    animation: slideInFromBehind 1s ease-out 0.5s both;
    z-index: 4;
}
.img-2 { 
    top: 0; 
    right: 10%; 
    width: 42%; 
    animation: slideInFromBehind 1s ease-out 0.8s both;
    z-index: 3;
}
.img-3 { 
    bottom: 8%; 
    left: 18%; 
    width: 38%; 
    animation: slideInFromBehind 1s ease-out 1.1s both;
    z-index: 2;
}
.img-4 { 
    bottom: -2%; 
    right: 0; 
    width: 48%; 
    animation: slideInFromBehind 1s ease-out 1.4s both;
    z-index: 1;
}

.collection-content .collection-badge {
    letter-spacing: 3px;
    font-size: 11px;
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    animation: fadeInLeft 1s ease-out 1.2s both;
}

.collection-title {
    font-family: var(--font-serif);
    font-size: clamp(26px, 3.2vw, 40px);
    margin: 10px 0 14px;
    font-weight: 700;
    animation: fadeInLeft 1s ease-out 1.4s both;
    letter-spacing: 1px;
}

.collection-description {
    color: #3b3b3b;
    max-width: 520px;
    line-height: 1.7;
    animation: fadeInLeft 1s ease-out 1.6s both;
}

.cta-button {
    margin-top: 22px;
    padding: 14px 28px;
    border: 2px solid var(--color-accent);
    background: var(--color-accent);
    color: #fff;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
    position: relative;
    overflow: hidden;
    animation: fadeInLeft 1s ease-out 1.8s both;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: #5a4a2f;
    border-color: #5a4a2f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(122, 92, 59, 0.3);
}

/* Mission */
.mission-section {
    padding: 80px 0 40px;
    background: #fff;
}

.mission-title {
    font-family: var(--font-serif);
    font-size: 24px;
    letter-spacing: 4px;
    text-align: center;
    font-weight: 700;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.mission-text {
    text-align: center;
    color: #4a4a4a;
    max-width: 820px;
    margin: 16px auto 40px;
    line-height: 1.8;
    font-size: 16px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.category-card {
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.category-card:nth-child(2) {
    animation-delay: 1.1s;
}

.category-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-label {
    position: absolute;
    left: 18px;
    bottom: 16px;
    background: rgba(255,255,255,.92);
    padding: 8px 12px;
    font-size: 13px;
    letter-spacing: 2px;
}

/* Seasonal */
.seasonal-section { padding: 70px 0; }

.section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 18px;
}

.section-title { font-family: var(--font-serif); }

.view-all-link { font-size: 13px; color: #666; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.product-card {
    border: 1px solid var(--color-border);
    background: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.product-card:nth-child(2) {
    animation-delay: 0.5s;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--color-accent);
}

.product-card .product-image { position: relative; overflow: hidden; }

.product-img { width: 100%; height: 420px; object-fit: cover; display: block; }

.product-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    background: #111;
    color: #fff;
    font-size: 11px;
    letter-spacing: 1px;
    padding: 6px 10px;
}

.product-badge.sold-out { background: #7a7a7a; }
.product-badge.discount { background: #6b4b2a; }

.product-info { padding: 14px 14px 18px; }
.product-name { font-size: 16px; font-weight: 600; }
.collection-label { color: #9a9a9a; font-size: 12px; }

.carousel-indicators { display: flex; gap: 6px; margin-top: 14px; }
.indicator { width: 8px; height: 8px; border-radius: 10px; background: #cfcfcf; }
.indicator.active { background: #111; }

/* Popular */
.popular-section { padding: 70px 0; background: var(--color-light); }
.section-subtitle { 
    display: block; 
    color: var(--color-accent); 
    font-size: 11px; 
    letter-spacing: 3px; 
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
}
.section-main-title { 
    display: block; 
    font-family: var(--font-serif); 
    font-size: 32px; 
    margin-top: 8px; 
    font-weight: 600;
    letter-spacing: 1px;
}
.section-description {
    color: var(--color-muted);
    font-size: 14px;
    margin-top: 12px;
    line-height: 1.6;
    max-width: 500px;
}

.product-card.featured { border: none; background: #fff; box-shadow: 0 10px 25px rgba(0,0,0,.06); }

.product-rating { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.stars { color: #f1b74b; letter-spacing: 2px; }
.review-count { color: #8a8a8a; font-size: 12px; }
.product-pricing { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.original-price { color: #9a9a9a; text-decoration: line-through; }
.discounted-price { color: #1b1b1b; font-weight: 600; }

.section-cta { text-align: center; margin-top: 20px; }

/* Lifestyle Banner */
.lifestyle-banner { padding: 0; }
.lifestyle-img { width: 100%; height: auto; display: block; }

/* Services strip */
.services-strip { padding: 36px 0; background: #fff; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.service-item { 
    text-align: center; 
    padding: 16px; 
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.service-item:nth-child(2) { animation-delay: 0.4s; }
.service-item:nth-child(3) { animation-delay: 0.5s; }
.service-item:nth-child(4) { animation-delay: 0.6s; }

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon { 
    width: 72px; 
    height: 72px; 
    display: grid; 
    place-items: center; 
    margin: 0 auto 12px; 
    border: 2px solid var(--color-accent); 
    border-radius: 999px; 
    color: var(--color-accent);
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--color-accent);
    color: #fff;
}

.service-title { 
    font-weight: 700; 
    margin-bottom: 8px; 
    color: var(--color-text);
    font-size: 16px;
}
.service-description { 
    color: #666; 
    font-size: 14px; 
    line-height: 1.6;
}

/* Footer */
.footer { background: var(--color-dark); color: #fff; padding: 46px 0 22px; margin-top: 40px; }
.footer-content { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.footer-title { color: #d6d6d6; font-size: 12px; letter-spacing: 2px; margin-bottom: 10px; }
.footer-links { list-style: none; display: grid; gap: 8px; }
.footer-link { color: #c7c7c7; font-size: 14px; }
.footer-link:hover { color: #fff; }
.footer-text { color: #c7c7c7; }
.footer-bottom { border-top: 1px solid #23242b; margin-top: 22px; padding-top: 16px; text-align: center; color: #9a9aa1; font-size: 13px; }

/* Page headers */
.page-header { padding: 70px 0 40px; background: var(--color-light); border-bottom: 1px solid var(--color-border); }
.page-title { font-family: var(--font-serif); font-size: clamp(28px, 4vw, 40px); }
.page-subtitle { color: #6b6b6b; }

/* Catalog placeholder */
.catalog-content { padding: 80px 0; }
.catalog-placeholder { text-align: center; }
.catalog-placeholder h2 { font-family: var(--font-serif); font-size: 32px; margin-bottom: 16px; color: var(--color-text); }
.catalog-placeholder p { color: var(--color-muted); font-size: 16px; line-height: 1.6; max-width: 500px; margin: 0 auto; }

/* About */
.story-section { padding: 60px 0; }
.story-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: center; }
.story-title { font-family: var(--font-serif); font-size: 24px; margin-bottom: 8px; }
.story-text { color: #4a4a4a; margin-bottom: 10px; }
.story-img { width: 100%; height: 420px; object-fit: cover; }

.values-section { 
    padding: 80px 0; 
    background: var(--color-light); 
}
.values-section .section-title {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 32px;
    margin-bottom: 50px;
    font-weight: 600;
    letter-spacing: 2px;
}
.values-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
}
.value-item { 
    background: #fff; 
    border: 1px solid var(--color-border); 
    padding: 30px 20px; 
    text-align: center; 
    transition: all 0.3s ease;
    border-radius: 8px;
}
.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--color-accent);
}
.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}
.value-title { 
    font-weight: 700; 
    margin: 16px 0; 
    font-size: 18px;
    color: var(--color-text);
}
.value-description { 
    color: #666; 
    font-size: 15px; 
    line-height: 1.6;
}

.team-section { 
    padding: 80px 0; 
    background: #fff;
}
.team-section .section-title {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 32px;
    margin-bottom: 50px;
    font-weight: 600;
    letter-spacing: 2px;
}
.team-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 40px; 
    align-items: stretch;
}
.member-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: fit-content;
    display: flex;
    flex-direction: column;
}
.member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--color-accent);
}
.member-image { 
    overflow: hidden; 
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-light);
    border-bottom: 1px solid var(--color-border);
}
.member-img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    object-position: center 20%;
    transition: transform 0.3s ease;
    min-height: 100%;
}
.member-card:hover .member-img {
    transform: scale(1.05);
}

/* Ensure proper image alignment and face visibility */
.member-image {
    position: relative;
    background: var(--color-light);
}

.member-img {
    object-position: center 20%;
    display: block;
}

/* Specific positioning for Hardik's image to show face better */
.member-card:nth-child(2) .member-img {
    object-position: center 35%;
}

/* Fallback for image loading issues */
.member-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-light);
    z-index: -1;
}

/* Responsive image adjustments */
@media (max-width: 768px) {
    .member-image {
        height: 280px;
    }
    
    .member-img {
        object-position: center 15%;
    }
}
.member-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.member-name { 
    font-weight: 700; 
    margin-top: 0; 
    font-size: 20px;
    color: var(--color-text);
    margin-bottom: 8px;
}
.member-role { 
    color: var(--color-accent); 
    font-size: 14px; 
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.member-description { 
    color: #525252; 
    font-size: 15px; 
    margin: 0 0 20px 0; 
    line-height: 1.6;
}
.member-contact { 
    font-size: 15px; 
    color: var(--color-accent); 
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    margin-top: auto;
}
.member-contact:hover {
    color: var(--color-text);
}

.heritage-section { padding: 50px 0; background: var(--color-light); }
.heritage-title { font-family: var(--font-serif); font-size: 24px; margin-bottom: 8px; }
.heritage-text { color: #555; max-width: 900px; }
.heritage-stats { margin-top: 14px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stat-item { background: #fff; border: 1px solid var(--color-border); padding: 16px; text-align: center; }
.stat-number { font-family: var(--font-serif); font-size: 22px; }
.stat-label { color: #777; font-size: 12px; letter-spacing: 1px; }

/* Services page */
.services-overview { padding: 60px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background: #fff; border: 1px solid var(--color-border); padding: 16px; }
.service-card .service-title { font-weight: 700; margin: 10px 0 6px; }
.service-card .service-features { margin-top: 8px; padding-left: 16px; color: #666; }
.service-card .service-features li { margin: 4px 0; }

.categories-section { padding: 40px 0; background: var(--color-light); }
.categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.category-item { background: #fff; border: 1px solid var(--color-border); }
.category-content { padding: 14px; }
.category-name { font-weight: 700; }
.category-description { color: #666; font-size: 14px; margin: 6px 0; }
.category-link { font-size: 14px; text-decoration: underline; }

.special-services { padding: 50px 0; }
.special-services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.special-service { border: 1px solid var(--color-border); background: #fff; padding: 16px; }
.special-service-title { font-weight: 700; margin-bottom: 8px; }
.special-service-description { color: #666; font-size: 14px; }

/* Contact */
.contact-info { padding: 50px 0; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-card { border: 1px solid var(--color-border); padding: 16px; background: #fff; }
.contact-icon { width: 56px; height: 56px; display: grid; place-items: center; border: 1px solid var(--color-border); border-radius: 999px; margin-bottom: 8px; }
.contact-title { font-weight: 700; margin-bottom: 6px; }
.contact-details { color: #666; font-size: 14px; }

.contact-form-section { padding: 20px 0 50px; background: var(--color-light); }
.form-container { max-width: 900px; margin: 0 auto; background: #fff; border: 1px solid var(--color-border); padding: 18px; }
.form-title { font-weight: 700; margin-bottom: 12px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.form-group { display: grid; gap: 6px; margin-bottom: 10px; }
.form-label { font-size: 14px; color: #333; }
.form-input, .form-select, .form-textarea { width: 100%; border: 1px solid var(--color-border); padding: 10px 12px; font: inherit; background: #fff; }
.form-textarea { resize: vertical; }
.submit-button { padding: 12px 18px; border: 1px solid #222; background: #111; color: #fff; cursor: pointer; }
.submit-button:hover { opacity: .9; }

.business-hours { padding: 40px 0; }
.hours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.hours-item { background: #fff; border: 1px solid var(--color-border); padding: 12px; display: flex; align-items: center; justify-content: space-between; }
.day { font-weight: 600; }
.time { color: #666; }

/* Search modal */
.search-modal { position: fixed; inset: 0; background: rgba(0,0,0,.55); display: none; align-items: center; justify-content: center; z-index: 100; }
.search-modal.open { display: flex; }
.search-modal-content { width: min(720px, 92%); background: #fff; padding: 20px; border-radius: 8px; position: relative; }
.close-btn { position: absolute; right: 12px; top: 8px; border: 0; background: transparent; font-size: 28px; line-height: 1; cursor: pointer; }
.search-container { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.search-input { border: 1px solid var(--color-border); padding: 12px; }
.search-submit { padding: 12px 16px; border: 1px solid #111; background: #111; color: #fff; cursor: pointer; }

/* Scroll-triggered animations */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced hover effects for other elements */

/* Icon button enhancements */
.icon-btn {
    transition: all 0.3s ease;
}

.icon-btn:hover {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .collection-grid { grid-template-columns: 1fr; }
    .image-collage { height: 380px; }
    .story-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .nav-menu { display: none; }
    .mobile-menu-btn { display: inline-flex; }
}

@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-button {
        width: 100%;
        text-align: center;
    }
    
    .product-grid { grid-template-columns: 1fr; }
    .category-cards { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: 1fr; }
    .special-services-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hours-grid { grid-template-columns: 1fr; }
    
    /* Team section mobile improvements */
    .team-section {
        padding: 60px 0;
    }
    
    .team-grid {
        gap: 30px;
    }
    
    .member-card {
        max-width: 400px;
        margin: 0 auto;
    }
}
