:root {
  /* Color Palette - Minimalist Lifestyle */
  --bg-primary: #fcfbf8; /* Soft Cream */
  --bg-secondary: #ffffff;
  --text-main: #1a1a1a; /* Almost Black */
  --text-muted: #666666;
  --accent-gold: #c3a479; /* Warm Gold */
  --border-light: #e5e5e5;
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.05);

  /* Typography */
  --font-serif: "Playfair Display", "Shippori Mincho", serif;
  --font-sans: "Inter", "Noto Sans JP", sans-serif;
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .serif {
  font-family: var(--font-serif);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  padding: 40px 0;
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-secondary);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  letter-spacing: 0.2em;
  font-weight: 800;
  text-transform: uppercase;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

nav ul li {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Hero Section */
.hero {
  padding: 100px 0;
  text-align: center;
}

.hero-subtitle {
  font-size: 14px;
  color: var(--accent-gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.hero h1 {
  font-size: 64px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Article Grid */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 60px 40px;
  padding: 60px 0;
}

.article-card {
  display: flex;
  flex-direction: column;
}

.article-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-color: #eee;
  overflow: hidden;
  margin-bottom: 20px;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.article-card:hover .article-image img {
  transform: scale(1.05);
}

.article-category {
  font-size: 12px;
  color: var(--accent-gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.article-title {
  font-size: 24px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.article-excerpt {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.read-more {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--text-main);
  align-self: flex-start;
  padding-bottom: 2px;
}

/* Footer */
footer {
  padding: 100px 0 60px;
  border-top: 1px solid var(--border-light);
  margin-top: 100px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.social-links {
  display: flex;
  gap: 30px;
}

.copyright {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* Article Page Specific */
.article-header {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 20px 60px;
  text-align: center;
}

.article-meta {
  margin-bottom: 30px;
}

.article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 100px;
  font-size: 18px;
  line-height: 1.8;
}

.article-body p {
  margin-bottom: 30px;
}

.article-body h2 {
  font-size: 32px;
  margin: 60px 0 30px;
}

.article-main-image {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 60px;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 40px;
  }
  nav ul {
    display: none; /* simple burger menu needed for later */
  }
  .article-grid {
    grid-template-columns: 1fr;
  }
}
