:root {
  --cream: #FBF6EE;
  --cream-deep: #F4ECDD;
  --blush: #F5E1E0;
  --lavender: #EADCF8;
  --lavender-soft: #F3ECFB;
  --gold: #C9A24A;
  --gold-soft: #E0C083;
  --plum: #3D2A3F;
  --plum-soft: #5C4360;
  --text-secondary: #7A6678;
  --border-soft: #F3EDE2;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #FBF6EE 0%, #F4ECDD 100%);
  color: var(--plum);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
  text-decoration: none;
  color: var(--plum);
}

.brand-mark {
  font-size: 26px;
  color: var(--gold);
  line-height: 1;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--plum);
  letter-spacing: 0.2px;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--plum);
  margin: 0 0 8px;
  letter-spacing: -0.3px;
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}

.effective {
  color: var(--text-secondary);
  font-size: 14px;
  font-style: italic;
  margin: 0 0 36px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--plum);
  margin: 40px 0 12px;
}

p {
  margin: 0 0 14px;
  color: var(--plum-soft);
  font-size: 16px;
}

ul {
  padding-left: 22px;
  margin: 0 0 18px;
}

li {
  color: var(--plum-soft);
  font-size: 16px;
  margin-bottom: 6px;
}

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

a:hover {
  text-decoration: underline;
}

.divider {
  height: 1px;
  background: var(--border-soft);
  border: none;
  margin: 48px 0 32px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  padding: 24px 28px;
  margin-top: 32px;
}

.contact-card a {
  color: var(--plum);
  font-weight: 600;
}

.footer {
  text-align: center;
  margin-top: 80px;
  color: var(--text-secondary);
  font-size: 13px;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.footer .moon {
  color: var(--gold);
}

.footer-links {
  margin-top: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  font-style: normal;
  margin: 0 8px;
  font-size: 13px;
}

/* Landing page */
.landing-hero {
  text-align: center;
  padding-top: 48px;
}

.landing-hero .moon {
  font-size: 72px;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}

.landing-hero h1 {
  font-size: 56px;
  margin-bottom: 12px;
}

.landing-hero .tagline {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 18px;
  color: var(--plum-soft);
  margin: 0 0 56px;
}

.landing-cards {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.landing-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  padding: 24px 28px;
  text-decoration: none;
  color: var(--plum);
  display: block;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.landing-card:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
  text-decoration: none;
}

.landing-card .card-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  margin: 0 0 4px;
}

.landing-card .card-sub {
  color: var(--plum-soft);
  font-size: 14px;
}

@media (max-width: 540px) {
  .page { padding: 40px 20px 64px; }
  h1 { font-size: 32px; }
  .landing-hero h1 { font-size: 40px; }
  .landing-hero .moon { font-size: 56px; }
}
