/* Salt Style Home News - Shio Zen Design */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap');

:root {
  --white: #faf8f5; --cream: #f2ede6; --sand: #e6dfd5; --beige: #c4ad94;
  --concrete: #8a8580; --stone: #6e6963; --charcoal: #2e2b28;
  --text-primary: #2e2b28; --text-secondary: #5a5652; --text-muted: #8a8580;
  --bg-main: #faf8f5; --bg-section: #f2ede6; --bg-card: #ffffff;
  --border: rgba(138,133,128,0.2); --border-hover: rgba(196,173,148,0.5);
  --transition: all 0.4s cubic-bezier(0.25,0.1,0.25,1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Noto Sans JP', sans-serif; font-size: 16px; line-height: 1.9; color: var(--text-primary); background: var(--bg-main); }
a { color: var(--stone); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--beige); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(250,248,245,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.header-content { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--charcoal); letter-spacing: 0.08em; }
.nav-menu { display: flex; list-style: none; gap: 2px; flex-wrap: wrap; justify-content: flex-end; }
.nav-item a { display: block; padding: 8px 11px; font-size: 0.78rem; color: var(--text-muted); border-radius: 4px; white-space: nowrap; }
.nav-item a:hover { color: var(--charcoal); background: var(--sand); }
.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--charcoal); cursor: pointer; padding: 8px; }

.news-hero { margin-top: 68px; padding: 56px 0; background: var(--bg-section); border-bottom: 1px solid var(--border); text-align: center; }
.news-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 500; }

.news-content { padding: 56px 0; }
.news-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.news-item, .news-list li { background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px; padding: 20px; transition: var(--transition); }
.news-item:hover, .news-list li:hover { border-color: var(--border-hover); }
.news-item h2, .news-item h3 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.news-item p { font-size: 0.88rem; color: var(--text-muted); }
.news-item small { font-size: 0.78rem; color: var(--text-muted); }
.glossary-link { color: var(--stone); border-bottom: 1px dotted var(--concrete); }

footer { background: var(--charcoal); color: var(--sand); padding: 56px 0 28px; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-section h3 { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--cream); margin-bottom: 14px; }
.footer-section p { font-size: 0.82rem; color: var(--concrete); }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 6px; }
.footer-section ul li a { font-size: 0.82rem; color: var(--concrete); }
.footer-section ul li a:hover { color: var(--cream); }
.footer-bottom { border-top: 1px solid rgba(138,133,128,0.25); padding-top: 20px; text-align: center; }
.footer-bottom p { font-size: 0.75rem; color: var(--concrete); }

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-menu { position: fixed; top: 0; right: -100%; width: 260px; height: 100vh; background: var(--bg-main); flex-direction: column; padding: 80px 24px 40px; transition: var(--transition); border-left: 1px solid var(--border); overflow-y: auto; }
  .nav-menu.active { right: 0; }
  .nav-item a { padding: 12px 16px; font-size: 0.9rem; }
  .footer-content { grid-template-columns: 1fr; }
}
