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

:root {
  --marble-dark: #0D2818;
  --marble-mid: #1A3A2A;
  --gold: #D4AF37;
  --gold-light: #E8CC6E;
  --gold-dark: #B8922E;
  --black: #0A0A0A;
  --white: #FAFAF8;
  --text-secondary: #9CAA9E;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,175,55,0.1);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-logo:hover { text-decoration: none; color: var(--gold); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.2rem;
}
.nav-links a {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); text-decoration: none; }
.nav-links a.active { color: var(--gold); }

/* ============ MAIN ============ */
.page-main {
  max-width: 860px;
  margin: 0 auto;
  padding: 140px 2rem 80px;
}
.page-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--white);
}
.page-title .gold { color: var(--gold); font-style: italic; }
.page-subtitle {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  letter-spacing: 0.03em;
}
.page-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 3rem 0;
}
.page-main h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gold);
  margin: 2.5rem 0 1rem;
  letter-spacing: 0.01em;
}
.page-main h3 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin: 1.8rem 0 0.6rem;
  letter-spacing: 0.02em;
}
.page-main p,
.page-main li {
  font-family: var(--sans);
  font-size: 0.94rem;
  color: rgba(250,250,248,0.82);
  margin-bottom: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
}
.page-main ul,
.page-main ol {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}
.page-main li { margin-bottom: 0.4rem; }
.page-main strong { color: var(--gold-light); font-weight: 500; }

/* ============ FOOTER ============ */
.footer {
  padding: 3rem 2rem 2rem;
  background: var(--black);
  border-top: 1px solid rgba(212,175,55,0.1);
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-copy {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 300;
}
.footer-links {
  display: flex;
  list-style: none;
  gap: 1.8rem;
}
.footer-links a {
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); text-decoration: none; }
.footer-legal {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212,175,55,0.15);
  text-align: center;
}
.footer-legal-line {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: rgba(250,250,248,0.55);
  line-height: 1.6;
  margin-bottom: 0.3rem;
}
.footer-legal-line strong { color: var(--gold); font-weight: 500; }
.footer-legal-line a { color: var(--gold); }

/* ============ FORM ============ */
.contact-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 560px;
}
.contact-form label {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}
.contact-form input,
.contact-form textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 0.9rem 1rem;
  background: rgba(26,58,42,0.25);
  border: 1px solid rgba(212,175,55,0.2);
  color: var(--white);
  outline: none;
  transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 0.95rem 2rem;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  align-self: flex-start;
}
.btn-gold:hover {
  background: var(--gold-light);
  text-decoration: none;
  transform: translateY(-2px);
}

/* ============ BLOG LIST ============ */
.post-list { list-style: none; padding: 0; }
.post-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(212,175,55,0.1);
}
.post-item:last-child { border: none; }
.post-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.post-title a { color: var(--white); }
.post-title a:hover { color: var(--gold); text-decoration: none; }
.post-meta {
  font-size: 0.78rem;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.post-excerpt {
  color: rgba(250,250,248,0.7);
  font-size: 0.95rem;
  font-weight: 300;
}
.empty-state {
  padding: 3rem 2rem;
  text-align: center;
  border: 1px dashed rgba(212,175,55,0.2);
  color: var(--text-secondary);
  font-style: italic;
}

/* ============ MOBILE ============ */
@media (max-width: 768px) {
  .nav { padding: 0 1rem; }
  .nav-links { display: none; }
  .page-main { padding: 110px 1.2rem 60px; }
  .footer-inner { flex-direction: column; text-align: center; gap: 1.2rem; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
