:root {
  --bg: #f5f0e8;
  --ink: #2c1f18;
  --muted: #5c4a40;
  --gold: #c9a66b;
  --gold-deep: #6b4e2e;
  --card: #fffdf8;
  --line: rgba(44, 31, 24, 0.12);
  --header: #0b0b0b;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  min-height: 100vh;
}

a { color: var(--gold-deep); }

img { max-width: 100%; height: auto; }

.site-header {
  border-bottom: 1px solid rgba(201, 166, 107, 0.28);
  background: var(--header);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-wrap,
.wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}

.brand-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: block;
  border-radius: 10px;
  background: #000;
  object-fit: cover;
}

.hero {
  text-align: center;
  padding: 12px 0 8px;
}

.hero-logo {
  width: 168px;
  height: 168px;
  display: block;
  margin: 0 auto 20px;
  border-radius: 22px;
  background: #000;
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(12, 8, 4, 0.22);
}

.hero-kicker {
  letter-spacing: 0.18em;
  font-size: 13px;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: 2.15rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-name {
  letter-spacing: 0.18em;
  font-size: 13px;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(201, 166, 107, 0.35);
  background: #161616;
  color: #e8d5b0;
  border-radius: 10px;
  padding: 8px 12px;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
}

.site-nav {
  display: flex;
  gap: 18px;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.92rem;
}

.site-nav a {
  text-decoration: none;
  color: #d8c4a0;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #fff;
}

.wrap {
  padding: 40px 20px 72px;
}

header.page-head {
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
  margin-bottom: 28px;
}

h1 { margin: 0 0 8px; font-size: 2rem; }

.meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

h2 { font-size: 1.25rem; margin: 32px 0 12px; }

p, li, td, th, label, button, input, textarea {
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.lede {
  font-size: 1.05rem;
  color: var(--muted);
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 22px;
  overflow-x: auto;
}

.card + .card { margin-top: 16px; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

th, td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th { color: var(--muted); font-weight: 600; }

ul { padding-left: 1.2rem; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 8px;
  justify-content: center;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 14px;
  padding: 12px 18px;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-primary {
  background: #d4af7a;
  color: #23180f;
}

.btn-ghost {
  background: var(--card);
  color: var(--ink);
  border: 1px solid var(--line);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0 8px;
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.feature p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

form.contact-form {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

form.contact-form input,
form.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
  font-size: 1rem;
}

form.contact-form button {
  border: 0;
  cursor: pointer;
  justify-self: start;
}

.site-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 10px;
}

.site-footer a { text-decoration: none; }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #000;
}

code {
  font-size: 0.88em;
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-block; }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    flex-direction: column;
    background: #111;
    border-bottom: 1px solid rgba(201, 166, 107, 0.28);
    padding: 12px 20px 16px;
  }

  .site-nav.is-open { display: flex; }

  .feature-grid { grid-template-columns: 1fr; }

  h1 { font-size: 1.7rem; }
}
