:root {
  --ink: #0a0a0a;
  --bone: #f0ece4;
  --gold: #c9a84c;
  --gold-light: #e8d49a;
  --warm-white: #faf8f4;
  --mid: #6b6560;
  --accent: #1a1410;
}

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

body {
  background: var(--ink);
  color: var(--bone);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 60px; }

/* ============ NAV ============ */
.site-nav {
  position: sticky; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 60px;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(240,236,228,0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.25em;
  color: var(--bone);
}
.logo span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240,236,228,0.7);
  transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  font-size: 0.65rem !important;
  letter-spacing: 0.2em !important;
  color: var(--bone) !important;
  border: 1px solid rgba(201,168,76,0.5);
  padding: 12px 26px;
  transition: all 0.3s ease;
}
.nav-cta:hover { background: var(--gold); color: var(--ink) !important; border-color: var(--gold); }

/* ============ PAGE HEADER (services/blog) ============ */
.page-header {
  padding: 160px 60px 80px;
  border-bottom: 1px solid rgba(240,236,228,0.06);
}
.eyebrow {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1;
  max-width: 800px;
}
.page-title em { font-style: italic; color: var(--gold); }
.page-sub {
  font-size: 0.85rem;
  font-weight: 200;
  color: rgba(240,236,228,0.45);
  max-width: 480px;
  line-height: 1.9;
  margin-top: 32px;
}

/* ============ SERVICES GRID ============ */
.services-section { padding: 100px 60px 160px; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.service-item {
  padding: 56px 0;
  border-top: 1px solid rgba(240,236,228,0.08);
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 32px;
  transition: all 0.4s ease;
  position: relative;
}
.service-item:nth-child(odd) { padding-right: 60px; border-right: 1px solid rgba(240,236,228,0.08); }
.service-item:nth-child(even) { padding-left: 60px; }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  color: var(--gold);
  margin-top: 6px;
}
.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}
.service-item:hover .service-title { color: var(--gold); }
.service-desc {
  font-size: 0.78rem;
  font-weight: 200;
  line-height: 1.9;
  color: rgba(240,236,228,0.45);
  max-width: 320px;
}

/* ============ BLOG GRID ============ */
.blog-section { padding: 100px 60px 160px; }
.post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 48px; margin-top: 20px; }
.post-card {
  border-top: 1px solid rgba(240,236,228,0.1);
  padding-top: 28px;
  transition: transform 0.4s ease;
}
.post-card:hover { transform: translateY(-4px); }
.post-card img {
  width: 100%; height: 220px; object-fit: cover;
  margin-bottom: 24px;
  filter: grayscale(15%);
  transition: filter 0.4s ease;
}
.post-card:hover img { filter: grayscale(0%); }
.post-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 14px;
  transition: color 0.3s ease;
}
.post-card:hover h3 { color: var(--gold); }
.post-card .excerpt {
  font-size: 0.78rem;
  font-weight: 200;
  line-height: 1.8;
  color: rgba(240,236,228,0.4);
  margin-bottom: 18px;
}
.post-card .date {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.empty-note { color: rgba(240,236,228,0.4); font-size: 0.85rem; }

/* ============ BLOG SINGLE ============ */
.blog-single { max-width: 800px; margin: 0 auto; padding: 100px 40px 140px; }
.blog-single .eyebrow { justify-content: center; }
.blog-single h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.05;
  text-align: center;
  margin-bottom: 24px;
}
.blog-single .meta {
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 48px;
}
.blog-single > img {
  width: 100%; max-height: 460px; object-fit: cover;
  margin-bottom: 48px;
  border: 1px solid rgba(240,236,228,0.08);
}
.blog-single .back-link {
  display: inline-block;
  margin-top: 56px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,0.4);
  padding-bottom: 4px;
  transition: opacity 0.3s ease;
}
.blog-single .back-link:hover { opacity: 0.7; }

/* Rich content typography (from the Quill editor) */
.content { font-size: 1.05rem; font-weight: 200; line-height: 1.95; color: rgba(240,236,228,0.75); }
.content h1, .content h2, .content h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; color: var(--bone); }
.content h1 { font-size: 2.2rem; margin: 40px 0 16px; }
.content h2 { font-size: 1.8rem; margin: 36px 0 14px; }
.content h3 { font-size: 1.4rem; margin: 28px 0 12px; }
.content p { margin-bottom: 20px; }
.content ul, .content ol { margin: 0 0 20px 26px; }
.content li { margin-bottom: 8px; }
.content blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  margin: 32px 0;
}
.content img { max-width: 100%; height: auto; margin: 28px 0; border: 1px solid rgba(240,236,228,0.08); }
.content a { color: var(--gold); text-decoration: underline; }

/* ============ CONTACT SECTION (fallback) ============ */
.contact-section { padding: 100px 60px 160px; text-align: center; }
.contact-section a { color: var(--gold); }

/* ============ FOOTER ============ */
.site-footer {
  padding: 60px;
  border-top: 1px solid rgba(240,236,228,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 0.25em; color: rgba(240,236,228,0.2); }
.footer-logo span { color: rgba(201,168,76,0.3); }
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.85rem; color: rgba(240,236,228,0.2); letter-spacing: 0.1em; }
.footer-copy { font-size: 0.6rem; letter-spacing: 0.15em; color: rgba(240,236,228,0.15); text-transform: uppercase; }
.footer-copy a { color: inherit; }

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

.content, .content * {
  color: rgba(240,236,228,0.85) !important;
  background: transparent !important;
}
.content h1, .content h2, .content h3, .content strong, .content b {
  color: #f0ece4 !important;
}
.content a {
  color: #c9a84c !important;
}