/* ==========================================================================
   THEME GLOBAL ARCHITECTURE CONFIGURATIONS
   ========================================================================== */
:root {
    --bg-ivory-cream: #FDFBF7;
    --bg-white-pure: #FFFFFF;
    --accent-gold-base: #C19A5B;
    --accent-gold-soft: #F5EFE4;
    --brand-maroon-deep: #5C1D24;
    --brand-maroon-dark: #3D1015;
    --text-primary-charcoal: #2D1F18;
    --text-muted-gray: #7A6E65;
    --border-light-tint: rgba(193, 154, 91, 0.22);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --curve-transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET SYSTEM RESET SETUP
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-ivory-cream);
    color: var(--text-primary-charcoal);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}

/* ==========================================================================
   TOP STICKY NAVIGATION BAR MODULE
   ========================================================================== */
.navbar-portal {
    background-color: rgba(253, 251, 247, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light-tint);
    position: sticky;
    top: 0;
    z-index: 2000;
}

.navbar-portal .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 60px;
}

.brand-identity-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-monogram {
    font-size: 26px;
    color: var(--brand-maroon-deep);
}

.brand-titles {
    display: flex;
    flex-direction: column;
}

.main-logo-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--brand-maroon-deep);
    letter-spacing: 1.5px;
    line-height: 1.1;
}

.sub-logo-title {
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: 3.5px;
    color: var(--accent-gold-base);
    margin-top: 2px;
}

.navigation-links-block ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted-gray);
    letter-spacing: 0.5px;
    transition: var(--curve-transition);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--brand-maroon-deep);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: var(--accent-gold-base);
}

.navigation-utilities-row {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-search-wrapper {
    position: relative;
}

.nav-search-wrapper input {
    background: rgba(193, 154, 91, 0.05);
    border: 1px solid var(--border-light-tint);
    padding: 8px 18px 8px 38px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 13px;
    width: 220px;
    outline: none;
    transition: var(--curve-transition);
}

.nav-search-wrapper input:focus {
    width: 250px;
    background-color: var(--bg-white-pure);
    border-color: var(--accent-gold-base);
}

.nav-search-wrapper i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-gold-base);
    font-size: 13px;
}

.nav-util-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-primary-charcoal);
    cursor: pointer;
    transition: var(--curve-transition);
}

.nav-util-btn:hover {
    color: var(--brand-maroon-deep);
}

.nav-cart-trigger {
    position: relative;
}

.cart-badge-indicator {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: var(--brand-maroon-deep);
    color: var(--bg-white-pure);
    font-size: 9px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ==========================================================================
   HERO TITLE MAIN HEADER INTRO STYLE
   ========================================================================== */
.artisan-hero-intro {
    padding: 90px 0 50px;
    position: relative;
}

.mandala-bg-left, .mandala-bg-right {
    position: absolute;
    border: 1px dashed rgba(193, 154, 91, 0.15);
    border-radius: 50%;
    pointer-events: none;
}

.mandala-bg-left {
    width: 350px;
    height: 350px;
    left: -100px;
    top: 20px;
}

.mandala-bg-right {
    width: 400px;
    height: 400px;
    right: -120px;
    top: -50px;
}

.text-center-alignment {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mini-accent-badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-gold-base);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.main-page-headline {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--brand-maroon-deep);
    letter-spacing: 0.5px;
}

.gold-gradient-text {
    color: var(--accent-gold-base);
}

.hero-subtitle-context {
    font-size: 15px;
    color: var(--text-muted-gray);
    max-width: 680px;
    line-height: 1.7;
    margin: 20px 0 25px;
}

.decorative-center-icon {
    font-size: 18px;
    color: var(--accent-gold-base);
}

/* ==========================================================================
   CRAFTSMAN FOCUS METRIC ROW DESIGN STYLES
   ========================================================================== */
.craftsman-focus-panel {
    padding: 50px 0 80px;
}

.focus-split-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 75px;
    align-items: center;
}

.focus-visual-container {
    position: relative;
    padding: 15px;
}

.aura-shadow-layer {
    position: absolute;
    inset: 0px;
    border-radius: 16px;
    box-shadow: 0 0 40px 15px rgba(193, 154, 91, 0.18);
    z-index: 1;
    pointer-events: none;
}

.image-inner-border {
    position: relative;
    z-index: 2;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--accent-gold-base);
    background-color: var(--bg-white-pure);
}

.image-inner-border img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: var(--curve-transition);
}

.image-inner-border:hover img {
    transform: scale(1.03);
}

.details-top-header {
    margin-bottom: 24px;
}

.detail-label-tag {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--accent-gold-base);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.details-top-header h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--brand-maroon-deep);
}

.title-accent-separator {
    width: 50px;
    height: 2px;
    background-color: var(--accent-gold-base);
    margin-top: 12px;
}

.highlight-intro-p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.65;
    color: var(--text-primary-charcoal);
    margin-bottom: 16px;
}

.standard-body-p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted-gray);
    margin-bottom: 35px;
}

/* 3 Cards Stripe System alignment mapping */
.horizontal-metric-strip {
    display: flex;
    gap: 20px;
}

.metric-block-card {
    background-color: var(--bg-white-pure);
    border: 1px solid var(--border-light-tint);
    border-radius: 8px;
    padding: 16px 24px;
    flex: 1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: var(--curve-transition);
}

.metric-block-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-gold-base);
    box-shadow: 0 8px 20px rgba(193, 154, 91, 0.1);
}

.m-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-maroon-deep);
    margin-bottom: 2px;
}

.m-label {
    font-size: 11.5px;
    color: var(--text-muted-gray);
    font-weight: 600;
}


/* ==========================================================================
   COMMON HEADER CENTERED HELPER
   ========================================================================== */
.section-title-centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 55px;
}

.center-separator {
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   SECTION: THE DIVYALOKA PROMISE BLOCK
   ========================================================================== */
.divyaloka-promise-section {
    padding: 80px 0;
    background-color: var(--bg-white-pure);
    border-top: 1px solid var(--border-light-tint);
    border-bottom: 1px solid var(--border-light-tint);
}

.promise-cards-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.promise-mini-card {
    background-color: var(--bg-ivory-cream);
    border: 1px solid var(--border-light-tint);
    border-radius: 8px;
    padding: 30px 22px;
    text-align: center;
    transition: var(--curve-transition);
}

.promise-mini-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-gold-base);
    box-shadow: 0 12px 25px rgba(193, 154, 91, 0.08);
}

.promise-icon-bubble {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--accent-gold-soft);
    color: var(--brand-maroon-deep);
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    transition: var(--curve-transition);
}

.promise-mini-card:hover .promise-icon-bubble {
    background-color: var(--brand-maroon-deep);
    color: var(--bg-white-pure);
}

.promise-mini-card h3 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary-charcoal);
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.promise-mini-card p {
    font-size: 12.5px;
    color: var(--text-muted-gray);
    line-height: 1.6;
}

/* ==========================================================================
   SECTION: VERTICAL ALTERNATING TIMELINE SYSTEM STYLES
   ========================================================================== */
.legacy-timeline-section {
    padding: 95px 0;
    background-color: var(--bg-ivory-cream);
}

.vertical-timeline-container {
    position: relative;
    max-width: 960px;
    margin: 60px auto 0;
    padding: 10px 0;
}

.timeline-center-spine {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--border-light-tint);
    transform: translateX(-50%);
}

.timeline-node {
    position: relative;
    width: 50%;
    margin-bottom: 45px;
    display: flex;
}

.position-left-node {
    left: 0;
    padding-right: 45px;
    justify-content: flex-end;
}

.position-right-node {
    left: 50%;
    padding-left: 45px;
    justify-content: flex-start;
}

.node-geometric-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--bg-white-pure);
    border: 3px solid var(--accent-gold-base);
    border-radius: 50%;
    top: 24px;
    z-index: 5;
}

.position-left-node .node-geometric-dot { right: -6px; }
.position-right-node .node-geometric-dot { left: -6px; }

.node-display-card {
    background-color: var(--bg-white-pure);
    border: 1px solid var(--border-light-tint);
    padding: 26px;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
    transition: var(--curve-transition);
}

.timeline-node:hover .node-display-card {
    transform: translateY(-4px);
    border-color: var(--brand-maroon-deep);
    box-shadow: 0 12px 25px rgba(92, 29, 36, 0.05);
}

.node-display-year {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--accent-gold-base);
    margin-bottom: 6px;
}

.node-display-card h4 {
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-primary-charcoal);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.node-display-card p {
    font-size: 13px;
    color: var(--text-muted-gray);
    line-height: 1.6;
}

/* ==========================================================================
   SECTION: PERSISTENT CALL TO ACTION BANNER
   ========================================================================== */
.final-cta-banner {
    padding: 75px 0;
    background: radial-gradient(circle, #FAF4E8 0%, #F5ECDB 100%);
    text-align: center;
    border-top: 1px solid var(--border-light-tint);
}

.sacred-stars-row {
    color: #FFB300;
    font-size: 15px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.final-cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--brand-maroon-deep);
    letter-spacing: 0.5px;
}

.final-cta-banner p {
    font-size: 14.5px;
    color: var(--text-muted-gray);
    margin: 10px 0 25px;
}

.cta-gold-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background-color: var(--brand-maroon-deep);
    color: var(--bg-white-pure);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--curve-transition);
}

.cta-gold-btn:hover {
    background-color: var(--brand-maroon-dark);
    transform: translateY(-2px);
}

/* ==========================================================================
   SECTION: PURE CRIMSON FLOATING NEWSLETTER PORTAL CARD
   ========================================================================== */
.newsletter-overlay-section {
    background-color: var(--bg-ivory-cream);
    padding: 80px 0 0 0;
    position: relative;
    z-index: 10;
}

.footer-newsletter-card {
    background: linear-gradient(135deg, #4F181E 0%, var(--brand-maroon-deep) 100%);
    border: 1px solid rgba(193, 154, 91, 0.35);
    border-radius: 12px;
    padding: 50px 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
    transform: translateY(40px); /* Hangs perfectly halfway over the brown footer boundary */
}

/* Dotted/Dashed Geometric Rings backdrops layer maps exactly inside crimson card */
.card-mandala-overlay-left, .card-mandala-overlay-right {
    position: absolute;
    border: 1px dashed rgba(245, 239, 228, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.card-mandala-overlay-left {
    width: 260px;
    height: 260px;
    left: -60px;
    top: -60px;
}

.card-mandala-overlay-right {
    width: 320px;
    height: 320px;
    right: -80px;
    bottom: -100px;
}

.newsletter-content-layer {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-monogram {
    font-size: 20px;
    color: var(--accent-gold-base);
    margin-bottom: 8px;
}

.newsletter-headline h3 {
    font-family: var(--font-heading);
    color: var(--bg-ivory-cream);
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.newsletter-headline p {
    font-size: 13px;
    color: rgba(253, 251, 247, 0.75);
    max-width: 480px;
    line-height: 1.5;
}

.newsletter-action-form {
    display: flex;
    gap: 12px;
    width: 45%;
}

.newsletter-action-form input {
    flex-grow: 1;
    padding: 14px 18px;
    border-radius: 4px;
    border: 1px solid rgba(193, 154, 91, 0.25);
    background: rgba(255, 255, 255, 0.07);
    color: var(--bg-white-pure);
    font-family: var(--font-body);
    font-size: 13.5px;
    outline: none;
    transition: var(--curve-transition);
}

.newsletter-action-form input:focus {
    border-color: var(--accent-gold-base);
    background: rgba(255, 255, 255, 0.12);
}

.newsletter-action-form input::placeholder {
    color: rgba(253, 251, 247, 0.4);
}

.newsletter-action-form button {
    padding: 14px 28px;
    background-color: var(--accent-gold-base);
    color: #1A110D;
    font-weight: 700;
    font-family: var(--font-body);
    font-size: 13.5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--curve-transition);
}

.newsletter-action-form button:hover {
    background-color: var(--bg-white-pure);
    color: var(--brand-maroon-deep);
}

/* ==========================================================================
   SIGNATURE METALLIC LUXURY DARK BROWN FOOTER
   ========================================================================== */
.divyaloka-signature-footer {
    background-color: #1A110D; /* Pure Premium Dark Altar Charcoal-Brown */
    color: rgba(253, 251, 247, 0.65);
    padding: 100px 0 40px; /* High top padding allows card offset to space out clean */
    border-top: 3px solid var(--accent-gold-base);
    position: relative;
    z-index: 1;
}

.footer-columns-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 0.9fr 1.1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(253, 251, 247, 0.08);
}

.foot-logo-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--bg-white-pure);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 16px;
}

.bio-text {
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 22px;
}

.foot-social-row {
    display: flex;
    gap: 12px;
}

.foot-social-row a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(253, 251, 247, 0.04);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--bg-ivory-cream);
    font-size: 14px;
    transition: var(--curve-transition);
}

.foot-social-row a:hover {
    background-color: var(--accent-gold-base);
    color: #1A110D;
}

.foot-column h4 {
    color: var(--accent-gold-base);
    font-size: 13.5px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.foot-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.foot-column ul a {
    text-decoration: none;
    font-size: 13.5px;
    color: rgba(253, 251, 247, 0.6);
    transition: var(--curve-transition);
}

.foot-column ul a:hover {
    color: var(--accent-gold-base);
    padding-left: 4px;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 13.5px;
}

.contact-line i {
    color: var(--accent-gold-base);
    font-size: 13px;
}

.footer-copyright-strip {
    padding-top: 30px;
    text-align: center;
    font-size: 12px;
    color: rgba(253, 251, 247, 0.3);
}

