:root {
    --primary: #1a1a1a;
    --secondary: #6b4423;
    --accent: #d4a574;
    --light: #f5f1e8;
    --text-dark: #2a2a2a;
    --text-light: #f5f1e8;
}

* {
    font-family: "Inter", sans-serif;
}

h1,
h2,
h3 {
    font-family: "Playfair Display", serif;
    letter-spacing: -0.02em;
}

body {
    background-color: var(--light);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Navigation Styles */
nav {
    backdrop-filter: blur(10px);
    background: rgba(245, 241, 232, 0.95);
    border-bottom: 1px solid rgba(26, 26, 26, 0.05);
}

.nav-links a {
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f1e8 0%, #ede8df 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("https://images.unsplash.com/photo-1495521821757-a1efb6729352?w=1200&h=800&fit=crop")
        center/cover;
    opacity: 0.3;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 40px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-family: "Lora", serif;
    color: var(--secondary);
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--secondary);
    color: var(--text-light);
    box-shadow: 0 10px 30px rgba(107, 68, 35, 0.15);
}

.btn-primary:hover {
    background: #552d14;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(107, 68, 35, 0.25);
}

.btn-outline {
    border: 2px solid var(--secondary);
    color: var(--secondary);
    background: transparent;
    margin-left: 15px;
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--text-light);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

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

/* Cards */
.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Section Spacing */
.section {
    padding: 80px 20px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 60px;
    max-width: 600px;
}

/* Search Box */
.search-box {
    position: relative;
    margin-bottom: 40px;
}

.search-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--secondary);
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.search-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary);
    pointer-events: none;
}

/* Filter Buttons */
.filter-btn {
    padding: 8px 16px;
    border: 2px solid var(--secondary);
    border-radius: 20px;
    background: transparent;
    color: var(--secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.filter-btn.active {
    background: var(--secondary);
    color: white;
}

.filter-btn:hover {
    background: var(--secondary);
    color: white;
}

/* Product Card Specific */
.product-card {
    transition: all 0.3s ease;
}

.product-card.hidden {
    display: none;
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.product-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 12px;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
}

/* Swiper Custom */
.swiper-pagination-bullet {
    background: var(--secondary) !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
}
/* ── Typography overrides ── */
h1,
h2,
h3,
h4,
.hero-title,
.section-title {
    font-family: "Dancing Script", cursive !important;
    letter-spacing: 0.01em;
}

body,
p,
a,
span,
button,
input,
select,
textarea,
label {
    font-family: "Jost", sans-serif;
}

.eyebrow {
    font-family: "Jost", sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
}

/* ── Overrides: sharper everything ── */
.btn,
.search-input,
.filter-btn,
.card {
    border-radius: 0 !important;
}

/* ── Hero ── */
#home.hero-section {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
    background: var(--primary);
    padding-bottom: 0;
}

.hero-full-bg {
    position: absolute;
    inset: 0;
    background-position: top;

    background-size: cover;
    background-repeat: no-repeat;
    filter: brightness(0.965) contrast(1.5) saturate(0.9);
    z-index: 0;
    /* transform: scale(0.99); */
    /* animation: heroZoom 12s ease-in-out infinite alternate; */
}

@keyframes heroZoom {
    from {
        transform: scale(1.03);
    }
    to {
        transform: scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 0 80px 100px;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(4rem, 9vw, 9rem) !important;
    font-weight: 700;
    color: var(--light);
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-family: "Cormorant Garamond", serif !important;
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-style: italic;
    color: var(--accent);
    letter-spacing: 0.12em;
    margin-bottom: 48px;
    font-weight: 300;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: var(--accent);
    margin: 0 0 32px;
}

.btn-hero-primary {
    display: inline-block;
    padding: 16px 48px;
    background: var(--accent);
    color: var(--primary);
    font-family: "Jost", sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition:
        background 0.3s,
        color 0.3s;
}

.btn-hero-primary:hover {
    background: var(--light);
    color: var(--primary);
}

.btn-hero-outline {
    display: inline-block;
    padding: 16px 48px;
    background: transparent;
    color: var(--light);
    font-family: "Jost", sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(245, 241, 232, 0.45);
    margin-left: 16px;
    cursor: pointer;
    transition:
        background 0.3s,
        border-color 0.3s,
        color 0.3s;
}

.btn-hero-outline:hover {
    background: rgba(245, 241, 232, 0.08);
    border-color: var(--light);
}

/* Hero bottom clip */
.hero-clip-bottom {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}

/* Scroll hint */
.hero-scroll {
    position: absolute;
    right: 60px;
    bottom: 80px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(245, 241, 232, 0.45);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(
        to bottom,
        rgba(245, 241, 232, 0.45),
        transparent
    );
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%,
    100% {
        transform: scaleY(1);
        opacity: 1;
    }
    50% {
        transform: scaleY(0.5);
        opacity: 0.4;
    }
}

/* ── Trust bar ── */
.trust-bar {
    background: var(--secondary);
    padding: 20px 40px;
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--light);
}

.trust-item i {
    color: var(--accent);
    font-size: 1rem;
}

.trust-item span {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
}

/* ── Story banner ── */
.story-banner {
    position: relative;
    overflow: hidden;
}

.story-banner__image {
    width: 100%;
    height: 580px;
    object-fit: cover;
    display: block;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}

.story-banner__text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10% 60px;
    background: linear-gradient(
        90deg,
        rgba(26, 26, 26, 0.72) 40%,
        transparent 100%
    );
}

.story-banner__text h2 {
    font-size: clamp(3rem, 6vw, 6rem);
    color: var(--light);
    margin-bottom: 20px;
}

.story-banner__text p {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.25rem;
    font-style: italic;
    color: rgba(245, 241, 232, 0.75);
    max-width: 480px;
    line-height: 1.8;
    margin-bottom: 36px;
}

.btn-light {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-light:hover {
    background: var(--accent);
    color: var(--primary);
}

/* ── Products section ── */
#products.section {
    background: var(--light);
    padding-top: 100px;
    padding-bottom: 100px;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem) !important;
    color: var(--text-dark);
    margin: 8px 0 16px;
    line-height: 1.1;
}

.section-rule {
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin: 16px auto;
}

.section-subtitle {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--secondary);
    text-align: center;
}

/* Search & filter */
.search-input {
    border: 1px solid var(--secondary) !important;
    border-radius: 0 !important;
    padding: 14px 50px 14px 20px;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.filter-btn {
    border-radius: 0 !important;
    border: 1px solid var(--secondary) !important;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 20px;
}

/* Product card */
.card.product-card {
    border-radius: 0 !important;
    box-shadow: none;
    border: 1px solid rgba(26, 26, 26, 0.07);
    transition:
        box-shadow 0.35s,
        transform 0.35s;
    position: relative;
    overflow: hidden;
}

.card.product-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.4s ease;
}

.card.product-card:hover::after {
    width: 100%;
}

.card.product-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.card img {
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.card.product-card:hover img {
    transform: scale(1.04);
}

.product-info {
    padding: 24px;
}

.product-name {
    font-family: "Dancing Script", cursive !important;
    font-size: 1.5rem !important;
    color: var(--secondary) !important;
    margin-bottom: 6px;
}

.product-description {
    font-size: 0.82rem;
    color: #777;
    line-height: 1.7;
    letter-spacing: 0.02em;
}

.product-footer {
    border-top: 1px solid #eee;
    padding-top: 14px;
    margin-top: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary);
}

.btn-add {
    display: inline-block;
    padding: 9px 20px;
    background: var(--secondary);
    color: var(--light);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-add:hover {
    background: var(--primary);
}

/* ── Why us / 3-col ── */
.why-section {
    background: var(--primary);
    padding: 100px 40px;
    clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
    margin: -40px 0;
    position: relative;
    z-index: 1;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    max-width: 1100px;
    margin: 60px auto 0;
}

.why-item {
    padding: 50px 40px;
    text-align: center;
    border-left: 1px solid rgba(245, 241, 232, 0.07);
    transition: background 0.3s;
}

.why-item:first-child {
    border-left: none;
}

.why-item:hover {
    background: rgba(245, 241, 232, 0.03);
}

.why-icon {
    width: 56px;
    height: 56px;
    border: 1px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.1rem;
    color: var(--accent);
}

.why-item h3 {
    font-size: 1.8rem;
    color: var(--light);
    margin-bottom: 12px;
}

.why-item p {
    font-size: 0.85rem;
    color: rgba(245, 241, 232, 0.55);
    line-height: 1.8;
    letter-spacing: 0.03em;
}

/* ── Testimonials ── */
.testimonials {
    background: #f0ebe0;
    padding: 100px 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 60px auto 0;
}

.testimonial-card {
    background: white;
    padding: 40px 32px;
    text-align: left;
    border-left: 3px solid var(--accent);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 0.75rem;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.testimonial-quote {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--secondary);
    font-weight: 600;
}

/* ── CTA band ── */
.cta-band {
    background: var(--secondary);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://images.unsplash.com/photo-1509042239860-f550ce710b93?w=1400&q=60")
        center/cover;
    opacity: 0.12;
}

.cta-band > * {
    position: relative;
    z-index: 1;
}

.cta-band h2 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    color: var(--light);
    margin-bottom: 16px;
}

.cta-band p {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 1.15rem;
    color: rgba(245, 241, 232, 0.7);
    margin-bottom: 40px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 28px 80px;
    }
    .why-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .trust-bar {
        gap: 28px;
    }
    .hero-scroll {
        display: none;
    }
}
/* ═══════════════════════  GALLERY  ═══════════════════════ */
.gallery-section {
    background: var(--light);
    padding: 100px 40px;
}

.gallery-masonry {
    columns: 3;
    column-gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .gallery-masonry {
        columns: 2;
    }
}

@media (max-width: 560px) {
    .gallery-masonry {
        columns: 1;
    }
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 16px;
}

.gallery-item-inner {
    position: relative;
    overflow: hidden;
    display: block;
    cursor: pointer;
}

.gallery-item-inner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.55s ease;
    filter: brightness(0.97) saturate(0.9);
}

.gallery-item-inner:hover img {
    transform: scale(1.04);
    filter: brightness(1) saturate(1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 14px;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.72), transparent);
    opacity: 0;
    transform: translateY(6px);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.gallery-item-inner:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-caption span {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 0.9rem;
    color: var(--light);
    letter-spacing: 0.05em;
}

/* ── Lightbox ── */
#gallery-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

#gallery-lightbox.active {
    display: flex;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(6px);
}

.lightbox-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 90vw;
    max-height: 90vh;
    padding: 20px;
}

.lightbox-img {
    max-width: 80vw;
    max-height: 82vh;
    object-fit: contain;
    display: block;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.lightbox-caption {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 0.9rem;
    color: rgba(245, 241, 232, 0.65);
    white-space: nowrap;
    letter-spacing: 0.06em;
}

.lightbox-close {
    position: fixed;
    top: 28px;
    right: 36px;
    background: none;
    border: 1px solid rgba(245, 241, 232, 0.3);
    color: var(--light);
    font-size: 1.4rem;
    line-height: 1;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        border-color 0.3s,
        background 0.3s;
}

.lightbox-close:hover {
    background: rgba(245, 241, 232, 0.1);
    border-color: var(--accent);
}

.lightbox-prev,
.lightbox-next {
    background: none;
    border: 1px solid rgba(245, 241, 232, 0.2);
    color: var(--light);
    font-size: 1.2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition:
        border-color 0.3s,
        background 0.3s,
        color 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 80px 20px;
    }

    .lightbox-prev,
    .lightbox-next {
        position: fixed;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }

    .lightbox-prev {
        left: 12px;
    }
    .lightbox-next {
        right: 12px;
    }

    .lightbox-content {
        gap: 0;
    }

    .lightbox-img {
        max-width: 90vw;
    }
}
