/* hil.st */
/* Colors: #1B1F3B, #2E3A59, #5C6B8A, #8E96AD, #F0EDE8, #D4CFC5, #B5654A, #15161A */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Karla', sans-serif; font-weight: 400; font-size: 16px; line-height: 1.85; background: #1B1F3B; color: #C8C4BC; overflow-x: hidden; }
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: #1B1F3B; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(3rem, 8vw, 5rem); color: #8E96AD; letter-spacing: 0.08em; opacity: 0; animation: fadeIn 2s 1.5s ease forwards; }
@keyframes fadeIn { to { opacity: 1; } }
.ridge { min-height: 80vh; display: flex; align-items: center; padding: 100px 40px; transition: background 0.3s ease; }
.ridge-1 { background: #2E3A59; }
.ridge-2 { background: #5C6B8A; }
.ridge-3 { background: #8E96AD; }
.ridge-4 { background: #F0EDE8; min-height: 60vh; justify-content: center; }
.ridge-content { max-width: 480px; }
.ridge-left { margin-right: auto; margin-left: 10%; }
.ridge-right { margin-left: auto; margin-right: 10%; }
.ridge-heading { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(2rem, 4vw, 3rem); color: #F0EDE8; letter-spacing: 0.08em; margin-bottom: 16px; }
.ridge-3 .ridge-heading { color: #1B1F3B; }
.ridge-text { color: #D4CFC5; font-size: 16px; max-width: 38em; }
.ridge-3 .ridge-text { color: #2E3A59; }
.ink-dot { display: block; width: 12px; height: 12px; border-radius: 50%; background: #B5654A; margin: 0 auto; animation: pulse 6s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }
.site-footer { text-align: center; padding: 60px 40px; background: #F0EDE8; }
.site-footer p { font-family: 'IBM Plex Mono', monospace; font-weight: 300; font-size: 11px; color: #8A8680; letter-spacing: 0.06em; }
@media (max-width: 768px) { .ridge { padding: 60px 24px; } .ridge-left, .ridge-right { margin: 0 auto; } }
