/* Lakeside Studios — calm, ad-free, no tracking.
   One stylesheet shared by both pages. */

:root {
  --bg:        #f4f8fb;   /* soft off-white with a hint of lake blue */
  --surface:   #ffffff;
  --ink:       #2b3a42;   /* soft charcoal, not pure black */
  --ink-soft:  #5b6b74;
  --accent:    #4a90a4;   /* calm lake teal */
  --accent-ink:#356577;
  --line:      #e2ebf0;
  --max:       42rem;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               Helvetica, Arial, sans-serif;
  line-height: 1.65;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 5rem) 1.5rem;
}

/* ---- Landing hero ---- */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h1 {
  font-size: clamp(2.2rem, 7vw, 3.4rem);
  line-height: 1.15;
  margin: 0 0 0.6rem;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.tagline {
  font-size: clamp(1.1rem, 3.5vw, 1.4rem);
  color: var(--ink-soft);
  margin: 0 0 2rem;
  max-width: 30rem;
}

.contact {
  font-size: 1.05rem;
  color: var(--ink-soft);
}

a {
  color: var(--accent-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color .15s ease, border-color .15s ease;
}
a:hover { color: var(--accent); border-color: var(--accent); }

.footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ---- Privacy page ---- */
.doc h1 { font-size: clamp(1.8rem, 5vw, 2.4rem); }
.doc .meta {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0 0 2.5rem;
}
.doc h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 2.4rem 0 0.6rem;
  color: var(--accent-ink);
}
.doc p { margin: 0 0 1rem; }
.doc strong { color: var(--ink); }

.back {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.note {
  margin-top: 3rem;
  padding: 1.2rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg:        #1a2228;
    --surface:   #222c33;
    --ink:       #e6eef2;
    --ink-soft:  #a3b2ba;
    --accent:    #7fc0d3;
    --accent-ink:#9ad2e2;
    --line:      #33424b;
  }
}
