/* CreatorSync — brochure site
   Brand: parchment ground, brand-red, warm ink. Display face: Cormorant Garamond. */

:root {
  --parchment: #fff5ee;
  --soft: #f7eadf;
  --red: #b3261e;
  --ink: #4a3f37;
  --taupe: #5c4f45;
  --taupe-hover: #4a3f37;
  --dark: #1c1613;
  --cream: #f5efe8;
  --line: #ecdcce;
  --muted: #8a7d72;
  --maxw: 760px;
  --pad: clamp(1.25rem, 5vw, 2.5rem);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--parchment);
  color: var(--ink);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
}

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

/* ---- launching-soon landing ---- */
.landing {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem var(--pad) 2rem;
  gap: 1.75rem;
}
.landing .logo {
  width: min(340px, 74vw);
  height: auto;
  opacity: 0;
  transform: translateY(12px);
  animation: rise 0.8s cubic-bezier(.2,.7,.2,1) 0.05s forwards;
}
.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0;
  opacity: 0;
  animation: fade 0.8s ease 0.35s forwards;
}
.landing .tagline {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--ink);
  max-width: 20ch;
  margin: 0;
  opacity: 0;
  animation: fade 0.8s ease 0.5s forwards;
}
.landing .contact {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
  opacity: 0;
  animation: fade 0.8s ease 0.65s forwards;
}
.landing .contact a { color: var(--taupe); text-decoration: underline; text-underline-offset: 3px; }

@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes fade { to { opacity: 1; } }

/* ---- footer (landing) ---- */
.landing-footer {
  margin-top: auto;
  padding-top: 2.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 60ch;
}
.landing-footer .links { margin-bottom: 0.6rem; }
.landing-footer .links a { color: var(--taupe); margin: 0 0.55rem; }
.landing-footer .placeholder {
  background: var(--soft);
  color: var(--red);
  padding: 0 0.3em;
  border-radius: 4px;
}

/* ---- legal pages ---- */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--parchment);
}
.site-header .wrap { display: flex; align-items: center; min-height: 66px; }
.site-header .logo-h { height: 30px; width: auto; }

.doc { padding-block: clamp(2.5rem, 7vw, 4rem) clamp(3rem, 8vw, 5rem); }
.doc h1 { font-size: clamp(2.2rem, 6vw, 3.2rem); margin: 0 0 0.3rem; }
.doc .updated { color: var(--muted); font-size: 0.9rem; margin: 0 0 2.5rem; font-family: system-ui, sans-serif; }
.doc h2 { font-size: 1.5rem; margin: 2.5rem 0 0.6rem; }
.doc p, .doc li { color: var(--ink); }
.doc ul { padding-left: 1.2rem; }
.doc li { margin-bottom: 0.4rem; }
.doc .placeholder { background: var(--soft); color: var(--red); padding: 0 0.3em; border-radius: 4px; }
.back { font-size: 0.9rem; display: inline-block; margin-bottom: 2rem; color: var(--taupe); }

.doc-footer {
  border-top: 1px solid var(--line);
  padding-block: 2rem 3rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.doc-footer .placeholder { background: var(--soft); color: var(--red); padding: 0 0.3em; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  .landing .logo, .eyebrow, .tagline, .contact { animation: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 3px; }
