@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

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

:root {
  --black: #0d0d0d;
  --charcoal: #1a1a1a;
  --dark-grey: #2a2a2a;
  --gold: #c9a96e;
  --gold-light: #e8d5a8;
  --cream: #f5f0e8;
  --off-white: #faf9f7;
  --text: #e0e0e0;
  --text-muted: #999;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text);
  background: var(--black);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
header {
  background: var(--charcoal);
  border-bottom: 1px solid var(--dark-grey);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.brand svg {
  width: 32px;
  height: 32px;
}

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

/* Hero */
.hero {
  text-align: center;
  padding: 7rem 2rem;
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
  border-bottom: 1px solid var(--dark-grey);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

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

/* Sections */
section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--dark-grey);
}

section.light-bg {
  background: var(--charcoal);
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

p { margin-bottom: 1rem; }

a { color: var(--gold); }

/* Grid */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Cards */
.card {
  background: var(--charcoal);
  border: 1px solid var(--dark-grey);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.2s;
}

.card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
}

.hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* Buttons */
.btn {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  padding: 0.8rem 2rem;
  border: 1px solid var(--gold);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}

.btn:hover {
  background: var(--gold);
  color: var(--black);
}

/* Article */
.article-content {
  max-width: 740px;
  margin: 0 auto;
}

.article-content h2 {
  margin-top: 2.5rem;
}

.article-content ul, .article-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.article-content li {
  margin-bottom: 0.6rem;
}

.article-content blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-muted);
}

/* Footer */
footer {
  background: var(--charcoal);
  border-top: 1px solid var(--dark-grey);
  color: var(--text-muted);
  padding: 4rem 0 2rem;
}

footer .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}

footer h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

footer a {
  color: var(--text-muted);
  text-decoration: none;
}

footer a:hover {
  color: var(--gold);
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--dark-grey);
  font-size: 0.8rem;
  grid-column: 1 / -1;
  letter-spacing: 0.05em;
}

/* Mobile */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .hero { padding: 4rem 1.5rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  footer .container { grid-template-columns: 1fr; }
  .nav-links { gap: 1.2rem; }
  .nav-links a { font-size: 0.75rem; }
  .card img { height: 220px; }
}

@media (max-width: 480px) {
  header nav { flex-direction: column; gap: 0.75rem; }
  .hero h1 { font-size: 1.8rem; }
  .container { padding: 0 1rem; }
}

.brand-icon { width: 24px; height: 24px; flex-shrink: 0; vertical-align: middle; margin-right: 6px; }
