/* ============ SHARED STYLES ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
a { color: inherit; text-decoration: none; }

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --gold: #c9a84c;
  --gold-light: #d4b85a;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --cream: #f5f0e8;
  --cream-dim: rgba(245, 240, 232, 0.7);
  --cream-faint: rgba(245, 240, 232, 0.4);
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--black);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

/* SECTION HERO */
.section-hero {
  min-height: 60vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.section-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 4rem 6rem;
}

.section-hero-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-hero-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--gold-dim), transparent);
  max-width: 120px;
}

.section-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.section-hero-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--cream-dim);
  max-width: 480px;
}

.section-hero-image {
  position: relative;
  overflow: hidden;
}

.section-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--black) 0%, transparent 30%),
              linear-gradient(to top, var(--black) 0%, transparent 15%);
}

/* CONTENT GRID */
.content-area {
  padding: 5rem 6rem;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2.5rem;
}

/* ARTICLE CARD */
.article-card {
  background: var(--dark);
  border: 1px solid rgba(201, 168, 76, 0.06);
  border-radius: 3px;
  overflow: hidden;
  transition: all 0.4s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.article-card:hover {
  border-color: rgba(201, 168, 76, 0.15);
  transform: translateY(-3px);
}

.article-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.9);
  transition: all 0.5s ease;
}

.article-card:hover .article-card-image {
  filter: brightness(0.9) saturate(1);
}

.article-card-body {
  padding: 1.8rem;
}

.article-card-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: inline-block;
}

.article-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

.article-card-excerpt {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--cream-faint);
}

.article-card-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--cream-faint);
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 168, 76, 0.06);
}

/* EMPTY STATE */
.coming-soon {
  text-align: center;
  padding: 4rem 2rem;
  grid-column: 1 / -1;
}

.coming-soon-icon {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--gold-dim);
  margin-bottom: 1.5rem;
}

.coming-soon h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  color: var(--cream-dim);
}

.coming-soon p {
  font-size: 0.85rem;
  color: var(--cream-faint);
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FEATURED ARTICLE (full width at top) */
.featured-article {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--dark);
  border: 1px solid rgba(201, 168, 76, 0.06);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 3rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s ease;
}

.featured-article:hover {
  border-color: rgba(201, 168, 76, 0.15);
}

.featured-article-image {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  filter: brightness(0.75);
  transition: filter 0.5s ease;
}

.featured-article:hover .featured-article-image {
  filter: brightness(0.85);
}

.featured-article-body {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-article-body .article-card-tag { margin-bottom: 1rem; }

.featured-article-body .article-card-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.featured-article-body .article-card-excerpt {
  font-size: 0.9rem;
  line-height: 1.8;
}

/* FOOTER */
footer {
  padding: 4rem 6rem;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-text {
  font-size: 0.7rem;
  color: var(--cream-faint);
  letter-spacing: 0.1em;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .section-hero { grid-template-columns: 1fr; min-height: 70vh; }
  .section-hero-content { padding: 8rem 3rem 3rem; position: absolute; inset: 0; z-index: 2; justify-content: flex-end; }
  .section-hero-image { position: absolute; inset: 0; }
  .section-hero-image::after { background: linear-gradient(to top, var(--black) 20%, rgba(10,10,10,0.5) 60%, rgba(10,10,10,0.3) 100%); }
  .content-area { padding: 4rem 3rem; }
  .featured-article { grid-template-columns: 1fr; }
  nav { padding: 1rem 2rem; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 640px) {
  .content-area { padding: 3rem 1.5rem; }
  .content-grid { grid-template-columns: 1fr; }
  .section-hero-content { padding: 6rem 1.5rem 2.5rem; }
  .nav-links { display: none; }
  footer { padding: 3rem 1.5rem; }
}
