@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=EB+Garamond:ital,wght@0,400;0,500;1,400&family=Noto+Sans+Devanagari:wght@400;700&family=Inter:wght@300;400;500&display=swap');

:root {
    /* GODA Brand Bible v1.0 Master Palette */
    --primary-bg: #100100;
    --dark-godavari: #1A0502;
    --mahogany: #3A1008;
    --burnt-copper: #A54D26;
    --terracotta: #AA5227;
    --deep-terracotta: #8B3A1F;
    --gold: #E4C065;
    --gold-light: #E8C97A;
    --gold-muted: #C09037;
    --gold-deep: #8D6725;
    --warm-ivory: #F0E5CF;
    --parchment: #D9C9AA;
    --warm-parchment: #EDE0C4;
    --aged-text: #A89578;
    --deep-brown: #100100;
    --river-blue: #4A7C8E;
    --river-dark: #2D5A6E;
    --cream: #FAF4E8;
    --text-dark: #100100;
    --text-mid: #5A3A28;
    --text-light: #A89578;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'EB Garamond', Georgia, serif;
    background: var(--parchment);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    background: rgba(44, 20, 8, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(201, 160, 80, 0.2);
}

.nav-logo {
    font-family: 'Noto Sans Devanagari', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo span {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--warm-parchment);
    letter-spacing: 0.15em;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: rgba(245, 237, 214, 0.75);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold-light);
}

.lang-switcher {
    display: flex;
    gap: 12px;
}

.lang-btn {
    font-family: 'Cinzel', serif;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    background: none;
    border: 1px solid rgba(201, 160, 80, 0.35);
    color: rgba(245, 237, 214, 0.65);
    padding: 4px 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.lang-btn.active,
.lang-btn:hover {
    background: rgba(201, 160, 80, 0.15);
    color: var(--gold-light);
    border-color: var(--gold);
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background:
        linear-gradient(to bottom, rgba(54, 24, 10, 0.93) 0%, rgba(84, 40, 20, 0.85) 50%, rgba(54, 24, 10, 0.95) 100%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.12'/%3E%3C/svg%3E") repeat,
        #36180a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 120px 24px 60px;
    overflow: hidden;
}

.hero-left-img {
    position: absolute;
    max-width: 100%;
    top: -30%;
    height: 140%;
    width: auto;
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

/* Scrollytelling Layout */
.scrolly-wrapper {
    position: relative;
    width: 100%;
}

.sticky-bottle-viewport {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 5;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: -100vh;
}

.sticky-bottle-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 100%;
    pointer-events: none;
}

.scrolly-bottle-img {
    max-width: 200px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 25px 55px rgba(0, 0, 0, 0.65));
    z-index: 6;
}

/* Golden glow behind the bottle */
.hero-bottle-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 160, 80, 0.18) 0%, rgba(201, 160, 80, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

/* Viewport placeholders & Mobile bottles */
.hero-bottle-placeholder {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-bottle-img {
    display: none;
    width: 100%;
    max-width: 130px;
    height: auto;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.5));
    margin: 0 auto;
}

/* Hero 3-Column Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    z-index: 2;
    margin: 0 auto;
}

.hero-left-side {
    text-align: left;
    animation: fadeUp 1.5s 0.6s ease forwards;
    opacity: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-side-eyebrow {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 600;
}

.hero-side-heading {
    font-family: 'Cinzel', serif;
    font-size: 1.35rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--warm-parchment);
    font-weight: 500;
    line-height: 1.2;
}

.hero-side-divider {
    width: 48px;
    height: 1px;
    background: rgba(201, 160, 80, 0.4);
    margin: 4px 0;
}

.hero-left-side .hero-side-divider {
    margin-right: auto;
}

.hero-right-side .hero-side-divider {
    margin-left: auto;
}

.hero-side-desc {
    font-family: 'EB Garamond', serif;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(245, 237, 214, 0.78);
    font-style: italic;
}

.hero-right-side {
    text-align: right;
    animation: fadeUp 1.5s 0.8s ease forwards;
    opacity: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Hero Specs Showcase */
.hero-specs-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 12px;
}

.hero-spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.hero-left-side .hero-spec-item:hover {
    transform: translateX(6px);
}

.hero-right-side .hero-spec-item:hover {
    transform: translateX(-6px);
}

.hero-specs-list.align-right .hero-spec-item {
    justify-content: flex-end;
    text-align: right;
}

.hero-spec-bullet {
    color: var(--gold-light);
    font-size: 1rem;
    text-shadow: 0 0 8px rgba(232, 201, 122, 0.4);
    animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.hero-spec-label {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: rgba(245, 237, 214, 0.5);
    text-transform: uppercase;
}

.hero-spec-val {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold-light);
    margin-top: 2px;
}

/* ── SACRED ESSENCE (NEW SECTION) ── */
.sacred-essence {
    background: var(--parchment);
    padding: 120px 48px;
    position: relative;
    z-index: 2;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
}

.essence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.essence-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.essence-left .section-title {
    color: var(--deep-brown);
}

.essence-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 20px;
    border-top: 1px solid rgba(184, 92, 56, 0.15);
    padding-top: 24px;
}

.essence-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.essence-feat-icon {
    font-size: 1.5rem;
    color: var(--terracotta);
    background: rgba(184, 92, 56, 0.08);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(184, 92, 56, 0.05);
}

.essence-feat-item h4 {
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--deep-brown);
    margin-bottom: 4px;
    font-weight: 600;
}

.essence-feat-item p {
    font-family: 'EB Garamond', serif;
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.5;
}

.essence-bottle-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 500px;
}

.hero-bottom-ornament {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 36px;
    gap: 8px;
    color: var(--gold);
    opacity: 0;
    animation: fadeUp 2s 1.2s ease forwards;
    z-index: 2;
}

.hero-bottom-ornament .dot {
    font-size: 0.5rem;
}

.hero-bottom-ornament .vertical-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ── RIVER DIVIDER ── */
.river-divider {
    width: 100%;
    height: 60px;
    overflow: hidden;
    position: relative;
    margin: 0;
    z-index: 2;
}

.river-divider svg {
    width: 100%;
    height: 100%;
}

/* ── SECTION BASE ── */
section {
    position: relative;
}

.section-eyebrow {
    font-family: 'Cinzel', serif;
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    flex: 0 0 32px;
    height: 1px;
    background: var(--terracotta);
    opacity: 0.5;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 600;
    color: var(--deep-brown);
    line-height: 1.25;
    margin-bottom: 16px;
}

.section-body {
    font-family: 'EB Garamond', serif;
    font-size: 1.12rem;
    line-height: 1.85;
    color: var(--text-mid);
    max-width: 60ch;
}

/* ── JOURNEY MAP ── */
.journey {
    background: var(--deep-brown);
    padding: 80px 0;
    overflow: hidden;
}

.journey-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

.journey-header {
    text-align: center;
    margin-bottom: 60px;
}

.journey .section-title {
    color: var(--parchment);
}

.journey .section-eyebrow {
    color: var(--gold);
    justify-content: center;
}

.journey .section-eyebrow::before,
.journey .section-eyebrow::after {
    background: var(--gold);
}

.journey-map-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid rgba(201, 160, 80, 0.15);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.2);
}

.journey-map-img {
    width: 100%;
    height: auto;
    display: block;
}

.journey-caption {
    text-align: center;
    margin-top: 48px;
    font-family: 'EB Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: rgba(245, 237, 214, 0.4);
    letter-spacing: 0.05em;
}

/* ── SACRED USES ── */
.sacred-uses {
    background: var(--parchment);
    padding: 100px 48px;
}

.sacred-uses-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.uses-header {
    text-align: center;
    margin-bottom: 64px;
}

.uses-header .section-body {
    margin: 0 auto;
}

.uses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 44px 32px;
}

.use-card {
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    border: none;
    border-radius: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    box-shadow: none;
    min-height: auto;
}

.use-img-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: #F7F5F0;
    border: 1px solid rgba(201, 160, 80, 0.25);
    margin-bottom: 16px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

/* Minimal gold dot/star placeholder instead of text */
.use-img-wrapper::before {
    content: '✦';
    position: absolute;
    font-size: 0.75rem;
    color: var(--gold);
}

.use-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

/* Hide broken image icon when src is missing or load fails */
.use-card-img:not([src]),
.use-card-img[src=""] {
    opacity: 0;
}

.use-card:hover {
    transform: translateY(-3px);
}

.use-card:hover .use-img-wrapper {
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(201, 160, 80, 0.25);
    transform: scale(1.05);
}

.use-card:hover .use-card-img {
    transform: scale(1.08);
}

.use-name {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    color: var(--deep-brown);
    font-weight: 700;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.use-card:hover .use-name {
    color: var(--gold);
}

.use-desc {
    font-family: 'EB Garamond', serif;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-mid);
    font-style: normal;
}

/* ── HERITAGE SECTION (3-COLUMN LAYOUT) ── */
.heritage-section {
    background: var(--parchment);
    padding: 100px 48px;
    border-top: 1px solid rgba(201, 160, 80, 0.15);
}

.heritage-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 28px;
}

.heritage-card {
    background: var(--cream);
    border: 1px solid rgba(201, 160, 80, 0.22);
    padding: 36px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 10px 30px rgba(44, 20, 8, 0.04);
    transition: all 0.4s ease;
}

.heritage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(44, 20, 8, 0.08);
    border-color: rgba(201, 160, 80, 0.4);
}

.heritage-card::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px dashed rgba(201, 160, 80, 0.12);
    pointer-events: none;
}

.heritage-card-title {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--deep-terracotta);
    margin-bottom: 24px;
    font-weight: 600;
    text-align: center;
    border-bottom: 1px solid rgba(201, 160, 80, 0.15);
    padding-bottom: 12px;
}

.heritage-split {
    display: flex;
    gap: 20px;
    align-items: center;
    height: 100%;
}

.heritage-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1.4;
}

.heritage-item-title {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: var(--deep-brown);
    font-weight: 600;
    margin-bottom: 3px;
}

.heritage-item-desc {
    font-family: 'EB Garamond', serif;
    font-size: 0.84rem;
    color: var(--text-mid);
    line-height: 1.4;
}

.heritage-sketch-container {
    flex: 0.8;
    opacity: 0.9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.heritage-sketch-img {
    max-width: 100%;
    height: auto;
    max-height: 240px;
    filter: sepia(0.25) contrast(1.05);
    border-radius: 2px;
}

.intentions-list-new {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.intention-item-new {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.intention-icon-new {
    font-size: 1rem;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 1px;
}

.intention-text-new {
    font-family: 'EB Garamond', serif;
    font-size: 0.94rem;
    color: var(--text-mid);
    line-height: 1.45;
    font-style: italic;
}

.intentions-lotus-bg {
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.1;
    pointer-events: none;
}

.chant-content-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 16px 0;
}

.chant-om-text {
    font-family: 'Noto Sans Devanagari', serif;
    font-size: clamp(2.4rem, 6vw, 3.2rem);
    color: var(--deep-brown);
    margin-bottom: 6px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.chant-sub {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.chant-player-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 1px solid rgba(201, 160, 80, 0.4);
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 2px;
}

.chant-player-btn:hover {
    background: rgba(201, 160, 80, 0.15);
    border-color: var(--gold);
}

.chant-play-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--deep-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--parchment);
    font-size: 0.8rem;
    transition: all 0.3s;
    padding-left: 2px;
}

.chant-player-btn.playing .chant-play-icon {
    padding-left: 0;
}

.chant-player-btn:hover .chant-play-icon {
    background: var(--terracotta);
}

.chant-play-text {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--deep-brown);
    font-weight: 600;
}

/* ── COLLECTION PROCESS (HORIZONTAL STEPS) ── */
.authenticity {
    background: var(--cream);
    padding: 100px 48px;
}

.authenticity-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.auth-header {
    text-align: center;
    margin-bottom: 56px;
}

.auth-header .section-body {
    margin: 0 auto;
}

.process-steps-new {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
    border: 1px solid rgba(201, 160, 80, 0.22);
    background: var(--cream);
}

.process-step-new {
    flex: 1;
    padding: 40px 24px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid rgba(201, 160, 80, 0.15);
    transition: background 0.35s;
}

.process-step-new:hover {
    background: rgba(245, 237, 214, 0.3);
}

.process-step-new:last-child {
    border-right: none;
}

.step-num-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--deep-brown);
    color: var(--parchment);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid var(--gold);
}

.process-step-new:hover .step-num-circle {
    background: var(--terracotta);
}

.step-svg-icon {
    width: 48px;
    height: 48px;
    stroke: var(--terracotta);
    stroke-width: 1.25;
    fill: none;
    margin-bottom: 20px;
    transition: all 0.35s;
}

.process-step-new:hover .step-svg-icon {
    stroke: var(--gold);
    transform: scale(1.08);
}

.step-title-new {
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--deep-brown);
    margin-bottom: 12px;
    font-weight: 600;
}

.step-desc-new {
    font-family: 'EB Garamond', serif;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

.step-chevron-flow {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--cream);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    z-index: 2;
    border-radius: 50%;
    border: 1px solid rgba(201, 160, 80, 0.25);
}

.process-step-new:last-child .step-chevron-flow {
    display: none;
}

/* ── TESTIMONIALS ── */
.testimonials {
    background: var(--parchment);
    padding: 100px 48px;
}

.testimonials-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.test-header {
    text-align: center;
    margin-bottom: 64px;
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.test-card {
    background: var(--cream);
    padding: 40px 32px;
    border-left: 3px solid var(--terracotta);
    position: relative;
}

.test-quote {
    font-family: 'EB Garamond', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 24px;
}

.test-quote::before {
    content: '\201C';
    font-size: 3rem;
    color: var(--terracotta);
    opacity: 0.3;
    line-height: 0;
    display: block;
    margin-bottom: 8px;
}

.test-author {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--deep-brown);
    text-transform: uppercase;
}

.test-role {
    font-family: 'EB Garamond', serif;
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-light);
    margin-top: 4px;
}

/* ── FAQ ── */
.faq {
    background: var(--deep-brown);
    padding: 100px 48px;
}

.faq-inner {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 64px;
}

.faq .section-title {
    color: var(--parchment);
}

.faq .section-eyebrow {
    color: var(--gold);
    justify-content: center;
}

.faq .section-eyebrow::before,
.faq .section-eyebrow::after {
    background: var(--gold);
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(201, 160, 80, 0.15);
    cursor: pointer;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-family: 'Cinzel', serif;
    font-size: 0.88rem;
    letter-spacing: 0.05em;
    color: var(--warm-parchment);
}

.faq-q span {
    color: var(--gold);
    font-size: 1rem;
    transition: transform 0.3s;
}

.faq-item.open .faq-q span {
    transform: rotate(45deg);
}

.faq-a {
    font-family: 'EB Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: rgba(245, 237, 214, 0.55);
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 0 24px;
}

/* ── CTA ── */
.cta {
    background: linear-gradient(135deg, var(--terracotta), var(--deep-terracotta));
    padding: 120px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: 'गोदा';
    font-family: 'Noto Sans Devanagari', serif;
    font-size: 24rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    white-space: nowrap;
}

.cta-eyebrow {
    font-family: 'Cinzel', serif;
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(245, 237, 214, 0.6);
    margin-bottom: 16px;
}

.cta-title {
    font-family: 'Noto Sans Devanagari', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 8px;
}

.cta-subtitle {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    letter-spacing: 0.15em;
    color: var(--parchment);
    margin-bottom: 16px;
}

.cta-body {
    font-family: 'EB Garamond', serif;
    font-size: 1.12rem;
    font-style: italic;
    color: rgba(245, 237, 214, 0.7);
    margin-bottom: 48px;
    max-width: 50ch;
    margin-left: auto;
    margin-right: auto;
}

.cta-disclaimer {
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    color: rgba(245, 237, 214, 0.35);
    text-transform: uppercase;
    margin-top: 32px;
}

.btn-cta-primary {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 20px 56px;
    background: var(--deep-brown);
    color: var(--parchment);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.35s;
    display: inline-block;
    margin: 0 8px 16px;
}

.btn-cta-primary:hover {
    background: #1a0a04;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.btn-cta-outline {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 19px 56px;
    background: transparent;
    color: var(--parchment);
    border: 1px solid rgba(245, 237, 214, 0.4);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.35s;
    display: inline-block;
    margin: 0 8px 16px;
}

.btn-cta-outline:hover {
    border-color: var(--parchment);
}

/* ── FOOTER ── */
footer {
    background: #1a0a04;
    padding: 64px 48px 32px;
    color: rgba(245, 237, 214, 0.4);
}

.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(201, 160, 80, 0.1);
}

.footer-brand .nav-logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-family: 'EB Garamond', serif;
    font-size: 0.9rem;
    font-style: italic;
    color: rgba(245, 237, 214, 0.35);
    line-height: 1.7;
    max-width: 28ch;
}

.footer-col h4 {
    font-family: 'Cinzel', serif;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0.7;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-family: 'EB Garamond', serif;
    font-size: 0.92rem;
    color: rgba(245, 237, 214, 0.4);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: rgba(245, 237, 214, 0.7);
}

.footer-bottom {
    max-width: 1100px;
    margin: 32px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-bottom p {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: rgba(245, 237, 214, 0.2);
}

.footer-mahadev-watermark {
    font-family: 'Noto Sans Devanagari', serif;
    font-size: clamp(3.2rem, 8vw, 6.5rem);
    font-weight: 700;
    color: rgba(201, 160, 80, 0.05);
    letter-spacing: 0.05em;
    line-height: 1;
    user-select: none;
    pointer-events: none;
}

.footer-right-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.footer-brand-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-brand-logo .logo-dev {
    font-family: 'Noto Sans Devanagari', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.footer-brand-logo .logo-en {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    letter-spacing: 0.15em;
    color: var(--warm-parchment);
    margin-top: 2px;
}

.footer-brand-logo .logo-sub {
    font-family: 'EB Garamond', serif;
    font-size: 0.72rem;
    font-style: italic;
    color: rgba(245, 237, 214, 0.35);
    margin-top: 4px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(201, 160, 80, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(245, 237, 214, 0.5);
    text-decoration: none;
    transition: all 0.3s;
}

.social-circle:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
    background: rgba(201, 160, 80, 0.1);
    transform: scale(1.08);
}

.social-svg-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.8);
    }

    50% {
        opacity: 0.8;
        transform: scaleY(1.1);
    }
}

@keyframes riverFlow {
    0% {
        stroke-dashoffset: 200;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

.float-anim {
    animation: float 6s ease-in-out infinite;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: all 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .sticky-bottle-viewport {
        display: none;
    }

    .mobile-bottle-img {
        display: block;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 32px;
        padding-top: 20px;
    }

    .hero-bottle-placeholder {
        order: -1;
        height: auto;
    }

    .hero-left-side,
    .hero-right-side {
        max-width: 450px;
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .hero-left-side .hero-side-divider,
    .hero-right-side .hero-side-divider {
        margin: 4px auto;
    }

    .hero-side-icon {
        justify-content: center;
    }

    /* Essence section mobile query */
    .essence-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .essence-left {
        align-items: center;
    }

    .essence-feat-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .essence-bottle-placeholder {
        height: auto;
        order: -1;
    }

    .heritage-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .process-steps-new {
        flex-direction: column;
        border-right: 1px solid rgba(201, 160, 80, 0.22);
    }

    .process-step-new {
        border-right: none;
        border-bottom: 1px solid rgba(201, 160, 80, 0.15);
    }

    .process-step-new:last-child {
        border-bottom: none;
    }

    .step-chevron-flow {
        right: 50%;
        bottom: -10px;
        top: auto;
        transform: translateX(50%) rotate(90deg);
    }

    .uses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 16px 24px;
    }

    .nav-links {
        display: none;
    }

    .uses-grid {
        grid-template-columns: 1fr;
    }

    .test-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
    }

    .footer-right-brand {
        align-items: center;
    }

    .footer-brand-logo {
        align-items: center;
    }

    section.sacred-uses,
    .heritage-section,
    section.authenticity,
    section.testimonials,
    section.faq,
    section.cta {
        padding: 72px 24px;
    }
}

/* Gold ornament */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--gold);
    opacity: 0.4;
    margin: 20px 0;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
}

.ornament::before,
.ornament::after {
    content: '';
    flex: 0 0 48px;
    height: 1px;
    background: currentColor;
}