/* ── Shared styles for inner pages ─────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: #06080f;
  color: #c8c0b4;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ──────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  background: rgba(6, 8, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 168, 106, 0.08);
}

.site-nav .nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.3rem;
  letter-spacing: 0.25em;
  color: #efe8d8;
  text-decoration: none;
  transition: color 0.3s;
}

.site-nav .nav-logo:hover { color: #c4a86a; }

.site-nav .nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.site-nav .nav-link {
  color: rgba(200, 190, 170, 0.6);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active { color: #c4a86a; }

/* Mobile nav */
.nav-toggle { display: none; }

@media (max-width: 640px) {
  .site-nav { padding: 1rem 1.5rem; }

  .nav-toggle {
    display: block;
    background: none;
    border: none;
    color: #c8c0b4;
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0.25rem;
  }

  .site-nav .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(6, 8, 15, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.5rem;
    gap: 1.2rem;
    border-bottom: 1px solid rgba(196, 168, 106, 0.08);
  }

  .site-nav .nav-links.open { display: flex; }
}

/* ── Page wrapper ────────────────────────────────── */
.page {
  max-width: 820px;
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
}

/* ── Typography ──────────────────────────────────── */
.page h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 5.5vw, 3.2rem);
  color: #efe8d8;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.page h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  color: #d8ceb8;
  margin-top: 3rem;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.page h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(1.2rem, 2.8vw, 1.55rem);
  color: #c4a86a;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.page p {
  margin-bottom: 1.3rem;
  font-size: 1.15rem;
}

.page-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.8vw, 1.35rem);
  color: #a89870;
  margin-bottom: 2.5rem;
}

/* ── Divider ─────────────────────────────────────── */
.section-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c4a86a44, transparent);
  margin: 3rem auto;
  border: none;
}

/* ── Article styles ──────────────────────────────── */
.article-meta {
  font-size: 0.85rem;
  color: #7a7060;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.article-body ul, .article-body ol {
  margin-bottom: 1.2rem;
  padding-left: 1.5rem;
}

.article-body li {
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
}

.article-body li::marker {
  color: #c4a86a;
}

.article-body strong {
  color: #d8ceb8;
  font-weight: 400;
}

.article-body blockquote {
  border-left: 2px solid #c4a86a33;
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  color: #a89870;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
}

/* ── Highlight box ───────────────────────────────── */
.highlight-box {
  background: rgba(196, 168, 106, 0.05);
  border: 1px solid rgba(196, 168, 106, 0.12);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.highlight-box h3 {
  margin-top: 0;
}

/* ── Service cards ───────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 540px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}

.service-card {
  background: rgba(196, 168, 106, 0.04);
  border: 1px solid rgba(196, 168, 106, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  transition: border-color 0.3s, background 0.3s;
}

.service-card:hover {
  border-color: rgba(196, 168, 106, 0.25);
  background: rgba(196, 168, 106, 0.07);
}

.service-card h3 {
  margin-top: 0;
  font-size: 1.4rem;
}

.service-card p {
  font-size: 1.05rem;
  color: #a09888;
  margin-bottom: 0;
}

/* ── CTA section ─────────────────────────────────── */
.cta-section {
  text-align: center;
  margin: 4rem 0 2rem;
  padding: 3rem 2rem;
  background: rgba(196, 168, 106, 0.03);
  border: 1px solid rgba(196, 168, 106, 0.08);
  border-radius: 12px;
}

.cta-section h2 {
  margin-top: 0;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
  padding: 0.75rem 2rem;
  border: 1px solid rgba(196, 168, 106, 0.3);
  border-radius: 100px;
  color: #d8d2c4;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.1em;
  transition: all 0.4s ease;
}

.cta-btn:hover {
  border-color: #c4a86a;
  color: #efe8d8;
  background: rgba(196, 168, 106, 0.1);
  box-shadow: 0 0 30px rgba(196, 168, 106, 0.12);
}

.cta-btn svg {
  width: 20px;
  height: 20px;
}

/* ── Footer ──────────────────────────────────────── */
.site-footer {
  border-top: 1px solid rgba(196, 168, 106, 0.08);
  padding: 2.5rem 2rem;
  text-align: center;
  color: #5a5448;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.site-footer a {
  color: #8a7e6a;
  text-decoration: none;
  transition: color 0.3s;
}

.site-footer a:hover { color: #c4a86a; }

/* ── Related articles ────────────────────────────── */
.related-articles {
  margin-top: 3rem;
}

.related-articles h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.related-link {
  display: block;
  padding: 1rem 1.5rem;
  margin-bottom: 0.75rem;
  background: rgba(196, 168, 106, 0.04);
  border: 1px solid rgba(196, 168, 106, 0.08);
  border-radius: 8px;
  color: #c8c0b4;
  text-decoration: none;
  transition: all 0.3s;
}

.related-link:hover {
  border-color: rgba(196, 168, 106, 0.2);
  background: rgba(196, 168, 106, 0.07);
  color: #efe8d8;
}

.related-link .related-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: #d8ceb8;
}

.related-link .related-desc {
  font-size: 0.85rem;
  color: #7a7060;
  margin-top: 0.3rem;
}
