/* ============================================
   Sugandh India Imports — Style System
   Burgundy + Blush · Minimalist · Magazine-style
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --color-burgundy: #7B2D3B;
    --color-burgundy-deep: #5C1F2B;
    --color-burgundy-light: #9E4050;
    --color-blush: #F5E6E0;
    --color-blush-light: #FBF5F3;
    --color-blush-mid: #F0D5CC;
    --color-cream: #FDF8F6;
    --color-white: #FFFFFF;
    --color-text: #1A1A1A;
    --color-text-muted: #6B6B6B;
    --color-text-light: #999999;
    --color-line: #E8DDD8;
    --color-line-light: #F0E8E5;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-cream);
    overflow-x: hidden;
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

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

/* --- Typography --- */
.section-eyebrow {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-burgundy);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.section-title--accent {
    color: var(--color-burgundy);
    font-style: italic;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 246, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-line-light);
    transition: transform var(--transition-base);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo-mark {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 1.75rem;
    color: var(--color-burgundy);
    line-height: 1;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--color-text);
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-burgundy);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--color-burgundy);
}

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

.nav-link--cta {
    color: var(--color-burgundy);
    border: 1px solid var(--color-burgundy);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.nav-link--cta::after {
    display: none;
}

.nav-link--cta:hover {
    background: var(--color-burgundy);
    color: var(--color-white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--color-text);
    transition: all var(--transition-base);
    transform-origin: center;
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active .nav-toggle-line:nth-child(2) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-cream);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-link {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.75rem;
    color: var(--color-text);
    transition: color var(--transition-fast);
}

.mobile-menu-link:hover {
    color: var(--color-burgundy);
}

.mobile-menu-link--cta {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-burgundy);
    border: 1px solid var(--color-burgundy);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-sm);
    margin-top: var(--space-sm);
}

/* --- Hero Section --- */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    background: var(--color-cream);
    position: relative;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-lg) var(--space-md);
}

.hero-asymmetric {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    min-height: calc(100vh - 72px - 80px);
}

.hero-text {
    padding-right: var(--space-md);
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-burgundy);
    margin-bottom: var(--space-md);
}

.hero-headline {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.05;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

.hero-headline--accent {
    color: var(--color-burgundy);
    font-style: italic;
}

.hero-subheadline {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    max-width: 480px;
    margin-bottom: var(--space-md);
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn--primary {
    background: var(--color-burgundy);
    color: var(--color-white);
    border: 1px solid var(--color-burgundy);
}

.btn--primary:hover {
    background: var(--color-burgundy-deep);
    border-color: var(--color-burgundy-deep);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(123, 45, 59, 0.2);
}

.btn--ghost {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-line);
}

.btn--ghost:hover {
    border-color: var(--color-burgundy);
    color: var(--color-burgundy);
}

.btn--large {
    padding: 1.125rem 2.5rem;
    font-size: 0.875rem;
}

/* --- Hero Stats --- */
.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.75rem;
    color: var(--color-burgundy);
    line-height: 1;
}

.hero-stat-label {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-light);
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-line);
    flex-shrink: 0;
}

/* --- Hero Visual --- */
.hero-visual {
    position: relative;
}

.hero-image-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    position: relative;
}

.hero-img {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.hero-img--1 {
    height: 520px;
}

.hero-img--2 {
    height: 300px;
}

.hero-img--3 {
    height: 240px;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.hero-img:hover img {
    transform: scale(1.03);
}

/* Decorative element */
.hero-visual::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--color-blush-mid);
    border-radius: 50%;
    z-index: -1;
}

/* --- Hero Line --- */
.hero-line {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.hero-line::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: var(--color-line);
}

/* --- Marquee --- */
.marquee {
    overflow: hidden;
    background: var(--color-burgundy);
    padding: 1rem 0;
}

.marquee-track {
    display: flex;
    gap: var(--space-sm);
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-item {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
}

.marquee-dot {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Products Section --- */
.products {
    padding: var(--space-2xl) 0;
    background: var(--color-cream);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-lg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-line-light);
    transition: all var(--transition-base);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(123, 45, 59, 0.08);
    border-color: var(--color-blush-mid);
}

.product-card-image {
    overflow: hidden;
    height: 240px;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-card-content {
    padding: var(--space-md);
}

.product-card-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.375rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.product-card-desc {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* --- Divider --- */
.divider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.divider-line {
    width: 100%;
    height: 1px;
    background: var(--color-line);
}

/* --- About Section --- */
.about {
    padding: var(--space-2xl) 0;
    background: var(--color-blush-light);
}

.about-asymmetric {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.about-image {
    overflow: hidden;
    border-radius: var(--radius-lg);
    height: 600px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-content {
    padding-left: var(--space-md);
}

.about-text {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-line);
}

.about-value {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.9375rem;
    color: var(--color-text);
}

.about-value-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-blush-mid);
    border-radius: 50%;
    color: var(--color-burgundy);
    flex-shrink: 0;
}

/* --- Visit Section --- */
.visit {
    padding: var(--space-2xl) 0;
    background: var(--color-cream);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.visit-info {
    padding-right: var(--space-md);
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
    padding: var(--space-md) 0;
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
}

.visit-detail {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.visit-detail-label {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-light);
}

.visit-detail-value {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.25rem;
    color: var(--color-text);
    line-height: 1.5;
}

.visit-detail-value--link {
    color: var(--color-burgundy);
    transition: color var(--transition-fast);
}

.visit-detail-value--link:hover {
    color: var(--color-burgundy-deep);
    text-decoration: underline;
}

/* --- Map Placeholder --- */
.visit-map {
    height: 100%;
    min-height: 400px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: var(--color-blush);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    border: 1px solid var(--color-line);
    text-align: center;
    padding: var(--space-md);
    transition: all var(--transition-base);
}

.map-placeholder:hover {
    border-color: var(--color-burgundy);
    background: var(--color-blush-light);
}

.map-icon {
    color: var(--color-burgundy);
}

.map-placeholder p {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.25rem;
    color: var(--color-text);
}

.map-link {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-burgundy);
    border: 1px solid var(--color-burgundy);
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.map-link:hover {
    background: var(--color-burgundy);
    color: var(--color-white);
}

/* --- Footer --- */
.footer {
    background: var(--color-text);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-lg) 0 var(--space-md);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-logo-mark {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 2.5rem;
    color: var(--color-blush);
    line-height: 1;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-tagline {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 300px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: var(--space-md);
}

.footer-link {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--color-blush);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.footer-copy,
.footer-address {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

/* --- Reveal Animation --- */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-asymmetric {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .hero-text {
        padding-right: 0;
        order: 1;
    }

    .hero-visual {
        order: 2;
        max-width: 560px;
    }

    .hero-image-grid {
        flex-direction: row;
    }

    .hero-img--1 {
        flex: 1;
        height: 360px;
    }

    .hero-img--2 {
        flex: 1;
        height: 200px;
    }

    .hero-img--3 {
        flex: 1;
        height: 200px;
    }

    .hero-headline {
        font-size: clamp(2rem, 4vw, 3.5rem);
    }

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

    .about-asymmetric {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .about-image {
        height: 400px;
        order: -1;
    }

    .about-content {
        padding-left: 0;
    }

    .visit-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .visit-info {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    :root {
        --space-lg: 3rem;
        --space-xl: 4rem;
        --space-2xl: 5rem;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
    }

    .hero-container {
        padding: var(--space-md) var(--space-sm);
    }

    .hero-asymmetric {
        min-height: auto;
    }

    .hero-text {
        padding-right: 0;
    }

    .hero-headline {
        font-size: clamp(1.75rem, 7vw, 2.75rem);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: var(--space-sm);
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-image-grid {
        flex-direction: column;
    }

    .hero-img--1,
    .hero-img--2,
    .hero-img--3 {
        height: 220px;
    }

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

    .product-card-image {
        height: 200px;
    }

    .about-image {
        height: 300px;
    }

    .footer-top {
        flex-direction: column;
        gap: var(--space-md);
    }

    .footer-links {
        flex-wrap: wrap;
        gap: var(--space-sm);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-visual::before {
        display: none;
    }
}
