@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Jost:wght@300;400;500;600;700&family=Satisfy&display=swap');

/* ==================== DESIGN TOKENS ==================== */
:root {
    --terracotta: #C1440E;
    --terracotta-light: #D4623A;
    --terracotta-dark: #9A3209;
    --forest: #2C5F3F;
    --forest-light: #3D7A55;
    --forest-dark: #1A3D28;
    --cream: #F5EDD6;
    --cream-dark: #EBD9B0;
    --parchment: #FAF4E8;
    --gold: #C4922A;
    --gold-light: #DBA94A;
    --charcoal: #1E1E1E;
    --charcoal-mid: #3A3530;
    --warm-grey: #7A6E62;
    --shadow-warm: 0 4px 24px rgba(193, 68, 14, 0.12);
    --shadow-deep: 0 12px 48px rgba(30, 30, 30, 0.18);
    --shadow-card: 0 2px 16px rgba(44, 95, 63, 0.10);
    --border-radius: 4px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== RESET & BASE ==================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    background: var(--parchment);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.45;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--terracotta);
    border-radius: 3px;
}

/* ==================== NAVIGATION ==================== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    background: transparent;
}

nav.scrolled {
    background: rgba(250, 244, 232, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(193, 68, 14, 0.15);
    box-shadow: 0 2px 20px rgba(30, 30, 30, 0.08);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 68px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.logo:hover {
    opacity: 0.82;
}

.logo img {
    height: 90px;
    width: auto;
    object-fit: contain;
    display: block;
}

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

.nav-links li {
    list-style: none;
}

.nav-links a {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 2px;
    transition: color 0.25s ease, background 0.25s ease;
    position: relative;
    display: block;
    color: var(--charcoal);
}

.nav-links li:not(:last-child) a::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: calc(100% - 2rem);
    height: 1.5px;
    background: var(--terracotta);
    transition: transform 0.28s ease;
    transform-origin: center;
}

nav.scrolled .nav-links li:not(:last-child) a:hover {
    color: var(--terracotta);
}

nav.scrolled .nav-links li:not(:last-child) a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

nav:not(.scrolled) .nav-links li:not(:last-child) a {
    color: var(--forest);
}

nav:not(.scrolled) .nav-links li:not(:last-child) a:hover {
    color: var(--forest);
    background: transparent;
}

nav:not(.scrolled) .nav-links li:not(:last-child) a:hover::after {
    background: var(--forest);
    transform: translateX(-50%) scaleX(1);
}

.contact-button {
    background: var(--terracotta) !important;
    color: #ffffff !important;
    border-radius: 2px !important;
    padding: 0.5rem 1.3rem !important;
    letter-spacing: 0.1em !important;
    font-size: 0.8rem !important;
    white-space: nowrap;
}

.contact-button::after {
    display: none !important;
}

.contact-button:hover {
    background: var(--terracotta-dark) !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(193, 68, 14, 0.38) !important;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.65);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.38rem 0.6rem;
    border-radius: 3px;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    z-index: 1001;
    line-height: 1;
    flex-shrink: 0;
    -webkit-appearance: none;
    appearance: none;
}

nav.scrolled .menu-toggle {
    border-color: var(--terracotta);
    color: var(--terracotta);
    background: transparent;
}

nav:not(.scrolled) .menu-toggle {
    border-color: var(--forest);
    color: var(--forest);
    background: transparent;
}

.menu-toggle:hover {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: #ffffff;
}

nav:not(.scrolled) .menu-toggle:hover {
    background: var(--forest);
    border-color: var(--forest);
    color: #ffffff;
}

.menu-toggle:focus,
.menu-toggle:focus-visible,
.menu-toggle:active {
    outline: none;
    background: transparent;
    -webkit-tap-highlight-color: transparent;
}

/* ==================== HOME / HERO SLIDER ==================== */
#home {
    width: 100%;
    padding: 5.5rem 2.5rem 3rem;
    min-height: auto;
    color: white;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 1280px;
    aspect-ratio: 16 / 9;
    height: auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}

.slider-wrapper .slider-item {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.slider-wrapper .slider-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("../Images/FirstImageSliderClear.PNG");
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.04);
    transition: transform 6s ease;
}

.slider-item.swiper-slide-active::before,
.slider-item.active::before {
    transform: scale(1);
}

.slider-wrapper .slider-item.slider-2::before {
    background-image: url("../Images/ThekuaWithBackgorund.PNG");
}

.slider-wrapper .slider-item.slider-3::before {
    background-image: url("../Images/ThekuaSecondImageBg.png");
}

.slider-wrapper .slider-item.slider-4::before {
    background-image: url("../Images/khapse.ico");
}

.slider-wrapper .slider-item.slider-5::before {
    background-image: url("../Images/khurma.ico");
}

.slider-wrapper .slider-item.slider-6::before {
    background-image: url("../Images/background.jpg");
}

.slider-wrapper .slider-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(20, 12, 6, 0.72) 0%, rgba(20, 12, 6, 0.35) 55%, transparent 100%),
        linear-gradient(to top, rgba(20, 12, 6, 0.55) 0%, transparent 50%);
    z-index: 2;
}

.slider-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2.5rem);
}

.slider-content>* {
    max-width: 55%;
}

.slider-subtitle {
    font-family: 'Satisfy', cursive;
    font-size: clamp(0.6rem, 1.2vw, 1.15rem);
    color: var(--gold-light);
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: clamp(0.3rem, 0.6vw, 0.75rem);
    opacity: 0;
    animation: slideUp 0.8s 0.2s forwards;
}

.slider-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(1.4rem, 4.5vw, 5rem) !important;
    font-weight: 600 !important;
    line-height: 1.05 !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    text-transform: none !important;
    text-align: left !important;
    margin-bottom: clamp(0.4rem, 1vw, 1.2rem) !important;
    letter-spacing: -0.01em;
    opacity: 0;
    animation: slideUp 0.8s 0.4s forwards;
}

.slider-title::after {
    display: none !important;
}

.slide-description {
    font-family: 'Jost', sans-serif;
    font-size: clamp(0.65rem, 1vw, 1rem);
    font-weight: 300;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.82);
    margin-top: 0 !important;
    margin-bottom: 0;
    line-height: 1.7;
    opacity: 0;
    animation: slideUp 0.8s 0.6s forwards;
}

.slide-button {
    display: inline-flex;
    align-items: center;
    gap: clamp(0.3rem, 0.6vw, 0.7rem);
    margin-top: clamp(0.6rem, 1.8vw, 2.5rem) !important;
    padding: clamp(0.4rem, 0.8vw, 0.9rem) clamp(0.8rem, 1.6vw, 2rem);
    background: var(--terracotta);
    color: white !important;
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-size: clamp(0.55rem, 0.8vw, 0.8rem);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
    border: none !important;
    transition: var(--transition);
    width: auto !important;
    text-align: left !important;
    opacity: 0;
    animation: slideUp 0.8s 0.8s forwards;
}

.slide-button::after {
    content: '→';
    transition: transform 0.3s ease;
}

.slide-button:hover {
    background: var(--terracotta-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(193, 68, 14, 0.4);
    color: white !important;
}

.slide-button:hover::after {
    transform: translateX(4px);
}

.slider-container::before {
    display: none;
}

.slider-dots {
    position: absolute;
    bottom: 18px !important;
    left: 0 !important;
    right: 0 !important;
    transform: none;
    z-index: 20;
    width: 100% !important;
    text-align: center;
}

.slider-dots .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px !important;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.slider-dots .swiper-pagination-bullet-active {
    background: var(--terracotta);
    transform: scale(1.2);
}

/* ==================== SHARED SECTION STYLES ==================== */
section {
    padding: 110px 2.5rem;
    position: relative;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.section-label {
    font-family: 'Satisfy', cursive;
    font-size: 1.1rem;
    color: var(--terracotta);
    text-align: center;
    margin-bottom: 0.75rem;
    display: block;
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
    position: relative;
    animation: none;
}

h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--terracotta);
    margin: 1.2rem auto 0;
    border-radius: 1px;
}

/* ==================== ABOUT SECTION ==================== */
#about {
    background: var(--cream);
    overflow: hidden;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-bottom: 6rem;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 2.5rem;
}

.about-text h2::after {
    margin: 1.2rem 0 0;
}

.about-intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--forest);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding-left: 1.2rem;
    border-left: 2px solid var(--terracotta);
}

.about-text p {
    font-size: 0.98rem;
    color: var(--warm-grey);
    line-height: 1.85;
    margin-bottom: 1.2rem;
    font-weight: 300;
}

.about-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(193, 68, 14, 0.15);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--terracotta);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-grey);
    margin-top: 0.3rem;
}

.about-image {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 3px;
    overflow: visible;
    box-shadow: var(--shadow-deep);
    border: 4px solid var(--terracotta);
    outline: 6px solid var(--cream-dark);
}

.about-image-inner {
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 1px;
}

.about-image-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("../Images/AboutImage.PNG") center center /cover no-repeat;
    filter: brightness(0.94) contrast(1.08) saturate(1.06) sepia(0.08);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 90px;
    height: 90px;
    background: var(--terracotta);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-warm);
    z-index: 3;
}

.about-badge span:first-child {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.about-badge span:last-child {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 0 0.5rem;
    line-height: 1.3;
    margin-top: 0.25rem;
}

/* Why Choose */
.why-choose {
    position: relative;
    z-index: 2;
    margin-bottom: 5rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.why-card {
    background: white;
    border: 1px solid rgba(193, 68, 14, 0.1);
    border-radius: 4px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--terracotta);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

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

.why-card:hover::after {
    transform: scaleX(1);
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(193, 68, 14, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--terracotta);
}

.why-card:hover .why-icon i {
    color: white;
}

.why-icon i {
    font-size: 1.3rem;
    color: var(--terracotta);
    transition: color 0.3s ease;
}

.why-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.why-card p {
    font-size: 0.84rem;
    color: var(--warm-grey);
    line-height: 1.75;
    font-weight: 300;
}

/* Mission & Vision */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    position: relative;
    z-index: 2;
    background: var(--forest-dark);
    border-radius: 6px;
    overflow: hidden;
}

.mv-card {
    padding: 3.5rem 3rem;
    color: white;
}

.mv-card.mission {
    background: var(--forest-dark);
}

.mv-card.vision {
    background: rgba(193, 68, 14, 0.85);
}

.mv-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.mv-icon {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mv-icon i {
    font-size: 1.2rem;
    color: var(--gold-light);
}

.mv-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.mv-card p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.85;
    font-weight: 300;
}

/* ==================== PRODUCTS SECTION ==================== */
#products {
    background: var(--parchment);
    padding-top: 120px;
    padding-bottom: 120px;
}

.products-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: var(--warm-grey);
    font-weight: 300;
    margin-bottom: 4rem;
    margin-top: 1.5rem;
}

.product-category {
    margin-bottom: 5rem;
}

.product-category:last-child {
    margin-bottom: 0;
}

.product-category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(193, 68, 14, 0.15);
}

.category-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: rgba(193, 68, 14, 0.2);
    line-height: 1;
    flex-shrink: 0;
}

.category-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.3rem;
    letter-spacing: -0.01em;
}

.category-tagline {
    font-family: 'Satisfy', cursive;
    font-size: 0.95rem;
    color: var(--terracotta);
}

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

.product-detail-grid.single {
    grid-template-columns: 1fr 1fr;
}

.product-detail-grid.single .product-detail-card {
    grid-column: 1;
}

.product-detail-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.product-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-deep);
}

.product-detail-card .product-img {
    width: 100%;
    height: 260px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    flex-shrink: 0;
}

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

.product-detail-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    border-top: 3px solid var(--terracotta);
}

.product-tag {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--terracotta);
}

.product-detail-body h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.product-tagline-small {
    font-family: 'Satisfy', cursive;
    font-size: 0.88rem;
    color: var(--forest);
}

.product-detail-body p {
    font-size: 0.88rem;
    color: var(--warm-grey);
    line-height: 1.8;
    font-weight: 300;
    flex: 1;
}

.sku-list {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(193, 68, 14, 0.1);
    flex-wrap: wrap;
}

.sku-item {
    display: flex;
    flex-direction: column;
    background: var(--cream);
    padding: 0.6rem 1rem;
    border-radius: 3px;
    border: 1px solid rgba(193, 68, 14, 0.15);
}

.sku-weight {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--charcoal);
    text-transform: uppercase;
}

.sku-mrp {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--terracotta);
    margin-top: 0.15rem;
}

.sku-mrp.coming {
    color: var(--warm-grey);
    font-size: 0.78rem;
    font-style: italic;
}

/* ==================== OUR STORY SECTION ==================== */
#our-story {
    background: var(--cream);
    overflow: hidden;
}

#our-story::before {
    display: none;
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    align-items: start;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.story-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--forest);
    line-height: 1.6;
    margin-bottom: 2rem;
    padding-left: 1.2rem;
    border-left: 2px solid var(--terracotta);
}

.story-text p {
    font-size: 0.97rem;
    color: var(--warm-grey);
    line-height: 1.9;
    margin-bottom: 1.2rem;
    font-weight: 300;
}

.founder-quote {
    margin-top: 2.5rem;
    padding: 2rem 2rem 2rem 2.5rem;
    background: var(--forest-dark);
    border-left: 3px solid var(--gold);
    border-radius: 0 4px 4px 0;
    position: relative;
}

.founder-quote::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: 1.2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: rgba(196, 146, 42, 0.3);
    line-height: 1;
    pointer-events: none;
}

.founder-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.7;
    margin-bottom: 0.75rem !important;
    font-weight: 400 !important;
}

.founder-quote cite {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-style: normal;
}

.story-visual {
    position: sticky;
    top: 100px;
}

.story-image-stack {
    position: relative;
    height: 500px;
}

.story-img {
    position: absolute;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-deep);
}

.story-img-1 {
    top: 0;
    left: 0;
    width: 85%;
    height: 65%;
    background-image: url('../Images/ThekuaWithBackgorund.PNG');
    border: 4px solid white;
    z-index: 1;
}

.story-img-2 {
    bottom: 0;
    right: 0;
    width: 75%;
    height: 55%;
    background-image: url('../Images/khapse.ico');
    border: 4px solid white;
    z-index: 2;
}

.story-founders-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: var(--terracotta);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: var(--shadow-warm);
    border: 3px solid white;
    text-align: center;
}

.story-founders-badge i {
    font-size: 1rem;
    color: white;
    margin-bottom: 0.2rem;
}

.story-founders-badge span {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

/* ==================== CORE VALUES SECTION ==================== */
#core-values {
    background: var(--cream);
    padding-top: 90px;
    padding-bottom: 90px;
}

/* Override global h2 styles — no underline bar, plain centered title */
#core-values .cv-title {
    font-family: 'Jost', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 0;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

/* Suppress the global h2::after bar for this section's heading */
#core-values .cv-title::after {
    display: none;
}

#core-values .cv-subtitle {
    text-align: center;
    font-family: 'Jost', sans-serif;
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--warm-grey);
    margin-top: 0.6rem;
    margin-bottom: 3rem;
    letter-spacing: 0.01em;
}

.cv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Individual card */
.cv-card {
    background: white;
    border-radius: 20px;
    padding: 2.4rem 1.6rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.9rem;
    box-shadow: 0 2px 16px rgba(30, 30, 30, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 32px rgba(30, 30, 30, 0.11);
}

/* Large circular icon container — matches reference exactly */
.cv-icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.3rem;
    transition: background 0.3s ease;
}

.cv-icon-circle i {
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.cv-card:hover .cv-icon-circle i {
    transform: scale(1.12);
}

/* Per-icon colours matching the reference screenshot */
.cv-green {
    background: #edf7f1;
}

.cv-green i {
    color: #3aaf6e;
}

.cv-gold {
    background: #fdf4e3;
}

.cv-gold i {
    color: #c4922a;
}

.cv-rose {
    background: #fef0f0;
}

.cv-rose i {
    color: #e05c7a;
}

.cv-blue {
    background: #eef3fb;
}

.cv-blue i {
    color: #4a7fd4;
}

/* Card text */
.cv-card h3 {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.3;
    letter-spacing: 0;
}

.cv-card p {
    font-size: 0.82rem;
    color: var(--warm-grey);
    line-height: 1.7;
    font-weight: 300;
}

/* ==================== TESTIMONIALS SECTION ==================== */
#testimonials {
    background: var(--cream);
    padding: 80px 0 90px;
    /* zero horizontal — tracks go full-bleed */
    overflow: hidden;
}

/* Heading sits inside normal flow with horizontal padding */
.testi-heading {
    text-align: center;
    padding: 0 2.5rem;
    margin-bottom: 2.5rem;
}

/* Plain bold title — no Satisfy label, no terracotta bar */
.testi-h2 {
    font-family: 'Jost', sans-serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--charcoal);
    text-align: center;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

/* Suppress global h2::after bar */
.testi-h2::after {
    display: none;
}

/* The italic "love" word in gold/amber — Satisfy cursive */
.testi-love {
    font-family: 'Satisfy', cursive;
    font-style: normal;
    color: #c8861a;
    font-size: 1.1em;
}

/* Outer wrapper — clips overflow, adds gap between rows */
.testi-track-wrap {
    width: 100%;
    overflow: hidden;
    padding: 6px 0;
    /* small vertical breathing room */
}

/* Moving belt */
.testi-track {
    display: flex;
    gap: 14px;
    width: max-content;
    padding: 4px 0;
}

/* Row 1 scrolls left, Row 2 scrolls right */
.testi-left {
    animation: tScroll-left 30s linear infinite;
}

.testi-right {
    animation: tScroll-right 36s linear infinite;
}

.testi-track:hover {
    animation-play-state: paused;
}

@keyframes tScroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes tScroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Individual pill */
.testi-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 50px;
    padding: 8px 20px 8px 8px;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(30, 30, 30, 0.06);
    flex-shrink: 0;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    cursor: default;
}

.testi-pill:hover {
    box-shadow: 0 5px 18px rgba(30, 30, 30, 0.11);
    transform: translateY(-2px);
}

/* Circular avatar */
.testi-pill img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--cream-dark);
    flex-shrink: 0;
    display: block;
}

/* Review text */
.testi-pill span {
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    color: #3a3530;
    letter-spacing: 0.005em;
}

/* Mobile — keep the full-bleed but slightly smaller pills */
@media (max-width: 768px) {
    #testimonials {
        padding: 60px 0 70px;
    }

    .testi-h2 {
        font-size: 1.35rem;
    }

    .testi-pill span {
        font-size: 0.82rem;
    }

    .testi-pill img {
        width: 32px;
        height: 32px;
    }
}

/* ==================== WHERE TO BUY SECTION ==================== */
#where-to-buy {
    background: var(--cream);
    padding-top: 20px;
    /* sits tight below testimonials — same cream bg */
    padding-bottom: 90px;
}

/* Title — bold, no terracotta underline bar */
.wtb-title {
    font-family: 'Jost', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--charcoal);
    text-align: center;
    letter-spacing: -0.01em;
    margin-bottom: 0;
}

.wtb-title::after {
    display: none;
}

.wtb-subtitle {
    text-align: center;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--warm-grey);
    margin-top: 0.5rem;
    margin-bottom: 2.8rem;
    letter-spacing: 0.01em;
}

/* 3-column card grid */
.wtb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    max-width: 860px;
    margin: 0 auto;
}

/* White rounded card — matches reference proportions */
.wtb-card {
    background: white;
    border-radius: 16px;
    padding: 2.8rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 14px rgba(30, 30, 30, 0.07);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    min-height: 120px;
}

.wtb-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 28px rgba(30, 30, 30, 0.12);
}

/* Circular logo badge — same style as reference icons */
.wtb-logo-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wtb-logo-circle svg {
    width: 100%;
    height: 100%;
}

/* Amazon — black circle, orange arrow */
.wtb-amazon {
    background: #1a1a1a;
}

/* Daraz — orange-red circle */
.wtb-daraz {
    background: #f85606;
}

/* Store — terracotta circle */
.wtb-store {
    background: var(--terracotta);
}

.wtb-store-icon {
    font-size: 1.6rem;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .wtb-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
        gap: 1rem;
    }

    #where-to-buy {
        padding-bottom: 60px;
    }

    .wtb-title {
        font-size: 1.5rem;
    }
}

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

/* ==================== WHERE TO BUY SECTION ==================== */
#where-to-buy {
    background: var(--cream);
    padding-top: 80px;
    padding-bottom: 90px;
}

/* Plain bold title — no Satisfy label, no terracotta underline */
.wtb-title {
    font-family: 'Jost', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--charcoal);
    text-align: center;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 0;
}

.wtb-title::after {
    display: none;
}

.wtb-subtitle {
    text-align: center;
    font-family: 'Jost', sans-serif;
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--warm-grey);
    margin-top: 0.55rem;
    margin-bottom: 2.8rem;
    letter-spacing: 0.01em;
}

/* 3-column grid */
.wtb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

/* Each card — white, tall, rounded, logo centred */
.wtb-card {
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 2.8rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 130px;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    box-shadow: 0 2px 10px rgba(30, 30, 30, 0.05);
}

.wtb-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(30, 30, 30, 0.10);
}

/* Logo image inside card */
.wtb-logo-img {
    max-height: 52px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: none;
}

/* Slightly larger Flipkart logo for visual balance */
.wtb-flipkart-img {
    max-height: 80px;
    max-width: 200px;
}



/* Responsive */
@media (max-width: 768px) {
    .wtb-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    #where-to-buy {
        padding-top: 60px;
        padding-bottom: 70px;
    }

    .wtb-title {
        font-size: 1.5rem;
    }
}

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

/* ==================== GALLERY SECTION ==================== */
#gallery {
    background: var(--charcoal);
    overflow: hidden;
}

#gallery .section-label {
    color: var(--gold-light);
}

#gallery h2 {
    color: white;
}

#gallery h2::after {
    background: var(--terracotta);
}

.gallery-subtitle {
    text-align: center;
    font-family: 'Satisfy', cursive;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 3.5rem;
    margin-top: 0.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 280px;
    gap: 12px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    cursor: pointer;
}

.gallery-item--large {
    grid-column: span 2;
}

.gallery-item--wide {
    grid-column: span 2;
}

.gallery-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 12, 6, 0.75) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

/* ==================== BLOG / FAQ SECTION ==================== */
#blog {
    background: var(--parchment);
    padding-top: 120px;
    padding-bottom: 120px;
}

.blog-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: var(--warm-grey);
    font-weight: 300;
    margin-bottom: 4rem;
    margin-top: 1.5rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border: 1px solid rgba(193, 68, 14, 0.12);
    border-radius: 6px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid rgba(193, 68, 14, 0.1);
    border-right: 1px solid rgba(193, 68, 14, 0.1);
}

.faq-item:nth-child(even) {
    border-right: none;
}

.faq-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.faq-item:last-child:nth-child(odd) {
    grid-column: span 2;
    border-right: none;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.8rem;
    background: white;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.25s ease;
    -webkit-appearance: none;
    appearance: none;
}

.faq-question:hover {
    background: rgba(193, 68, 14, 0.04);
}

.faq-item.open .faq-question {
    background: rgba(193, 68, 14, 0.06);
}

.faq-question span {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: 0.01em;
    line-height: 1.4;
}

.faq-icon {
    font-size: 0.75rem;
    color: var(--terracotta);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    padding: 1rem 1.8rem 1.5rem;
    font-size: 0.87rem;
    color: var(--warm-grey);
    line-height: 1.8;
    font-weight: 300;
    border-top: 1px solid rgba(193, 68, 14, 0.08);
}

/* ==================== CONTACT SECTION ==================== */
#contact {
    background: var(--forest-dark);
    position: relative;
    overflow: hidden;
    color: white;
    padding-top: 120px;
    padding-bottom: 120px;
}

#contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(193, 68, 14, 0.12) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(196, 146, 42, 0.08) 0%, transparent 50%);
}

#contact::after {
    display: none;
}

#contact .container {
    position: relative;
    z-index: 2;
}

#contact h2 {
    color: white;
}

#contact h2::after {
    background: var(--terracotta);
}

.contact-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    font-size: 0.95rem;
    margin-bottom: 4rem;
    margin-top: 1.5rem;
    letter-spacing: 0.03em;
}

.contact-intro {
    display: none;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5px;
    background: rgba(255, 255, 255, 0.06);
    margin-bottom: 3rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.contact-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--terracotta);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.contact-card:hover::after {
    transform: scaleX(1);
}

.contact-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-icon-wrapper {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.contact-card:hover .contact-icon-wrapper {
    border-color: var(--terracotta);
    background: rgba(193, 68, 14, 0.15);
}

.contact-icon {
    font-size: 1.4rem;
    color: var(--gold-light);
}

.contact-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.contact-card p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.4rem;
    font-weight: 300;
}

.contact-card p strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    font-size: 0.88rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light) !important;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.contact-link:hover {
    border-bottom-color: var(--gold-light);
    gap: 0.8rem;
}

.hours-list {
    margin-top: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    gap: 1rem;
}

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

.day {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
}

.time {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    white-space: nowrap;
}

.social-connect {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.social-connect h4 {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 1.2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    border-color: var(--terracotta);
    background: var(--terracotta);
    color: white;
    transform: translateY(-2px);
}

/* ==================== FOOTER ==================== */
footer {
    background: #0F1F16;
    border-top: 1px solid rgba(193, 68, 14, 0.2);
}

.footer-tagline-main {
    text-align: center;
    padding: 1.8rem 2.5rem;
    font-family: 'Satisfy', cursive;
    font-size: 1.15rem;
    color: var(--gold-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1.3rem 2.5rem;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
}

.footer-tagline {
    font-family: 'Satisfy', cursive;
    font-size: 0.95rem;
    color: var(--gold-light);
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
    letter-spacing: 0.05em;
}

.footer-location {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ==================== ANIMATIONS ==================== */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger>* {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-stagger.visible>*:nth-child(1) {
    opacity: 1;
    transform: none;
    transition-delay: 0.05s;
}

.reveal-stagger.visible>*:nth-child(2) {
    opacity: 1;
    transform: none;
    transition-delay: 0.15s;
}

.reveal-stagger.visible>*:nth-child(3) {
    opacity: 1;
    transform: none;
    transition-delay: 0.25s;
}

.reveal-stagger.visible>*:nth-child(4) {
    opacity: 1;
    transform: none;
    transition-delay: 0.35s;
}

.reveal-stagger.visible>*:nth-child(5) {
    opacity: 1;
    transform: none;
    transition-delay: 0.45s;
}

.reveal-stagger.visible>*:nth-child(6) {
    opacity: 1;
    transform: none;
    transition-delay: 0.55s;
}

.reveal-stagger.visible>*:nth-child(7) {
    opacity: 1;
    transform: none;
    transition-delay: 0.65s;
}

.reveal-stagger.visible>*:nth-child(8) {
    opacity: 1;
    transform: none;
    transition-delay: 0.75s;
}

.reveal-stagger.visible>*:nth-child(9) {
    opacity: 1;
    transform: none;
    transition-delay: 0.85s;
}

.reveal-stagger.visible>*:nth-child(10) {
    opacity: 1;
    transform: none;
    transition-delay: 0.95s;
}

.reveal-stagger.visible>*:nth-child(11) {
    opacity: 1;
    transform: none;
    transition-delay: 1.05s;
}

/* ==================== TABLET ==================== */
@media (max-width: 1024px) {
    #about::before {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .about-text h2 {
        text-align: center;
    }

    .about-text h2::after {
        margin: 1.2rem auto 0;
    }

    .about-intro {
        border-left: none;
        padding-left: 0;
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }

    .about-image {
        height: 380px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .mv-divider {
        width: 100%;
        height: 1px;
        min-height: unset;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-visual {
        position: static;
    }

    .story-image-stack {
        height: 380px;
    }

    .cv-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 240px 240px 240px;
    }

    .gallery-item--large {
        grid-column: span 2;
    }

    .gallery-item--wide {
        grid-column: span 2;
    }

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

    .faq-item {
        border-right: none !important;
    }

    .faq-item:last-child:nth-child(odd) {
        grid-column: span 1;
    }

    .faq-item:nth-last-child(-n+2) {
        border-bottom: 1px solid rgba(193, 68, 14, 0.1);
    }

    .faq-item:last-child {
        border-bottom: none !important;
    }

    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
    }

    .slider-content>* {
        max-width: 65%;
    }

    .slider-title {
        font-size: 3.8rem !important;
    }

    .product-detail-grid.single {
        grid-template-columns: 1fr;
    }

    .product-detail-grid.single .product-detail-card {
        max-width: 600px;
    }
}

/* ==================== MOBILE ==================== */
@media (max-width: 768px) {
    .about-badge {
        width: 60px;
        height: 60px;
        bottom: -10px;
        left: -10px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-container {
        padding: 0 1.2rem;
        height: 60px;
    }

    .logo img {
        height: 80px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: #FAF4E8;
        flex-direction: column;
        padding: 0.5rem 0 1rem;
        gap: 0;
        border-top: 2px solid var(--terracotta);
        box-shadow: 0 10px 36px rgba(30, 30, 30, 0.14);
        z-index: 999;
        color: var(--charcoal);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a,
    nav:not(.scrolled) .nav-links a,
    nav:not(.scrolled) .nav-links li:not(:last-child) a {
        color: var(--charcoal) !important;
        padding: 0.85rem 1.8rem;
        border-radius: 0;
        font-size: 0.88rem;
        letter-spacing: 0.1em;
        background: transparent;
        width: 100%;
        display: block;
    }

    .nav-links a::after,
    nav:not(.scrolled) .nav-links a::after,
    .nav-links li:not(:last-child) a::after {
        display: none !important;
    }

    .nav-links a:hover,
    nav:not(.scrolled) .nav-links a:hover,
    nav.scrolled .nav-links li:not(:last-child) a:hover {
        background: rgba(193, 68, 14, 0.07) !important;
        color: var(--terracotta) !important;
        transform: none;
        box-shadow: none !important;
    }

    .nav-links .contact-button,
    nav:not(.scrolled) .nav-links .contact-button {
        background: var(--terracotta) !important;
        color: #ffffff !important;
        margin: 0.6rem 1.5rem 0 !important;
        border-radius: 3px !important;
        width: calc(100% - 3rem) !important;
        text-align: center !important;
        padding: 0.85rem 1rem !important;
        display: block !important;
    }

    .nav-links .contact-button:hover {
        background: var(--terracotta-dark) !important;
        color: #ffffff !important;
    }

    section {
        padding: 75px 1.2rem 60px;
    }

    h2 {
        font-size: 2.2rem;
    }

    #home {
        padding: 4.5rem 1rem 2rem;
    }

    .slider-container {
        border-radius: 8px;
    }

    .slider-dots {
        display: none !important;
    }

    .slider-content>* {
        max-width: 90%;
    }

    .slider-title {
        font-size: 2rem !important;
        margin-bottom: 0.5rem !important;
    }

    .slider-subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }

    .slide-description {
        font-size: 0.82rem;
        display: none;
    }

    .slide-button {
        padding: 0.65rem 1.3rem;
        font-size: 0.72rem;
        margin-top: 1rem !important;
    }

    .about-content {
        margin-bottom: 3rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .mv-card {
        padding: 2.5rem 1.8rem;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-grid.single {
        grid-template-columns: 1fr;
    }

    .category-title {
        font-size: 1.8rem;
    }

    .category-number {
        font-size: 3rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .story-visual {
        position: static;
    }

    .story-image-stack {
        height: 320px;
    }

    .cv-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    #core-values {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }

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

    .faq-item {
        border-right: none !important;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        background: none;
        gap: 0.9rem;
    }

    .about-image {
        height: 300px;
    }

    .footer-tagline-main {
        padding: 1.4rem 1.5rem;
        font-size: 0.95rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
        padding: 1.2rem 1.5rem;
    }

    .slider-container::before {
        display: none;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 2rem;
    }

    #home {
        padding: 4rem 0.6rem 1.5rem;
    }

    .slider-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.3rem !important;
    }

    .slider-subtitle {
        font-size: 0.72rem;
    }

    .slide-button {
        padding: 0.5rem 1rem;
        font-size: 0.68rem;
        margin-top: 0.7rem !important;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item {
        height: 200px;
    }

    .gallery-item--large,
    .gallery-item--wide {
        grid-column: span 1;
    }

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