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

:root {
    --bg: #140a0d;
    --ink: #0c0608;
    --surface: #1d1014;
    --card: rgba(232, 201, 131, 0.045);
    --card-border: rgba(232, 201, 131, 0.16);
    --gold: #c9a15a;
    --gold-bright: #eccf8d;
    --wine: #6e1f36;
    --wine-bright: #9c2f4f;
    --blush: #e6c9c2;
    --text: #f4ecdf;
    --text-muted: #b9a89c;
    --gradient-gold: linear-gradient(120deg, #9c743a 0%, #eccf8d 45%, #c9a15a 75%, #f2dca0 100%);
    --gradient-wine: linear-gradient(135deg, var(--wine) 0%, var(--wine-bright) 100%);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Jost', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Ambient jewel-tone glow, subtle, not neon */
body::before, body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.16;
    z-index: -2;
    animation: float 22s ease-in-out infinite;
    pointer-events: none;
}
body::before { width: 520px; height: 520px; background: var(--wine); top: -180px; left: -160px; }
body::after { width: 480px; height: 480px; background: var(--gold); bottom: -140px; right: -120px; animation-delay: -11s; }
@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 30px) scale(1.08); }
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--text);
}

/* ===== Zari border motif — the signature element =====
   A repeating gold paisley/dot strip evoking a saree's woven border,
   used to frame the hero reel and separate sections. */
.zari-border {
    height: 14px;
    width: 100%;
    background-image:
        radial-gradient(circle at 6px 7px, rgba(232,201,131,0.55) 1.6px, transparent 1.7px),
        linear-gradient(90deg, transparent, rgba(232,201,131,0.35) 15%, rgba(232,201,131,0.35) 85%, transparent);
    background-size: 24px 14px, 100% 1px;
    background-repeat: repeat-x, no-repeat;
    background-position: 0 center, 0 center;
    opacity: 0.85;
}

/* ===== Nav ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(12, 6, 8, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--card-border);
}
.nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.55rem 1.5rem;
}
.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
    flex-shrink: 0;
}
.brand-logo {
    display: block;
    height: 52px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    object-position: left center;
}
/* Text wordmark (footer, CMS login) */
footer .brand,
span.brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.2;
    background: var(--gradient-gold);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 7s ease infinite;
}
@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.nav-toggle {
    display: none;
    border: none;
    background: transparent;
    color: var(--gold-bright);
    font-size: 1.4rem;
    cursor: pointer;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 2px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
    border-radius: 2px;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
    background: var(--gradient-wine);
    color: #fff !important;
    padding: 0.55rem 1.3rem;
    border-radius: 999px;
    font-weight: 600 !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { filter: brightness(1.12); }

@media (max-width: 860px) {
    .nav-toggle { display: block; }
    .brand-logo { height: 44px; max-width: 140px; }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: rgba(12,6,8,0.97);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        border-bottom: 1px solid var(--card-border);
    }
    .nav-links.open { max-height: 420px; }
    .nav-links a {
        width: 100%;
        padding: 1rem 1.5rem;
        border-top: 1px solid var(--card-border);
    }
    .nav-links a::after { display: none; }
    .nav-cta { border-radius: 0; text-align: center; }
}

/* ===== Hero ===== */
.hero {
    padding: 3.2rem 1.5rem 2.5rem;
    text-align: center;
}
.hero-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-bright);
    border: 1px solid var(--card-border);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.2rem;
    animation: fadeInUp 0.8s ease both;
}
.hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-style: italic;
    background: var(--gradient-gold);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 7s ease infinite, fadeInUp 0.8s ease 0.1s both;
    letter-spacing: -0.01em;
}
.hero-subtitle {
    max-width: 640px;
    margin: 0.9rem auto 0;
    color: var(--text-muted);
    font-size: 1.1rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Media Reel (the main showcase area) ===== */
.reel-section { padding: 1.5rem 0 3rem; }
.reel-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.reel {
    display: flex;
    gap: 1.1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 1.4rem 0.2rem 1.6rem;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
}
.reel::-webkit-scrollbar { height: 8px; }
.reel::-webkit-scrollbar-thumb { background: var(--card-border); border-radius: 4px; }
.reel::-webkit-scrollbar-thumb:hover { background: var(--gold); }

.reel-item {
    position: relative;
    flex: 0 0 auto;
    width: 286px; /* ~30% larger than 220px */
    aspect-ratio: 9 / 15;
    scroll-snap-align: start;
    border-radius: 18px;
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--card-border);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.reel-item:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 201, 131, 0.45);
    box-shadow: 0 20px 45px rgba(0,0,0,0.45);
}
.reel-item video, .reel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1;
    transition: opacity 0.55s ease;
}
.reel-item.is-loading video,
.reel-item.is-loading img {
    opacity: 0;
}
.reel-item[data-media-type] {
    cursor: zoom-in;
}

/* Elegant gold loader while large CMS images download */
.media-loader {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse at 50% 40%, rgba(110, 31, 54, 0.35), transparent 65%),
        linear-gradient(160deg, #1a0c10 0%, #241318 50%, #160a0e 100%);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.media-loader::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 35%,
        rgba(236, 207, 141, 0.09) 50%,
        transparent 65%
    );
    background-size: 220% 100%;
    animation: media-shimmer 2.1s ease-in-out infinite;
    pointer-events: none;
}
.media-loader-ring {
    position: relative;
    z-index: 1;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid rgba(232, 201, 131, 0.18);
    border-top-color: var(--gold-bright);
    border-right-color: rgba(236, 207, 141, 0.55);
    animation: media-spin 0.95s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    box-shadow: 0 0 18px rgba(201, 161, 90, 0.12);
}
.media-loader-dot {
    position: absolute;
    z-index: 1;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-bright);
    box-shadow: 0 0 10px rgba(236, 207, 141, 0.55);
    animation: media-pulse 1.4s ease-in-out infinite;
}
.reel-item:not(.is-loading) .media-loader,
.lightbox-slide:not(.is-loading) .media-loader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.reel-item.is-loading .caption,
.reel-item.is-loading .sound-btn {
    opacity: 0;
    transition: opacity 0.4s ease;
}
@keyframes media-shimmer {
    0% { background-position: 120% 0; }
    100% { background-position: -120% 0; }
}
@keyframes media-spin {
    to { transform: rotate(360deg); }
}
@keyframes media-pulse {
    0%, 100% { opacity: 0.45; transform: scale(0.85); }
    50% { opacity: 1; transform: scale(1); }
}
.reel-item .caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 0.9rem 0.8rem 0.7rem;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
    font-size: 0.82rem;
    color: var(--blush);
    font-weight: 500;
    pointer-events: none;
}
.sound-btn {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(12,6,8,0.55);
    backdrop-filter: blur(6px);
    color: var(--gold-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    transition: background 0.25s ease, transform 0.25s ease;
}
.sound-btn:hover { background: rgba(12,6,8,0.8); transform: scale(1.08); }

.reel-item.placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    color: var(--text-muted);
    background:
        radial-gradient(circle at 6px 7px, rgba(232,201,131,0.16) 1.4px, transparent 1.5px) 0 0/22px 22px,
        var(--card);
}
.reel-item.placeholder i {
    font-size: 1.6rem;
    color: rgba(232, 201, 131, 0.45);
}
.reel-item.placeholder span {
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.75;
}
.reel-hint {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: -0.4rem;
    opacity: 0.8;
}

/* ===== Generic sections ===== */
main.page { max-width: 1100px; margin: 0 auto; padding: 4.5rem 1.5rem; }
.section-eyebrow {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.7rem;
}
section.reveal, main.page > .reveal { animation: fadeInUp 0.8s ease both; }
.reveal.visible { opacity: 1; transform: translateY(0); }

h2.section-title {
    font-size: clamp(2rem, 4vw, 2.7rem);
    margin-bottom: 1.6rem;
    position: relative;
    display: inline-block;
}
h2.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px; left: 0;
    width: 56px; height: 3px;
    border-radius: 4px;
    background: var(--gradient-gold);
}

.about-section { text-align: center; }
.about-lede {
    max-width: 760px;
    margin: 0 auto 1.4rem;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--blush);
    font-family: 'Cormorant Garamond', serif;
}
.about-body {
    max-width: 720px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.02rem;
}
.about-body + .about-body { margin-top: 1rem; }

/* ===== Feature panels ===== */
.panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.6rem;
    margin-top: 2.4rem;
}
.panel {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.panel:hover { transform: translateY(-6px); border-color: rgba(232,201,131,0.4); }
.panel h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: var(--gold-bright);
}
.panel ul { list-style: none; }
.panel li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 0.9rem;
    color: var(--text-muted);
    font-size: 0.98rem;
}
.panel li i {
    color: var(--gold);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* ===== Contact ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.4rem;
    margin-top: 2rem;
}
.contact-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 1.8rem;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232,201,131,0.45);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.contact-card i {
    font-size: 1.8rem;
    color: var(--gold-bright);
    margin-bottom: 0.8rem;
    display: block;
}
.contact-card .label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.3rem;
}
.contact-card .value { font-size: 1.05rem; font-weight: 500; }
.contact-card.whatsapp:hover { border-color: #25D366; }
.contact-card.instagram:hover { border-color: #d6249f; }

/* ===== Footer ===== */
footer {
    background: var(--ink);
    text-align: center;
    padding: 3rem 1.5rem 2.2rem;
    border-top: 1px solid var(--card-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}
footer .brand { font-size: 1.4rem; display: inline-block; margin-bottom: 0.5rem; }
footer a { color: var(--gold-bright); text-decoration: none; font-weight: 600; }
footer a:hover { color: var(--blush); }

/* ===== Flash messages ===== */
.flash-container { max-width: 1100px; margin: 1rem auto 0; padding: 0 1.5rem; }
.flash-msg {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-left: 4px solid var(--gold);
    padding: 1rem 1.25rem;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.4s ease both;
}
.flash-msg.error { border-left-color: var(--wine-bright); }

@media (max-width: 600px) {
    main.page { padding: 3rem 1.2rem; }
    .reel-item { width: 215px; } /* ~30% larger than 165px */
}

/* ===== Fullscreen image lightbox ===== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 4, 6, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    touch-action: none;
    user-select: none;
}
.lightbox.open {
    opacity: 1;
    visibility: visible;
}
.lightbox-stage {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.lightbox-track {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}
.lightbox-track.dragging {
    transition: none;
}
.lightbox-slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4.5rem 4rem 3.5rem;
    box-sizing: border-box;
    overflow: hidden;
}
.lightbox-media-loader {
    position: absolute;
    inset: 0;
    z-index: 3;
    border-radius: 0;
    background:
        radial-gradient(ellipse at 50% 45%, rgba(110, 31, 54, 0.28), transparent 60%),
        rgba(8, 4, 6, 0.55);
}
.lightbox-slide.is-loading .lightbox-zoom {
    opacity: 0;
}
.lightbox-slide .lightbox-zoom {
    opacity: 1;
    transition: opacity 0.45s ease;
}
.lightbox-zoom {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    transform-origin: center center;
    will-change: transform;
    transition: transform 0.2s ease;
}
.lightbox-zoom.dragging,
.lightbox-zoom.pinching {
    transition: none;
}
.lightbox-slide img,
.lightbox-slide video {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
    pointer-events: none;
    background: #000;
    -webkit-user-drag: none;
    user-select: none;
}
.lightbox.zoomed .lightbox-prev,
.lightbox.zoomed .lightbox-next {
    opacity: 0.35;
    pointer-events: none;
}
.lightbox-mute {
    top: 1rem;
    right: 4.2rem;
    display: none;
}
.lightbox-mute.visible {
    display: flex;
}
.lightbox-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1.4rem;
    text-align: center;
    color: var(--blush);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0 1.5rem;
    pointer-events: none;
    opacity: 0.95;
}
.lightbox-counter {
    position: absolute;
    top: 1.15rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    text-transform: uppercase;
    pointer-events: none;
}
.lightbox-btn {
    position: absolute;
    z-index: 2;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(232, 201, 131, 0.3);
    background: rgba(12, 6, 8, 0.55);
    backdrop-filter: blur(8px);
    color: var(--gold-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.05rem;
    transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.lightbox-btn:hover {
    background: rgba(12, 6, 8, 0.85);
    border-color: rgba(232, 201, 131, 0.55);
    transform: scale(1.06);
}
.lightbox-btn:disabled {
    opacity: 0.3;
    cursor: default;
    transform: none;
}
.lightbox-close {
    top: 1rem;
    right: 1rem;
}
.lightbox-prev {
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
}
.lightbox-next {
    right: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
}
.lightbox-prev:hover,
.lightbox-next:hover {
    transform: translateY(-50%) scale(1.06);
}
.lightbox-hint {
    position: absolute;
    bottom: 0.55rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.72rem;
    color: rgba(185, 168, 156, 0.55);
    letter-spacing: 0.06em;
    pointer-events: none;
    white-space: nowrap;
}
.lightbox-hint .sep {
    margin: 0 0.35em;
    opacity: 0.5;
}

@media (max-width: 700px) {
    .lightbox-slide { padding: 4rem 1rem 3.2rem; }
    .lightbox-btn { width: 40px; height: 40px; font-size: 0.95rem; }
    .lightbox-prev { left: 0.4rem; }
    .lightbox-next { right: 0.4rem; }
    .lightbox-mute { right: 3.6rem; }
    .lightbox-hint { display: none; }
}

body.lightbox-open {
    overflow: hidden;
}