/* ==========================================================================
   PAHAD RITUALS - FULLY RESPONSIVE EDITORIAL QUIET LUXURY SYSTEM
   ========================================================================== */

:root {
    --bg-alabaster: #EFECE6;
    --forest-primary: #21382A;
    --gold-primary: #B5975A;
    --text-muted: #6C7A70;
    --input-placeholder: #A19B8E;
    
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html, body {
    width: 100%;
    overflow-x: hidden;
}

body.pahad-editorial-mode {
    background-color: var(--bg-alabaster);
    /* Subtle organic paper vignette simulating physical 300 GSM cotton stock */
    background: radial-gradient(circle at 50% 40%, #F5F3EE 0%, #EAE6DE 70%, #DFDBD1 100%);
    color: var(--forest-primary);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* BACKGROUND MOUNTAIN ARTWORK */
.mountain-art-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45vh;
    background: url('/assets/mountain-bg.png') no-repeat bottom left;
    background-size: contain;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
}

/* SITE HEADER (100% CENTERED LUXURY CROWN) */
.site-header {
    width: 100%;
    max-width: 1120px;
    padding: 2.8rem 2rem 1.4rem 2rem;
    border-bottom: 1px solid rgba(181, 151, 90, 0.25);
    position: relative;
    z-index: 2;
}

.header-container {
    width: 100%;
    display: flex;
    justify-content: center; /* Centered */
    align-items: center;
}

.brand-link {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centered */
    text-align: center;
    gap: 0.4rem;
    text-decoration: none;
}

.brand-logo {
    height: clamp(34px, 3.5vw, 42px);
    width: auto;
    display: block;
    margin-bottom: 2px;
}

.brand-text-block {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centered */
}

.brand-name {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 1.8vw, 1.25rem);
    letter-spacing: 4px;
    color: var(--forest-primary);
    font-weight: 500;
    line-height: 1.1;
}

.brand-tagline {
    font-size: clamp(0.5rem, 0.8vw, 0.56rem);
    letter-spacing: 2.8px;
    color: var(--gold-primary);
    font-weight: 600;
    margin-top: 3px;
}

/* HERO CONTAINER & GRID */
.hero-stealth-container {
    max-width: 1080px;
    width: 100%;
    margin: auto 0;
    padding: 2.5rem 2rem;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: center;
    width: 100%;
}

/* LEFT COLUMN: HERO HEADLINE LOCKUP */
.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 1rem;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 4.8vw, 4.4rem);
    line-height: 1.05;
    color: var(--forest-primary);
    font-weight: 400;
    letter-spacing: -0.5px;
    margin: 0 0 1.8rem 0;
}

.hero-headline em {
    font-style: italic;
    color: var(--gold-primary);
    font-weight: 400;
}

.divider-line-left {
    width: 44px;
    height: 1px;
    background-color: var(--gold-primary);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.badge-origin-text {
    font-size: clamp(0.58rem, 0.85vw, 0.65rem);
    letter-spacing: 3.2px;
    color: var(--forest-primary);
    font-weight: 600;
}

/* RIGHT COLUMN: EDITORIAL CARD */
.hero-right {
    display: flex;
    justify-content: center;
    width: 100%;
}

.circle-card-editorial {
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(181, 151, 90, 0.35);
    box-shadow: 0 12px 30px rgba(33, 56, 42, 0.04), 0 2px 6px rgba(0, 0, 0, 0.02);
    border-radius: 3px; /* Micro-rounded for tactile paper feel */
    padding: 2.6rem 2.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 380px;
    position: relative;
}

.card-subtitle {
    font-size: 0.58rem;
    letter-spacing: 3.5px;
    color: var(--gold-primary);
    display: block;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.card-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    line-height: 1.1;
    color: var(--forest-primary);
    margin: 0 0 1rem 0;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* STAR DIVIDER */
.divider-star-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 80px;
    margin-bottom: 1.2rem;
}

.star-line {
    flex-grow: 1;
    height: 1px;
    background-color: var(--gold-primary);
    opacity: 0.6;
}

.star-icon {
    font-size: 0.65rem;
    color: var(--gold-primary);
}

.card-description {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    line-height: 1.4;
    color: #4A5D50;
    margin-bottom: 1.8rem;
    max-width: 260px;
}

/* FORM STYLING */
.founding-form {
    width: 100%;
}

.founding-form .input-group {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    width: 100%;
}

.founding-form input[type="email"] {
    width: 100%;
    padding: 0.6rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(181, 151, 90, 0.65);
    color: var(--forest-primary);
    font-family: var(--font-body);
    font-size: 0.88rem;
    outline: none;
    text-align: center;
    transition: border-color 0.3s ease;
}

.founding-form input[type="email"]::placeholder {
    color: var(--input-placeholder);
    text-align: center;
    font-size: 0.85rem;
}

.founding-form input[type="email"]:focus {
    border-bottom-color: var(--forest-primary);
}

.btn-editorial-submit {
    width: 100%;
    padding: 0.95rem 1.4rem;
    background-color: var(--forest-primary);
    border: none;
    border-radius: 2px; /* Micro-rounded */
    color: #FFFFFF;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.68rem;
    letter-spacing: 2.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-editorial-submit:hover {
    background-color: #15251B;
    transform: translateY(-1px);
}

.arrow-icon {
    font-size: 0.9rem;
    line-height: 1;
}

.form-message {
    margin-top: 0.8rem;
    font-size: 0.72rem;
    line-height: 1.3;
}

/* WELCOME BACK STATE */
.welcome-back-block {
    padding: 0.8rem 1.2rem;
    background-color: rgba(181, 151, 90, 0.12);
    border: 1px solid rgba(181, 151, 90, 0.3);
    border-radius: 2px;
    width: 100%;
    margin-bottom: 0.5rem;
}

.welcome-text {
    font-size: 0.75rem;
    line-height: 1.4;
    color: var(--forest-primary);
}

/* DIVIDER LINE SHORT */
.divider-line-short {
    width: 36px;
    height: 1px;
    background-color: var(--gold-primary);
    margin: 1.6rem 0 1rem 0;
    opacity: 0.5;
}

.launch-text-badge {
    font-size: 0.58rem;
    letter-spacing: 3.2px;
    color: var(--gold-primary);
    font-weight: 600;
}

/* ==========================================================================
   BASELINE EDITORIAL FOOTER
   ========================================================================== */
.site-footer {
    width: 100%;
    max-width: 1120px;
    padding: 1.4rem 2rem 1.8rem 2rem;
    border-top: 1px solid rgba(181, 151, 90, 0.25);
    position: relative;
    z-index: 2;
}

.footer-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dot-separator {
    color: var(--gold-primary);
    font-size: 0.7rem;
}

.footer-center {
    font-size: 0.58rem;
    letter-spacing: 1.4px;
    color: #8C9990;
    text-align: center;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-primary);
    text-decoration: none;
    opacity: 0.75;
    transition: opacity 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.social-link:hover {
    opacity: 1;
    color: var(--gold-primary);
    transform: translateY(-1px);
}

.social-icon {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 900px) {
    .site-header {
        padding: 2rem 1.5rem 1rem 1.5rem;
    }

    .hero-stealth-container {
        padding: 2rem 1.5rem 3rem 1.5rem;
    }

    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-left {
        align-items: center;
        text-align: center;
        padding-right: 0;
    }

    .divider-line-left {
        margin: 1.2rem auto;
    }

    .circle-card-editorial {
        max-width: 100%;
        padding: 2.2rem 1.6rem;
    }

    .footer-container {
        flex-direction: column;
        gap: 0.9rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .brand-logo {
        height: 32px;
    }

    .hero-headline {
        font-size: 2.3rem;
    }

    .card-title {
        font-size: 1.9rem;
    }
}