/* diplomatic.day */
/* Colors: #1c1c1e, #3a3a38, #2a2a28, #f0ede6, #f0ebe2, #c4a35a, #8a7a5a, #d4c8b0, #5a5a58, #e8e0d0, #b09870, #4a4a48, #0d0d0e, #faf8f2 */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; font-weight: 400; font-size: 16px; line-height: 1.8; background: #f0ede6; color: #1c1c1e; }
.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px; background: #f0ebe2; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: clamp(2.5rem, 8vw, 5rem); color: #1c1c1e; opacity: 0; animation: fadeIn 1.5s ease forwards; }
@keyframes fadeIn { to { opacity: 1; } }
.hero-sub { font-weight: 300; font-size: 16px; color: #8a7a5a; margin-top: 16px; max-width: 500px; opacity: 0; animation: fadeIn 1s 0.8s ease forwards; }
.section { padding: 100px 40px; display: flex; flex-direction: column; align-items: center; text-align: center; background: #f0ede6; }
.section-alt { background: #faf8f2; }
.section-title { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: clamp(2rem, 5vw, 3rem); color: #2a2a28; margin-bottom: 20px; }
.section-text { font-weight: 300; font-size: 17px; color: #5a5a58; max-width: 600px; margin-bottom: 40px; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; max-width: 700px; width: 100%; }
.card { border: 1px solid #d4c8b0; padding: 24px; text-align: left; transition: border-color 0.3s ease; }
.card:hover { border-color: #c4a35a; }
.card h3 { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: #b09870; margin-bottom: 8px; }
.card p { font-size: 14px; color: #5a5a58; }
.site-footer { text-align: center; padding: 40px; background: #1c1c1e; color: #3a3a38; font-family: 'IBM Plex Mono', monospace; font-size: 12px; }
@media (max-width: 768px) { .section { padding: 60px 24px; } .card-grid { grid-template-columns: 1fr; } }
