:root {
  --bg: #111111;
  --surface: #1a1a1a;
  --text: #f5f0e8;
  --muted: #b8aa96;
  --gold: #d5aa6d;
  --gold-dark: #9b6f45;
  --border: rgba(213, 170, 109, 0.25);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Segoe UI", Heebo, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}
.wrap { width: min(1140px, calc(100% - 32px)); margin: 0 auto; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: #e8c995; }
img { max-width: 100%; display: block; }

.site-header {
  background: rgba(17,17,17,0.96);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 10;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 78px; gap: 20px;
}
.logo img { height: 48px; width: auto; }
.main-nav { display: flex; gap: 22px; }
.main-nav a { color: var(--text); font-weight: 600; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.08em; }
.main-nav a.active, .main-nav a:hover { color: var(--gold); }

.hero {
  min-height: 68vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
}
.hero-slider { position: relative; z-index: 1; text-align: center; padding: 48px 24px; }
.hero-slide { display: none; }
.hero-slide.active { display: block; }
.hero-slide span {
  display: block;
  font-family: Georgia, "Playfair Display", serif;
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 1.2;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section { padding: 56px 0; }
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.8rem; }
.section h2 { margin: 8px 0 24px; font-family: Georgia, "Playfair Display", serif; font-size: clamp(1.6rem, 3vw, 2.2rem); }

.features { background: #0d0d0d; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.features-grid article {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: 8px;
}
.features-grid h3 { margin: 0 0 12px; color: var(--gold); }

.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: center; }
.about-image img { border-radius: 8px; width: 100%; object-fit: cover; }
.about-copy ul { padding-left: 18px; color: var(--muted); }

.services-section { background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}
.service-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.service-card h3 { margin: 16px 16px 8px; color: var(--gold); }
.service-card span { display: block; padding: 0 16px 18px; color: var(--muted); font-size: 0.9rem; }

.contact-band { text-align: center; background: #0d0d0d; }
.btn {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 24px;
  background: var(--gold);
  color: #111 !important;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none !important;
}
.btn:hover { background: var(--gold-dark); color: #fff !important; }

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.news-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.news-card a { color: inherit; text-decoration: none; display: block; }
.news-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.news-card div { padding: 16px; }
.news-card h3 { margin: 8px 0 0; font-size: 1rem; line-height: 1.35; }
.meta { color: var(--muted); font-size: 0.85rem; }

.prose {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 32px;
}
.prose p { margin: 0 0 16px; }
.prose h2 { color: var(--gold); margin: 24px 0 12px; }
.article-hero, .service-hero { margin: 20px 0; border-radius: 8px; overflow: hidden; }
.back-link { display: inline-block; margin-bottom: 16px; }

.contact-box {
  margin: 24px 0;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.contact-note { color: var(--muted); }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

@media (max-width: 900px) {
  .features-grid, .about-grid, .services-grid, .news-grid { grid-template-columns: 1fr; }
}
