/* ── Fonts ────────────────────────────────────────── */
@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/DMSans_24pt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/DMSans_24pt-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/DMSans_24pt-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("assets/fonts/PlayfairDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("assets/fonts/PlayfairDisplay-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gulzar";
  src: url("assets/fonts/Gulzar-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ── Brand tokens ─────────────────────────────────── */
:root {
  --color-bg: #0f2418;
  --color-bg-card: #192d21;
  --color-gold: #d4a853;
  --color-body: #f9f5ee;
  --color-muted: #9b8e7e;
  --color-border: rgba(255, 255, 255, 0.06);
  --color-border-strong: rgba(255, 255, 255, 0.12);

  --font-ui: "DM Sans", sans-serif;
  --font-wordmark: "Playfair Display", serif;
}

/* ── Reset ────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-body);
  font-family: var(--font-ui);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.15s;
}

a:hover {
  color: var(--color-body);
}

/* ── Logo lockup ──────────────────────────────────── */
.lockup {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lockup svg {
  height: 3.5rem;
  width: auto;
  flex-shrink: 0;
}

.wordmark {
  font-family: var(--font-wordmark);
  font-weight: 500;
  font-size: 3rem;
  color: var(--color-gold);
  line-height: 1;
  letter-spacing: -0.01em;
}

/* ── Home page ────────────────────────────────────── */
.page-home {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.page-home main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 2rem;
  text-align: center;
}

.page-home .lockup {
  flex-direction: column;
  gap: 1rem;
}

.tagline {
  font-size: 1.0625rem;
  color: var(--color-muted);
  letter-spacing: 0.01em;
}

.page-home footer {
  padding: 2rem;
  text-align: center;
  font-size: 0.8125rem;
  border-top: 1px solid var(--color-border);
}

/* ── Privacy page ─────────────────────────────────── */
.page-privacy {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.site-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--color-border);
}

.site-header .lockup {
  gap: 1rem;
}

.site-header .lockup svg {
  height: 1.75rem;
}

.site-header .wordmark {
  font-size: 1.5rem;
}

.page-privacy main {
  flex: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 4rem 2rem;
  width: 100%;
}

.page-privacy main h1 {
  font-family: var(--font-wordmark);
  font-weight: 500;
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.page-privacy main bdt {
  display: inline;
}

.page-privacy main [data-custom-class="body"] > div {
  margin-bottom: 0.5rem;
}

.page-privacy main [data-custom-class="heading_1"],
.page-privacy main [data-custom-class="heading_2"] {
  display: block;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.page-privacy main ul,
.page-privacy main ol {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.page-privacy main li {
  margin-bottom: 0.25rem;
}

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

.site-footer .sep {
  margin: 0 0.625rem;
  opacity: 0.35;
}
