@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700&family=Crimson+Pro:ital,wght@0,400;0,600;1,400&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0b0d14;
  color: #d6c9a8;
  font-family: 'Crimson Pro', serif;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, #0b0d14 0%, #161a2b 60%, #0b0d14 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 40%, rgba(180,140,60,0.13) 0%, transparent 70%);
  pointer-events: none;
}

.hero img {
  width: 100%;
  max-width: 900px;
  height: 500px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(180,140,60,0.35);
  margin-bottom: 1.5rem;
}

/* ── Typography ── */
h1 {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  color: #e8d5a0;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin: 0 0 0.5rem;
  text-shadow: 0 0 40px rgba(200,155,50,0.25);
}

.subtitle {
  font-style: italic;
  color: rgba(214,201,168,0.6);
  letter-spacing: 0.06em;
  font-size: 2.05rem;
}

h2 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.9rem;
  color: #b48c3c;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

h2::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(180,140,60,0.25);
}

p, li {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #c9bca0;
}

a {
  color: #d4aa58;
  text-decoration: none;
  border-bottom: 1px solid rgba(212,170,88,0.35);
}

a:hover {
  color: #e8c870;
  border-bottom-color: rgba(232,200,112,0.6);
}

/* ── Divider ── */
.divider {
  width: 120px;
  height: 1px;
  margin: 2rem auto;
  background: linear-gradient(90deg, transparent, rgba(180,140,60,0.6), transparent);
}

/* ── Body ── */
.body {
  padding: 0 1.5rem 3rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ── Image grid ── */
.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 2rem;
}

.image-card {
  position: relative;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(180,140,60,0.2);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.image-card:hover img {
  opacity: 1;
}

.image-card span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4px 8px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(230,210,170,0.8);
  background: rgba(11,13,20,0.6);
}

/* ── Sections ── */
section {
  margin-bottom: 2rem;
}

/* ── Rules list ── */
ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

li {
  padding-left: 1.4rem;
  position: relative;
}

li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: #b48c3c;
  font-size: 0.5rem;
  top: 0.45rem;
}

nav {
  padding: 1rem 1.5rem;
  background: rgba(11,13,20,0.95);
  border-bottom: 1px solid rgba(180,140,60,0.2);
}

nav a {
  margin-right: 20px;
  color: #b48c3c;
  text-decoration: none;
  font-family: 'Crimson Pro', serif;
  letter-spacing: 0.05em;
  font-size: 1rem;
}

nav a:hover {
  color: #e8c870;
}