/* FollowLukas — coming soon page. Same Editorial tokens as the main dev site. */
:root {
  --color-paper: #F3EFE6;
  --color-bg: #FBF8F1;
  --color-text: #2A241E;
  --color-text-heading: #241E1A;
  --color-text-muted: #6F675C;
  --color-accent: #1E6E64;
  --color-accent-deep: #16564E;
  --color-border: #E4DDCE;
  --radius: 4px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body: 'Lora', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

body {
  background: var(--color-text-heading);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: #241E1A
    url('https://cdn.sanity.io/images/wb3iud08/production/80e6d2bc7591fa77e2cca64dd470035394302c7f-6000x4000.jpg?rect=1400,0,3200,4000&w=1800&q=70&auto=format')
    center / cover no-repeat;
}

.bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 16, 12, 0.35), rgba(20, 16, 12, 0.72) 60%, rgba(16, 12, 9, 0.9));
}

header {
  position: relative;
  z-index: 2;
  padding: 28px clamp(20px, 5vw, 56px) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

header img.logo {
  height: 34px;
  width: auto;
}

.lang-switch {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  gap: 8px;
  align-items: center;
}

.lang-switch a {
  text-decoration: none;
  padding: 5px 9px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.lang-switch a.on {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
}

main {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 48px clamp(20px, 5vw, 56px);
}

.hero {
  max-width: 620px;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #8fd0c5;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  flex: none;
}

h1 {
  font-family: var(--font-serif);
  color: #fff;
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

h1 .aw {
  color: #8fd0c5;
  font-style: italic;
}

.lead {
  font-size: clamp(16px, 2vw, 18.5px);
  color: rgba(255, 255, 255, 0.88);
  max-width: none;
  margin-bottom: 34px;
}

form.signup {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

form.signup input[type='email'] {
  flex: 0 1 280px;
  min-width: 200px;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: var(--radius);
}

form.signup input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

form.signup input:focus {
  outline: none;
  border-color: #fff;
}

form.signup button {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--color-accent);
  background: var(--color-accent);
  color: #fff;
  cursor: pointer;
  transition: 0.2s;
  white-space: nowrap;
}

form.signup button:hover {
  background: #fff;
  border-color: #fff;
  color: var(--color-text-heading);
}

form.signup button:disabled {
  opacity: 0.6;
  cursor: default;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
  max-width: none;
  margin-bottom: 30px;
}

.consent input {
  margin-top: 3px;
  flex: none;
  accent-color: var(--color-accent);
}

.consent.invalid input {
  outline: 2px solid #e05a52;
  outline-offset: 2px;
  border-radius: 2px;
}

.consent.invalid span {
  color: #f3aca7;
}

.consent a {
  color: #8fd0c5;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.thanks {
  display: none;
  font-family: var(--font-sans);
  font-size: 16px;
  color: #8fd0c5;
  border: 1px solid rgba(143, 208, 197, 0.4);
  background: rgba(143, 208, 197, 0.08);
  border-radius: var(--radius);
  padding: 16px 18px;
  max-width: 52ch;
  margin-bottom: 30px;
}

.thanks.show {
  display: block;
}

.links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14.5px;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 30px;
  padding: 10px 18px 10px 14px;
  transition: 0.2s;
}

.ig-link:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.ig-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

footer {
  position: relative;
  z-index: 2;
  padding: 24px clamp(20px, 5vw, 56px) 30px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
}

footer a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
}

footer a:hover {
  text-decoration: underline;
}

footer .fl {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 560px) {
  form.signup { flex-direction: column; align-items: stretch; }
  form.signup input[type='email'] { min-width: 0; width: 100%; flex: 1; }
  footer { flex-direction: column; gap: 8px; }
}

/* ---- legal page (light) ---- */
body.legal {
  background: var(--color-paper);
  color: var(--color-text);
}

body.legal .bg { display: none; }

body.legal header {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 20px;
}

body.legal header img.logo {
  filter: none;
}

body.legal .lang-switch {
  color: var(--color-text-muted);
}

body.legal .lang-switch a {
  border-color: var(--color-border);
  color: var(--color-text-heading);
}

body.legal .lang-switch a.on {
  background: var(--color-text-heading);
  color: var(--color-paper);
  border-color: var(--color-text-heading);
}

body.legal main {
  display: block;
  max-width: 720px;
  margin: 0 auto;
  padding: 48px clamp(20px, 5vw, 56px) 60px;
}

body.legal h1 {
  color: var(--color-text-heading);
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 24px;
}

body.legal h2 {
  font-family: var(--font-serif);
  color: var(--color-text-heading);
  font-size: 20px;
  margin: 28px 0 10px;
}

body.legal p, body.legal li {
  font-size: 16px;
  color: var(--color-text);
  margin-bottom: 12px;
}

body.legal ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

body.legal a.back {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
}

body.legal footer {
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
}

body.legal footer a {
  color: var(--color-text-heading);
}
