:root {
  --bg: #12141a;
  --bg-muted: #181b23;
  --ink: #e8e6df;
  --ink-dim: #a7a49a;
  --line: #2b2e38;
  --gold: #c9a24b;
  --red: #a3222b;
  --blue: #1f3a63;
  --serif: "Noto Serif Armenian", "Georgia", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3 {
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 16px;
}

.ornament {
  height: 22px;
  background-image: repeating-linear-gradient(
    135deg,
    var(--gold) 0,
    var(--gold) 2px,
    transparent 2px,
    transparent 14px
  ),
  repeating-linear-gradient(
    45deg,
    var(--gold) 0,
    var(--gold) 2px,
    transparent 2px,
    transparent 14px
  );
  background-size: 20px 20px;
  background-position: center;
  opacity: 0.55;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* header */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.brand:hover {
  text-decoration: none;
}

.brand-text {
  font-size: 19px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav a {
  color: var(--ink-dim);
  font-size: 15px;
  letter-spacing: 0.03em;
}

.nav a:hover {
  color: var(--gold);
}

.nav .cta {
  border: 1px solid var(--gold);
  padding: 8px 16px;
  color: var(--gold);
}

.nav .cta:hover {
  background: var(--gold);
  color: var(--bg);
  text-decoration: none;
}

/* hero */
.hero {
  padding: 96px 0 72px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 18px;
}

.hero p {
  max-width: 560px;
  margin: 0 auto 32px;
  color: var(--ink-dim);
  font-size: 17px;
}

.actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid var(--gold);
  letter-spacing: 0.04em;
  font-size: 15px;
}

.btn.primary {
  background: var(--gold);
  color: var(--bg);
}

.btn.primary:hover {
  background: transparent;
  color: var(--gold);
  text-decoration: none;
}

.btn.ghost {
  color: var(--ink);
  border-color: var(--line);
}

.btn.ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  text-decoration: none;
}

/* sections */
.section {
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
}

.section.muted {
  background: var(--bg-muted);
}

.section h2 {
  font-size: 26px;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.grid.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card {
  border: 1px solid var(--line);
  padding: 28px 24px;
  background: var(--bg);
}

.card h3 {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 10px;
}

.card p {
  color: var(--ink-dim);
  font-size: 15px;
  margin: 0;
}

.list {
  max-width: 640px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
  color: var(--ink-dim);
}

.list li:last-child {
  border-bottom: none;
}

.list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.list strong {
  color: var(--ink);
}

#about .container p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--ink-dim);
  text-align: center;
  font-size: 16px;
}

/* contact */
.contact {
  max-width: 460px;
  margin: 0 auto;
  border: 1px solid var(--line);
  padding: 32px;
}

.contact p,
.contact address {
  margin: 0 0 14px;
  font-style: normal;
}

.contact p:last-child,
.contact address:last-child {
  margin-bottom: 0;
}

.contact strong {
  color: var(--gold);
  display: inline-block;
  min-width: 90px;
}

/* footer */
.site-footer {
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer p {
  color: var(--ink-dim);
  font-size: 14px;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--ink-dim);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--gold);
}

@media (max-width: 720px) {
  .nav {
    gap: 16px;
  }
  .nav .cta {
    padding: 6px 12px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .grid.three {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
