:root {
    --background: 350 100% 99%;
    --foreground: 220 20% 16%;
    --card: 0 0% 100%;
    --card-foreground: 220 20% 16%;
    --primary: 347 77% 50%;
    --primary-foreground: 0 0% 100%;
    --secondary: 330 80% 85%;
    --secondary-foreground: 347 77% 35%;
    --muted: 350 30% 96%;
    --muted-foreground: 220 10% 46%;
    --accent: 350 100% 97%;
    --accent-foreground: 347 77% 40%;
    --border: 340 20% 92%;
    --radius: 0.75rem;
    --hero-gradient: linear-gradient(135deg, hsl(350 100% 97%) 0%, hsl(330 60% 95%) 50%, hsl(280 30% 96%) 100%);
    --card-shadow: 0 4px 24px -4px hsl(347 77% 50% / 0.08);
    --card-shadow-hover: 0 12px 40px -8px hsl(347 77% 50% / 0.15);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: hsl(350 30% 96%);
}

::-webkit-scrollbar-thumb {
    background: hsl(330 40% 80%);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: hsl(var(--primary));
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: hsla(350, 100%, 99%, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid hsl(var(--border));
    transition: box-shadow 0.3s;
    padding: 0 2rem;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar.scrolled {
    box-shadow: 0 2px 12px hsl(347 77% 50% / 0.06);
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: hsl(var(--foreground));
    text-decoration: none;
    cursor: pointer;
}

.nav-logo em {
    font-style: italic;
    color: hsl(var(--primary));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: hsl(var(--foreground));
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s;
    cursor: pointer;
    position: relative;
}

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

.nav-links a.active {
    color: hsl(var(--primary));
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: hsl(var(--foreground));
    transition: all 0.3s;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 30%;
    background: hsl(var(--background));
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: hsl(var(--foreground));
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s;
}

/* Pages */
.page {
    display: none;
    min-height: 100vh;
}

.page.active {
    display: block;
    animation: fadeSlideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero */
.hero {
    background: var(--hero-gradient);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, hsl(347 77% 50% / 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: hsl(var(--primary));
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.hero-eyebrow span {
    display: block;
    width: 32px;
    height: 1.5px;
    background: hsl(var(--primary));
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.hero-title em {
    font-style: italic;
    color: hsl(var(--primary));
}

.hero-subtitle {
    font-size: 1.05rem;
    color: hsl(var(--muted-foreground));
    max-width: 480px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    font-weight: 400;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    box-shadow: 0 6px 20px hsl(347 77% 50% / 0.25);
}

.btn-primary:hover {
    background: hsl(347 77% 45%);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px hsl(347 77% 50% / 0.35);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid hsl(var(--border));
    color: hsl(var(--foreground));
}

.btn-outline:hover {
    border-color: hsl(var(--primary));
    color: hsl(var(--primary));
    background: hsl(var(--accent));
}

/* Section */
.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: hsl(var(--primary));
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-eyebrow span {
    display: block;
    width: 20px;
    height: 1px;
    background: hsl(var(--primary));
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 500;
    color: hsl(var(--foreground));
    line-height: 1.15;
}

.section-title em {
    font-style: italic;
    color: hsl(var(--primary));
}

/* Stats */
.stat-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: white;
    border-top: 1px solid hsl(var(--border));
    border-bottom: 1px solid hsl(var(--border));
}

.stat-item {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 1.8rem 1rem;
    border-right: 1px solid hsl(var(--border));
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 500;
    color: hsl(var(--primary));
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: hsl(var(--muted-foreground));
    font-weight: 500;
}

/* Posts Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.post-card {
    background: hsl(var(--card));
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: box-shadow 0.3s, transform 0.3s;
    cursor: pointer;
}

.post-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-6px);
}

.post-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

.post-card:hover .post-card-img img {
    transform: scale(1.08);
}

.post-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: hsl(var(--primary));
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    text-transform: uppercase;
}

.post-card-body {
    padding: 1.5rem;
}

.post-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: hsl(var(--foreground));
    line-height: 1.3;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card-body p {
    font-size: 0.85rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
    font-size: 0.7rem;
    color: hsl(var(--muted-foreground));
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* About story */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-img {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.story-img img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
}

.story-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: white;
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.story-badge .num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: hsl(var(--primary));
    line-height: 1;
}

.story-badge .label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: hsl(var(--muted-foreground));
    font-weight: 600;
}

.story-text {
    color: hsl(var(--muted-foreground));
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.pull-quote {
    border-left: 3px solid hsl(var(--primary));
    padding-left: 1.2rem;
    margin: 1.8rem 0;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    color: hsl(var(--foreground));
}

.founder-sig {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.founder-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: hsl(var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: hsl(var(--primary));
    border: 1.5px solid hsl(var(--border));
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: hsl(var(--border));
    border-radius: var(--radius);
    overflow: hidden;
}

.value-card {
    background: hsl(var(--card));
    padding: 2rem;
    transition: background 0.2s;
}

.value-card:hover {
    background: hsl(var(--accent));
}

.value-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: hsl(var(--primary) / 0.2);
    line-height: 1;
    margin-bottom: 0.8rem;
}

.value-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: hsl(var(--foreground));
}

.value-text {
    font-size: 0.85rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
}

/* CTA */
.cta-band {
    background: hsl(var(--foreground));
    color: white;
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-band h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.cta-band h2 em {
    font-style: italic;
    color: hsl(var(--primary));
}

.cta-band p {
    color: hsl(220 10% 70%);
    margin-bottom: 2rem;
}

/* FAQ */
.faq-search-box {
    position: relative;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.faq-search-box input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 1px solid hsl(var(--border));
    border-radius: 999px;
    font-family: var(--font-body);
    background: white;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-search-box input:focus {
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 3px hsl(347 77% 50% / 0.1);
}

.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.faq-cat-btn {
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    background: white;
    border: 1px solid hsl(var(--border));
    cursor: pointer;
    transition: all 0.2s;
}

.faq-cat-btn.active {
    background: hsl(var(--primary));
    color: white;
    border-color: hsl(var(--primary));
}

.faq-item {
    background: white;
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    margin-bottom: 0.8rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    cursor: pointer;
    text-align: left;
    color: hsl(var(--foreground));
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.2rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
    border-top: 1px solid hsl(var(--border));
    padding-top: 1rem;
    margin: 0 1.5rem;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.contact-info {
    padding: 2.5rem;
    background: hsl(var(--accent));
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 42px;
    height: 42px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--primary));
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.contact-form {
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: hsl(var(--muted-foreground));
    margin-bottom: 0.3rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid hsl(var(--border));
    border-radius: 0.5rem;
    font-family: var(--font-body);
    transition: border-color 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 3px hsl(347 77% 50% / 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Policy / Terms */
.policy-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2rem;
    align-items: start;
}

.policy-sidebar {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--card-shadow);
    position: sticky;
    top: 90px;
}

.policy-card {
    background: white;
    border-radius: var(--radius);
    padding: 1.8rem;
    box-shadow: var(--card-shadow);
    margin-bottom: 1.2rem;
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    transition: box-shadow 0.3s;
}

.policy-card:hover {
    box-shadow: var(--card-shadow-hover);
}

.policy-icon {
    font-size: 1.5rem;
    color: hsl(var(--primary));
    background: hsl(var(--accent));
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
.footer {
    background: hsl(var(--foreground));
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 3rem 2rem;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
    cursor: pointer;
}

.footer-links a:hover {
    color: hsl(var(--primary));
}

.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: hsl(var(--primary));
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.3s;
    z-index: 999;
    box-shadow: 0 6px 18px hsl(347 77% 50% / 0.3);
}

.scroll-top-btn.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .policy-layout {
        grid-template-columns: 1fr;
    }

    .policy-sidebar {
        position: static;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid hsl(var(--border));
    }

    .stat-item:last-child {
        border-bottom: none;
    }
}

/* Smooth transitions for slider elements */
.hero-slide-img {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-slide-text {
    transition: opacity 0.4s ease;
}

.hero-progress-bar {
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Override inline transition for progress bar */
.hero-progress-bar {
    transition-property: width !important;
    transition-duration: 0.4s !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}


/* FAQ Accordion Styles */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border-radius: 1rem;
    border: 1px solid hsl(var(--border, 220 13% 91%));
    background: hsl(var(--card, 0 0% 100%));
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item.open {
    border-color: hsl(var(--primary, 346 77% 49%) / 0.4);
    box-shadow: 0 4px 24px hsl(var(--primary, 346 77% 49%) / 0.08);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1rem;
    color: hsl(var(--foreground, 222 47% 11%));
    transition: background-color 0.2s ease;
    gap: 1rem;
}

@media (min-width: 768px) {
    .faq-question {
        font-size: 1.125rem;
    }
}

.faq-question:hover {
    background: hsl(var(--muted, 210 20% 96%) / 0.5);
}

.faq-question span:first-child {
    flex: 1;
    padding-right: 0.5rem;
}

.faq-chevron {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--muted-foreground, 215 14% 46%));
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: hsl(var(--primary, 346 77% 49%));
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.25rem 1.5rem;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.875rem;
    line-height: 1.7;
    color: hsl(var(--muted-foreground, 215 14% 46%));
    border-top: 1px solid hsl(var(--border, 220 13% 91%) / 0.6);
    margin: 0 1.5rem;
}

/* Category filter buttons */
.faq-cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid hsl(var(--border, 220 13% 91%));
    background: hsl(var(--card, 0 0% 100%));
    color: hsl(var(--muted-foreground, 215 14% 46%));
    white-space: nowrap;
}

.faq-cat-btn:hover {
    background: hsl(var(--muted, 210 20% 96%));
    color: hsl(var(--foreground, 222 47% 11%));
}

.faq-cat-btn.active {
    background: hsl(var(--primary, 346 77% 49%));
    color: hsl(var(--primary-foreground, 0 0% 100%));
    border-color: hsl(var(--primary, 346 77% 49%));
    box-shadow: 0 2px 12px hsl(var(--primary, 346 77% 49%) / 0.3);
}

.faq-cat-btn svg {
    width: 0.875rem;
    height: 0.875rem;
    flex-shrink: 0;
}

/* Post card styles */
.post-card {
    border-radius: 1rem;
    border: 1px solid hsl(var(--border, 220 13% 91%));
    background: hsl(var(--card, 0 0% 100%));
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.post-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.post-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.post-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.post-card:hover .post-card-img img {
    transform: scale(1.05);
}

.post-card-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: hsl(var(--accent, 346 77% 95%));
    color: hsl(var(--primary, 346 77% 49%));
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.post-card-body {
    padding: 1.25rem;
}

.post-card-body h3 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: hsl(var(--foreground, 222 47% 11%));
}

.post-card-body p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.85rem;
    color: hsl(var(--muted-foreground, 215 14% 46%));
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.post-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground, 215 14% 46%));
}

.slider-sec {
    height: 90vh;
    min-height: 600px;
    margin-top: 70px;
}

#heroSlideCounter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    font-weight: 300;
}

.left-vertical {
    font-size: 10px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

#heroSlideCategory {
    font-size: 10px;
    font-weight: 500;
}

#heroSlideTitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 300;
    letter-spacing: -0.5px;
}

#heroReadLink {
    font-size: 10px;
    letter-spacing: 2.5px;
    font-weight: 500;
    text-transform: uppercase;
}

#heroCollectionLink {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-dot {
    width: 20px;
    background: rgba(255, 255, 255, 0.15);
}

.active-dot {
    width: 36px;
    background: var(--color-primary);
}

#heroNextBtn {
    font-family: serif;
}

#heroPrevBtn {
    font-family: serif;
}

#heroProgressBar {
    width: 66%;
    transition: width 0.1s linear;
}

.article-img {
    transform: scale(1);
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#heroSlideDescription {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.75;
}

.about-h {
    font-size: clamp(44px, 6vw, 68px);
    font-weight: 300;
}

/* ---------- PRELOADER STYLES ---------- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0d0b09;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
    opacity: 1;
    visibility: visible;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    letter-spacing: 4px;
    font-weight: 500;
    background: linear-gradient(135deg, #ffffff 0%, #d4b48c 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.preloader-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(212, 180, 140, 0.2);
    border-top: 3px solid #d4b48c;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 1.5rem auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.preloader-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.preloader-progress {
    width: 140px;
    height: 1px;
    background: rgba(212, 180, 140, 0.2);
    margin-top: 1rem;
    overflow: hidden;
}

.preloader-progress-bar {
    width: 0%;
    height: 100%;
    background: #d4b48c;
    transition: width 0.2s ease;
}

/* ensure body overflow hidden while preloader active */
body.preloader-active {
    overflow: hidden;
}