/* ============================================
   MEGHNA'S HENNA ART — Modern Elegant Redesign
   ============================================ */

/* === VARIABLES & RESET === */
:root {
    --clr-primary: #6B1A1A;
    --clr-primary-dark: #4A0E0E;
    --clr-primary-light: #8B2E2E;
    --clr-gold: #C4922A;
    --clr-gold-light: #E8C97A;
    --clr-gold-faint: rgba(196, 146, 42, 0.12);
    --clr-cream: #FDF8F0;
    --clr-warm-white: #FFFCF7;
    --clr-bg-alt: #F7EFE5;
    --clr-dark: #1A0808;
    --clr-text: #3D1515;
    --clr-muted: #7A6060;
    --clr-border: #E8D5C4;

    --font-display: 'Cormorant Garamond', serif;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;

    --ease: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-fast: all 0.2s ease;

    --shadow-sm: 0 4px 20px rgba(107, 26, 26, 0.08);
    --shadow-md: 0 8px 40px rgba(107, 26, 26, 0.12);
    --shadow-lg: 0 20px 60px rgba(107, 26, 26, 0.16);
    --shadow-gold: 0 8px 30px rgba(196, 146, 42, 0.25);

    --nav-h: 76px;
    --radius: 12px;
    --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--clr-warm-white);
    color: var(--clr-text);
    line-height: 1.7;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: var(--clr-gold);
    color: #fff;
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
    background: #A57820;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(196, 146, 42, 0.4);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--clr-primary);
    border: 1.5px solid var(--clr-primary);
}
.btn-outline:hover {
    background: var(--clr-primary);
    color: #fff;
}

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

/* === SECTION HEADERS === */
section { padding: 110px 0; }

.section-header { text-align: center; margin-bottom: 70px; }

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: 12px;
}
.section-eyebrow.light { color: rgba(255,255,255,0.7); }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--clr-primary);
    line-height: 1.2;
    margin-bottom: 16px;
}

.title-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 16px auto 20px;
}
.title-ornament span {
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--clr-gold));
}
.title-ornament span:last-child {
    background: linear-gradient(to left, transparent, var(--clr-gold));
}
.title-ornament i { color: var(--clr-gold); font-size: 0.9rem; }

.section-subtitle { color: var(--clr-muted); font-size: 1rem; margin-top: 8px; }

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    transition: var(--ease);
    padding: 0;
}
.navbar.transparent {
    background: transparent;
}
.navbar.scrolled {
    background: rgba(255, 252, 247, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--clr-border), var(--shadow-sm);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.nav-brand .logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    transition: var(--ease);
}
.nav-brand-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--clr-primary);
    transition: var(--ease);
    white-space: nowrap;
}
.navbar.transparent .nav-brand-name { color: #fff; }
.navbar.transparent .nav-brand-name { text-shadow: 0 1px 8px rgba(0,0,0,0.4); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--clr-text);
    transition: var(--ease-fast);
    position: relative;
    padding: 4px 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1.5px;
    background: var(--clr-gold);
    transition: var(--ease-fast);
}
.nav-link:hover, .nav-link.active { color: var(--clr-primary); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.navbar.transparent .nav-link { color: rgba(255,255,255,0.85); }
.navbar.transparent .nav-link:hover { color: #fff; }

.nav-cta-link {
    background: var(--clr-gold);
    color: #fff !important;
    padding: 9px 22px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: var(--ease);
}
.nav-cta-link::after { display: none; }
.nav-cta-link:hover {
    background: #A57820;
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--clr-primary);
    border-radius: 2px;
    transition: var(--ease-fast);
}
.navbar.transparent .nav-toggle span { background: #fff; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO === */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #3D0C0C 0%, #6B1A1A 45%, #8B3030 70%, #5A2020 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(196, 146, 42, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(196, 146, 42, 0.04) 0%, transparent 40%);
    pointer-events: none;
}
.hero-bg-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C4922A' fill-opacity='0.03'%3E%3Cpath d='M30 0 Q35 10 30 20 Q25 10 30 0 M10 30 Q20 25 30 30 Q20 35 10 30 M50 30 Q40 25 30 30 Q40 35 50 30 M30 60 Q35 50 30 40 Q25 50 30 60'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
    flex: 1;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: calc(var(--nav-h) + 60px) 24px 80px;
    width: 100%;
    gap: 80px;
}

.hero-text { flex: 1; max-width: 600px; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--clr-gold-light);
    margin-bottom: 24px;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 30px; height: 1px;
    background: var(--clr-gold-light);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 28px;
}
.hero-headline em {
    font-style: italic;
    color: var(--clr-gold-light);
}

.hero-description {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    max-width: 460px;
    line-height: 1.8;
    margin-bottom: 44px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; }

/* Hero Medallion */
.hero-visual {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-medallion {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.medallion-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(196, 146, 42, 0.3);
    animation: medallion-spin 30s linear infinite;
}
.medallion-ring.r1 { width: 100%; height: 100%; animation-duration: 40s; }
.medallion-ring.r2 { width: 78%; height: 78%; border-style: dashed; animation-direction: reverse; animation-duration: 25s; }
.medallion-ring.r3 { width: 58%; height: 58%; border-color: rgba(196, 146, 42, 0.5); animation-duration: 20s; }

@keyframes medallion-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.medallion-inner {
    position: relative;
    z-index: 2;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(196, 146, 42, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(196, 146, 42, 0.15), inset 0 0 40px rgba(0,0,0,0.2);
}
.medallion-logo { width: 160px; height: 160px; object-fit: contain; filter: drop-shadow(0 4px 20px rgba(0,0,0,0.4)); }

/* Hero scroll indicator */
.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-bottom: 36px;
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--ease-fast);
    align-self: center;
}
.hero-scroll:hover { color: var(--clr-gold-light); }
.scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); transform-origin: top; }
}

/* === STATS STRIP === */
.stats-strip {
    background: var(--clr-primary-dark);
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 28px 0;
    gap: 20px;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
}
.stat-item i {
    font-size: 1.5rem;
    color: var(--clr-gold);
    opacity: 0.9;
}
.stat-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 3px;
}
.stat-item span {
    display: block;
    font-size: 0.75rem;
    opacity: 0.6;
    letter-spacing: 0.05em;
}

/* === ABOUT === */
.about {
    background: var(--clr-warm-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrap { position: relative; }

.about-img-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-frame::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--clr-gold), transparent 60%);
    z-index: -1;
}
.about-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
}

.about-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    background: var(--clr-gold);
    color: #fff;
    padding: 16px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    box-shadow: var(--shadow-gold);
    white-space: nowrap;
}
.about-badge i { font-size: 1rem; }

.about-content h3 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 400;
    color: var(--clr-primary);
    line-height: 1.3;
    margin-bottom: 20px;
    margin-top: 10px;
}
.about-content p {
    color: var(--clr-muted);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 18px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}
.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--clr-cream);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    transition: var(--ease);
}
.highlight-item:hover {
    border-color: var(--clr-gold);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}
.highlight-icon {
    width: 36px; height: 36px;
    background: var(--clr-gold-faint);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--clr-gold);
    font-size: 0.9rem;
    flex-shrink: 0;
}
.highlight-item strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-primary);
    margin-bottom: 2px;
}
.highlight-item span {
    display: block;
    font-size: 0.78rem;
    color: var(--clr-muted);
}

/* === SERVICES === */
.services {
    background: var(--clr-bg-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--clr-warm-white);
    border-radius: var(--radius-lg);
    padding: 44px 32px 36px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--clr-border);
    transition: var(--ease);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--clr-primary), var(--clr-gold));
    transform: scaleX(0);
    transition: var(--ease);
    transform-origin: left;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-num {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
    color: var(--clr-gold-faint);
    line-height: 1;
    margin-bottom: 12px;
    color: rgba(196, 146, 42, 0.15);
    user-select: none;
}

.service-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--clr-primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--clr-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-list { list-style: none; border-top: 1px solid var(--clr-border); padding-top: 18px; }
.service-list li {
    font-size: 0.83rem;
    color: var(--clr-muted);
    padding: 7px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--clr-border);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
    content: '';
    display: block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--clr-gold);
    flex-shrink: 0;
}

/* === ORGANIC HENNA === */
.organic-section {
    background: var(--clr-warm-white);
}

.organic-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.organic-img-wrap {
    position: sticky;
    top: calc(var(--nav-h) + 30px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.organic-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(196, 146, 42, 0.2);
    pointer-events: none;
}
.organic-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--ease);
}
.organic-img-wrap:hover .organic-img { transform: scale(1.03); }

.organic-intro {
    font-size: 0.95rem;
    color: var(--clr-muted);
    line-height: 1.9;
    margin-bottom: 40px;
}

.benefits-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 40px; }

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--clr-border);
    transition: var(--ease-fast);
}
.benefit-item:first-child { padding-top: 0; }
.benefit-item:last-child { border-bottom: none; }
.benefit-item:hover { padding-left: 8px; }

.benefit-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--clr-gold-faint);
    border: 1px solid rgba(196, 146, 42, 0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--clr-gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--clr-primary);
    margin-bottom: 4px;
    font-weight: 600;
}
.benefit-text p { font-size: 0.83rem; color: var(--clr-muted); line-height: 1.7; }

.organic-quote {
    background: linear-gradient(135deg, var(--clr-primary-dark), var(--clr-primary));
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    color: #fff;
    position: relative;
}
.organic-quote i {
    font-size: 2.5rem;
    color: var(--clr-gold);
    opacity: 0.6;
    display: block;
    margin-bottom: 16px;
}
.organic-quote p {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.9);
}
.organic-quote cite {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--clr-gold-light);
    font-style: normal;
}

/* === GALLERY === */
.gallery {
    background: var(--clr-bg-alt);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 26px;
    border-radius: 50px;
    border: 1.5px solid var(--clr-border);
    background: var(--clr-warm-white);
    color: var(--clr-muted);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: var(--ease-fast);
}
.filter-btn:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}
.filter-btn.active {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 1;
    background: var(--clr-border);
    cursor: pointer;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(74, 14, 14, 0.85) 0%, rgba(74, 14, 14, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: var(--ease);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: var(--clr-gold-light); font-size: 1.5rem; transform: translateY(10px); transition: var(--ease); }
.gallery-overlay span {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transform: translateY(10px);
    transition: var(--ease) 0.05s;
}
.gallery-item:hover .gallery-overlay i,
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }

.gallery-item.hidden { display: none; }

/* === TESTIMONIALS === */
.testimonials {
    background: var(--clr-cream);
}

.testimonial-carousel {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.carousel-btn {
    flex-shrink: 0;
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1.5px solid var(--clr-border);
    background: var(--clr-warm-white);
    color: var(--clr-primary);
    font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center;
    transition: var(--ease-fast);
    box-shadow: var(--shadow-sm);
}
.carousel-btn:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: #fff;
}

.testimonial-track-wrap { flex: 1; overflow: hidden; }

.testimonial-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--clr-warm-white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow-sm);
    transition: var(--ease);
    position: relative;
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-quote-mark {
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--clr-gold);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: -20px;
    margin-top: -16px;
    user-select: none;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--clr-muted);
    line-height: 1.85;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.testimonial-author h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--clr-primary);
    margin-bottom: 2px;
}
.testimonial-author span {
    font-size: 0.75rem;
    color: var(--clr-muted);
    letter-spacing: 0.04em;
}
.testimonial-stars { color: #F5A623; font-size: 0.75rem; letter-spacing: 2px; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}
.dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--clr-border);
    border: none;
    cursor: pointer;
    transition: var(--ease-fast);
    padding: 0;
}
.dot.active {
    background: var(--clr-primary);
    width: 24px;
    border-radius: 4px;
}

/* === CONTACT === */
.contact { padding: 0; }

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 700px;
}

.contact-info-panel {
    background: linear-gradient(135deg, var(--clr-primary-dark) 0%, var(--clr-primary) 100%);
    padding: 100px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-info-panel h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    margin-top: 8px;
}
.contact-info-panel h2 em { font-style: italic; color: var(--clr-gold-light); }
.contact-info-panel > p {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 48px;
}

.contact-list { display: flex; flex-direction: column; gap: 28px; margin-bottom: 48px; }

.contact-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.contact-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: rgba(196, 146, 42, 0.15);
    border: 1px solid rgba(196, 146, 42, 0.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--clr-gold-light);
    font-size: 1rem;
    flex-shrink: 0;
}
.contact-item strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
}
.contact-item span, .contact-item a {
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
    line-height: 1.6;
    text-decoration: none;
    transition: var(--ease-fast);
}
.contact-item a:hover { color: var(--clr-gold-light); }

.contact-social { display: flex; gap: 12px; }
.contact-social a {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    transition: var(--ease);
}
.contact-social a:hover {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
    color: #fff;
    transform: translateY(-3px);
}

.contact-form-panel {
    background: var(--clr-warm-white);
    padding: 80px 60px;
    display: flex;
    align-items: center;
}

.contact-form { width: 100%; max-width: 500px; }
.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--clr-primary);
    margin-bottom: 32px;
}

.form-field { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-muted);
    margin-bottom: 8px;
}
.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--clr-text);
    background: #fff;
    transition: var(--ease-fast);
    appearance: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--clr-gold);
    box-shadow: 0 0 0 3px rgba(196, 146, 42, 0.1);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--clr-border); }
.form-field textarea { resize: vertical; min-height: 110px; }

.contact-form .btn-gold { margin-top: 8px; font-size: 0.88rem; }

.form-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    display: none;
}
.form-message.success { background: #d4edda; color: #155724; display: block; }
.form-message.error { background: #f8d7da; color: #721c24; display: block; }
.form-message.info { background: #fff3cd; color: #856404; display: block; }

/* === FOOTER === */
.site-footer {
    background: var(--clr-dark);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
    opacity: 0.9;
}
.footer-brand h3 {
    font-family: var(--font-heading);
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    margin-bottom: 12px;
}
.footer-brand p {
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--ease-fast);
}
.footer-social a:hover {
    background: var(--clr-gold);
    color: #fff;
}

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-heading);
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--ease-fast);
}
.footer-links a:hover { color: var(--clr-gold-light); padding-left: 4px; }

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
    margin-bottom: 12px;
    line-height: 1.6;
}
.footer-contact p i { color: var(--clr-gold); font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.4); text-decoration: none; transition: var(--ease-fast); }
.footer-contact a:hover { color: var(--clr-gold-light); }

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    color: rgba(255,255,255,0.25);
    font-size: 0.78rem;
}

/* === FLOATING ELEMENTS === */
.whatsapp-float {
    position: fixed;
    bottom: 100px; right: 30px;
    width: 52px; height: 52px;
    border-radius: 50%;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--ease);
    text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5); }

.scroll-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--clr-primary);
    color: #fff;
    font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: var(--ease);
    z-index: 999;
    box-shadow: var(--shadow-md);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--clr-gold); transform: translateY(-3px); }

/* === LIGHTBOX === */
.lightbox {
    position: fixed; inset: 0;
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: var(--ease);
}
.lightbox.open { opacity: 1; visibility: visible; }

.lightbox-backdrop {
    position: absolute; inset: 0;
    background: rgba(26, 8, 8, 0.95);
    backdrop-filter: blur(8px);
}

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

.lightbox-img {
    max-width: min(800px, 80vw);
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}

.lightbox-close {
    position: fixed;
    top: 24px; right: 24px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    transition: var(--ease-fast);
    z-index: 2;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-nav {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    transition: var(--ease-fast);
    flex-shrink: 0;
}
.lightbox-nav:hover { background: var(--clr-gold); }

.lightbox-caption {
    position: absolute;
    bottom: -30px; left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* === SCROLL REVEAL ANIMATION === */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .testimonial-card { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 900px) {
    .hero-inner { flex-direction: column; text-align: center; padding-top: calc(var(--nav-h) + 40px); gap: 50px; }
    .hero-text { max-width: 100%; }
    .hero-eyebrow { justify-content: center; }
    .hero-description { margin-left: auto; margin-right: auto; }
    .hero-cta { justify-content: center; }
    .hero-medallion { width: 280px; height: 280px; }
    .medallion-inner { width: 160px; height: 160px; }
    .medallion-logo { width: 120px; height: 120px; }

    .about-grid,
    .organic-grid { grid-template-columns: 1fr; gap: 50px; }
    .organic-img-wrap { position: static; }
    .about-image-wrap { max-width: 400px; margin: 0 auto; }
    .about-badge { right: 0; }

    .contact-split { grid-template-columns: 1fr; }
    .contact-info-panel { padding: 70px 40px; }
    .contact-form-panel { padding: 60px 40px; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .testimonial-card { flex: 0 0 100%; }
}

@media (max-width: 768px) {
    :root { --nav-h: 68px; }

    .nav-menu {
        position: fixed;
        top: var(--nav-h); left: 0;
        width: 100%;
        background: var(--clr-warm-white);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: var(--ease);
        border-bottom: 1px solid var(--clr-border);
        box-shadow: var(--shadow-md);
    }
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-link { color: var(--clr-text) !important; padding: 12px 16px; border-radius: 8px; }
    .nav-link:hover { background: var(--clr-bg-alt); }
    .nav-toggle { display: flex; }

    section { padding: 80px 0; }

    .stats-grid { flex-wrap: wrap; gap: 24px; justify-content: center; }
    .stat-item { flex: 0 0 calc(50% - 12px); justify-content: flex-start; }

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

    .contact-info-panel { padding: 60px 30px; }
    .contact-form-panel { padding: 50px 30px; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .hero-headline { font-size: clamp(2.4rem, 8vw, 3.5rem); }
    .hero-medallion { width: 220px; height: 220px; }
    .medallion-inner { width: 120px; height: 120px; }
    .medallion-logo { width: 90px; height: 90px; }

    .testimonial-carousel { gap: 10px; }
    .carousel-btn { width: 40px; height: 40px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .contact-info-panel { padding: 50px 24px; }
    .contact-form-panel { padding: 40px 24px; }
}
