:root {
  --color-bg: #f7f3ec;
  --color-ink: #2b2620;
  --color-gold: #a8823d;
  --color-line: #cdbfa5;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: 'Cormorant Garamond', serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6vh 6vw;
  position: relative;
}

.page__ornament {
  width: 1px;
  height: 60px;
  background: var(--color-line);
}

.page__ornament--top {
  margin-bottom: 2.5rem;
}

.page__ornament--bottom {
  margin-top: 2.5rem;
}

.page__content {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.page__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.page__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}

.page__title-en {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.page__title-ar {
  font-family: 'Amiri', serif;
  font-size: clamp(1.6rem, 4.2vw, 2.7rem);
  font-weight: 700;
  line-height: 1.6;
}

.page__divider {
  color: var(--color-gold);
  font-size: 0.9rem;
}

.page__subtitle {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 1.05rem;
  color: #6b6355;
  font-style: italic;
}

.page__subtitle span[dir="rtl"] {
  font-family: 'Amiri', serif;
  font-style: normal;
  font-size: 1.1rem;
}

.page__location {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--color-gold);
  text-transform: uppercase;
}

.page__location span[dir="rtl"] {
  font-family: 'Amiri', serif;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
}
