:root {
  --bg: #FAF8F3;
  --bg-soft: #F3EFE6;
  --text: #1A1A2E;
  --text-soft: #5A5A6E;
  --accent: #6B5B9D;
  --accent-soft: #C9A88E;
  --border: #E6E1D7;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.container--narrow { max-width: 600px; }

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

h1 { font-size: 2.75rem; margin-bottom: 0.3em; }
h2 { font-size: 1.65rem; margin: 2.2em 0 0.6em; }
h3 { font-size: 1.2rem; margin: 1.6em 0 0.4em; font-style: italic; color: var(--accent); }

p { margin-bottom: 1em; color: var(--text); }

ul { margin: 0.8em 0 1.2em 1.4em; }
ul li { margin-bottom: 0.5em; }

a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
a:hover { border-bottom-color: var(--accent); }

strong { font-weight: 600; }

.tagline {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 2em;
  letter-spacing: 0.02em;
}

.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  display: inline-block;
  border-bottom: 1px solid transparent;
}

.meta {
  font-size: 0.875rem;
  color: var(--text-soft);
  margin-bottom: 2em;
  font-style: italic;
}

.callout {
  background: var(--bg-soft);
  border-left: 3px solid var(--accent);
  padding: 18px 22px;
  margin: 1.4em 0;
  border-radius: 4px;
  font-size: 0.95rem;
}

.coming-soon {
  display: inline-block;
  padding: 14px 28px;
  background: var(--text);
  color: var(--bg);
  border-radius: 999px;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  margin: 1.5em 0;
  font-weight: 500;
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3em 0 2em;
}

footer {
  border-top: 1px solid var(--border);
  margin-top: 4em;
  padding-top: 2em;
  font-size: 0.875rem;
  color: var(--text-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 1em 2em;
  justify-content: space-between;
}

footer .links { display: flex; gap: 1.5em; }

@media (max-width: 540px) {
  .container { padding: 40px 20px 64px; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.4rem; }
  .tagline { font-size: 1.1rem; }
  footer { flex-direction: column; gap: 0.8em; }
}
