:root {
  --tag-purple: #2b0080;
  --tag-gold: #c9a96e;
  --tag-black: #000000;
  --tag-white: #ffffff;
  --tag-offwhite: #faf7f2;
  --ink-soft: rgba(0, 0, 0, 0.68);
  --line: rgba(0, 0, 0, 0.14);
  --shadow-soft: 0 18px 54px rgba(43, 0, 128, 0.12);
  --font-display: "Lora", Georgia, serif;
  --font-sans: "Source Sans 3", Arial, sans-serif;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--tag-offwhite);
  color: var(--tag-black);
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  padding: 18px 24px;
  background: var(--tag-black);
}

.nav {
  width: min(var(--max), 100%);
  margin: 0 auto;
  min-height: 72px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: var(--shadow-soft);
  font-family: var(--font-sans);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.mark {
  width: 56px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--tag-purple);
  color: var(--tag-white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
}

.brand-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand-copy strong {
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.05;
}

.brand-copy span {
  color: rgba(0, 0, 0, 0.56);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.05;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.94rem;
  font-weight: 800;
}

.button {
  min-height: 48px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--tag-purple);
  color: var(--tag-white);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
}

.page {
  flex: 1;
  padding: 92px 24px;
}

.content {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 58px;
  background: var(--tag-white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--tag-purple);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 48px;
  height: 2px;
  background: var(--tag-gold);
}

h1 {
  max-width: 760px;
  margin: 0 0 24px;
  font-size: clamp(3rem, 7vw, 5.6rem);
  font-weight: 500;
  line-height: 0.98;
}

h2 {
  margin: 42px 0 12px;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.08;
}

p,
li {
  color: var(--ink-soft);
}

.lede {
  max-width: 760px;
  margin: 0 0 30px;
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.5;
}

ul {
  padding-left: 1.2rem;
}

.callout {
  margin: 34px 0;
  padding: 24px;
  background: var(--tag-offwhite);
  border-left: 5px solid var(--tag-gold);
  font-family: var(--font-sans);
}

.actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.secondary {
  background: var(--tag-white);
  color: var(--tag-purple);
  border: 1px solid var(--tag-purple);
}

.footer {
  padding: 34px 24px;
  background: var(--tag-black);
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-sans);
}

.footer-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer a {
  border-bottom: 1px solid rgba(201, 169, 110, 0.6);
}

@media (max-width: 720px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .content {
    padding: 34px 22px;
  }

  .page {
    padding: 44px 18px;
  }
}
