/* diplomatic.bar — Mid-Century Modern Sophistication
   Palette: #2A1F14 #5C4033 #D4A843 #1B6B6B #F5ECD7 #E8A87C #7A8B5A #1A1610
*/

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #2A1F14;
    background-image:
        repeating-linear-gradient(2deg, transparent, transparent 40px, rgba(38,27,16,0.3) 40px, rgba(38,27,16,0.3) 41px),
        repeating-linear-gradient(-1deg, transparent, transparent 60px, rgba(50,36,22,0.2) 60px, rgba(50,36,22,0.2) 61px),
        repeating-linear-gradient(0.5deg, transparent, transparent 80px, rgba(46,33,20,0.15) 80px, rgba(46,33,20,0.15) 81px);
    color: #F5ECD7;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.75;
    overflow-x: hidden;
}

/* Organic Blobs */
.blob {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    opacity: 0.08;
    background: #1B6B6B;
}

.blob-1 {
    width: 300px;
    height: 300px;
    top: 20%;
    left: 60%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: blobMorph1 15s ease-in-out infinite;
}

.blob-2 {
    width: 250px;
    height: 250px;
    top: 60%;
    left: 10%;
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    animation: blobMorph2 18s ease-in-out infinite;
}

@keyframes blobMorph1 {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

@keyframes blobMorph2 {
    0%, 100% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    50% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

/* Hero: Reception */
#reception {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 5vw;
}

.hero-left {
    flex: 2;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: 0.02em;
    color: #D4A843;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-title.visible {
    opacity: 1;
    transform: scale(1);
}

.hero-dot {
    color: #1B6B6B;
}

.hero-tagline {
    font-family: 'Overpass Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #E8A87C;
    margin-top: 16px;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-tagline.visible {
    opacity: 1;
}

.atomic-starburst {
    opacity: 0;
    transition: opacity 1s ease;
}

.atomic-starburst.visible {
    opacity: 1;
}

/* Tapered Divider */
.tapered-divider {
    display: block;
    width: 60%;
    height: 4px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Conversation Areas */
.conversation-area {
    position: relative;
    z-index: 1;
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 5vw;
    gap: 4vw;
    align-items: flex-start;
}

.conversation-area.reverse {
    flex-direction: row-reverse;
}

.content-block {
    flex: 55%;
    background: rgba(42, 31, 20, 0.6);
    border-radius: 0;
    padding: 40px 36px;
    transition: border-radius 0.6s ease;
}

.content-block.rounded {
    border-radius: 16px;
}

.accent-panel {
    flex: 35%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-label {
    font-family: 'Overpass Mono', monospace;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7A8B5A;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    letter-spacing: 0.02em;
    color: #D4A843;
    margin-bottom: 20px;
}

.section-body {
    color: #F5ECD7;
    margin-bottom: 16px;
}

.section-body:last-child {
    margin-bottom: 0;
}

/* Slide Reveal */
.slide-reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-reveal-left.visible,
.slide-reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Olive Accent */
.olive-accent {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #7A8B5A;
    opacity: 0.15;
}

/* Bar Rail Section */
#bar-rail {
    position: relative;
    z-index: 1;
    background: #1B6B6B;
    padding: 60px 5vw;
}

.rail-label {
    color: #F5ECD7;
    text-align: center;
    display: block;
    margin-bottom: 40px;
}

.rail-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.rail-card {
    background: rgba(42, 31, 20, 0.7);
    border-radius: 12px;
    padding: 28px 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.rail-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(26, 22, 16, 0.4);
}

.card-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #D4A843;
    margin-bottom: 12px;
}

.card-body {
    font-size: 0.95rem;
    color: #F5ECD7;
    margin-bottom: 16px;
}

.card-meta {
    font-family: 'Overpass Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: #E8A87C;
}

/* Members Footer */
#members-footer {
    position: relative;
    z-index: 1;
    background: #5C4033;
    text-align: center;
    padding: 60px 24px;
}

.footer-pattern {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4A843, transparent);
    margin: 0 auto 24px;
    opacity: 0.3;
}

.footer-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #D4A843;
}

.footer-tagline {
    font-family: 'Overpass Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #F5ECD7;
    opacity: 0.6;
    margin-top: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    #reception {
        flex-direction: column;
        text-align: center;
    }

    .hero-right {
        margin-top: 40px;
    }

    .conversation-area,
    .conversation-area.reverse {
        flex-direction: column;
    }

    .rail-cards {
        grid-template-columns: 1fr;
    }
}
