:root {
  --ink: #111118;
  --ink-light: #1e1e28;
  --gold: #C5A065;
  --gold-light: #e8d5b0;
  --text: #e8e8ee;
  --text-muted: #8888a0;
  --border: rgba(197,160,101,0.15);
  --radius: 4px;
  --max: 1100px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--text);
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
  min-height: 100vh;
}

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(17,17,24,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: 'Georgia', serif;
  font-size: 0.9rem;
  font-weight: normal;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
}
.nav-logo span { color: var(--text-muted); font-size: 0.75rem; display: block; letter-spacing: 0.08em; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: 'Georgia', serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-menu-btn { display: none; background: none; border: none; color: var(--gold); cursor: pointer; font-size: 1.4rem; }

/* HERO */
.hero {
  min-height: 92vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(197,160,101,0.07) 0%, transparent 70%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(197,160,101,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,160,101,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max);
  margin: 0 auto; padding: 6rem 2rem;
}
.hero-label {
  font-size: 0.7rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'Georgia', serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: normal;
  line-height: 1.15;
  color: var(--text);
  max-width: 800px;
  margin-bottom: 1.5rem;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 560px; margin-bottom: 2.5rem; line-height: 1.8;
}
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-family: 'Georgia', serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  border-radius: var(--radius);
}
.btn:hover { background: var(--gold); color: var(--ink); }
.btn-ghost { border-color: rgba(197,160,101,0.3); color: var(--text-muted); margin-left: 1rem; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: transparent; }

/* SECTIONS */
section { padding: 6rem 2rem; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-label {
  font-size: 0.7rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
section h2 {
  font-family: 'Georgia', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: normal;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}
section p { color: var(--text-muted); margin-bottom: 1.25rem; max-width: 680px; }

/* DIVIDER */
.divider { height: 1px; background: var(--border); max-width: var(--max); margin: 0 auto; }

/* GRID CARDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.card {
  background: var(--ink-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.2s;
}
.card:hover { border-color: rgba(197,160,101,0.4); }
.card-icon { font-size: 1.5rem; margin-bottom: 1rem; color: var(--gold); }
.card h3 { font-family: 'Georgia', serif; font-size: 1.05rem; font-weight: normal; color: var(--text); margin-bottom: 0.75rem; }
.card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* 2-COL LAYOUT */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.two-col-text { }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; gap: 2rem; } }

/* TABLE */
table { width: 100%; border-collapse: collapse; margin-top: 2rem; }
th {
  text-align: left; padding: 0.75rem 1rem;
  font-family: 'Georgia', serif; font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid var(--border);
  font-weight: normal;
}
td { padding: 0.875rem 1rem; color: var(--text-muted); font-size: 0.9rem; border-bottom: 1px solid rgba(197,160,101,0.06); vertical-align: top; }
td strong { color: var(--text); font-weight: normal; }

/* BREADCRUMB */
.breadcrumb {
  font-size: 0.75rem; letter-spacing: 0.08em;
  color: var(--text-muted); margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* PAGE HEADER */
.page-header {
  padding: 6rem 2rem 4rem;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(197,160,101,0.05) 0%, transparent 70%);
}
.page-header-inner { max-width: var(--max); margin: 0 auto; }
.page-header h1 { font-family: 'Georgia', serif; font-size: clamp(1.8rem, 4vw, 3rem); font-weight: normal; color: var(--text); margin-bottom: 1rem; }
.page-header p { color: var(--text-muted); max-width: 600px; font-size: 1.05rem; }

/* BLOCKQUOTE */
blockquote {
  border-left: 2px solid var(--gold);
  margin: 2rem 0; padding: 1rem 2rem;
  color: var(--text-muted); font-style: italic;
  background: var(--ink-light);
}

/* CONTACT FORM */
.form-group { margin-bottom: 1.5rem; }
label { display: block; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
input, textarea, select {
  width: 100%; background: var(--ink-light);
  border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--text); padding: 0.75rem 1rem;
  font-family: 'Georgia', serif; font-size: 0.95rem;
  transition: border-color 0.2s;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: rgba(197,160,101,0.5); }
textarea { min-height: 140px; resize: vertical; }
select option { background: var(--ink-light); }

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  background: var(--ink);
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.75rem; max-width: 280px; }
.footer-col h4 { font-family: 'Georgia', serif; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; font-weight: normal; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { max-width: var(--max); margin: 2rem auto 0; padding-top: 2rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }

/* MOBILE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; gap: 0; position: absolute; top: 64px; left: 0; right: 0; background: var(--ink); border-bottom: 1px solid var(--border); padding: 1rem 2rem; }
  .nav-menu-btn { display: block; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 580px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* MISC */
.gold { color: var(--gold); }
.tag {
  display: inline-block; padding: 0.25rem 0.75rem;
  border: 1px solid var(--border); border-radius: 2px;
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-right: 0.5rem; margin-bottom: 0.5rem;
}
.lead { font-size: 1.1rem; color: var(--text); line-height: 1.75; }
hr.section-rule { border: none; border-top: 1px solid var(--border); margin: 3rem 0; }
ul.styled { list-style: none; padding: 0; }
ul.styled li { padding: 0.5rem 0; border-bottom: 1px solid var(--border); color: var(--text-muted); font-size: 0.95rem; }
ul.styled li::before { content: '—'; color: var(--gold); margin-right: 0.75rem; }
