/* ─────────────────────────────────────────────
   Nikatique — landing page
   EVERY colour, font and size is a token below.
   Never write a raw colour further down this file.
   ───────────────────────────────────────────── */

:root {
  /* Colour */
  --cream:        #f4ece0;
  --cream-deep:   #e8dccb;
  --card:         #fffaf1;
  --ink:          #2c2420;
  --ink-soft:     #5c5046;
  --ink-faint:    #8c7c6c;
  --line:         #d8cbb6;
  --teal:         #2f7d72;
  --teal-hover:   color-mix(in srgb, var(--teal) 82%, black);
  --teal-tint:    color-mix(in srgb, var(--teal) 12%, var(--cream));
  --on-dark:      #f4ece0;

  /* Type */
  --serif:        "Iowan Old Style", Palatino, "Palatino Linotype", Georgia, serif;
  --sans:         -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --step-hero:    clamp(2.4rem, 6vw, 4.2rem);
  --step-h2:      clamp(1.6rem, 3vw, 2.2rem);
  --step-body:    1.0625rem;

  /* Space & shape */
  --gutter:       clamp(1.25rem, 4vw, 3rem);
  --stack:        clamp(3.5rem, 9vw, 7rem);
  --radius:       12px;
  --line-w:       1px;
  --measure:      62ch;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font: var(--step-body)/1.7 var(--serif);
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ── Header ── */

.site-header {
  border-bottom: var(--line-w) solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.4rem;
}
.wordmark {
  font-size: 1.35rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
}
.site-header nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  font: 500 .8rem/1 var(--sans);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.site-header nav a { color: var(--ink-soft); text-decoration: none; }
.site-header nav a:hover { color: var(--teal); }

/* ── Hero ── */

.hero {
  padding-block: var(--stack);
  border-bottom: var(--line-w) solid var(--line);
}
.hero p.eyebrow {
  font: 500 .78rem/1 var(--sans);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1.6rem;
}
.hero h1 {
  font-size: var(--step-hero);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.01em;
  max-width: 18ch;
}
.hero h1 em { font-style: italic; color: var(--teal); }
.hero .lead {
  margin-top: 1.8rem;
  max-width: var(--measure);
  font-size: 1.15rem;
  color: var(--ink-soft);
}

/* ── Generic section ── */

.section { padding-block: var(--stack); }
.section + .section { border-top: var(--line-w) solid var(--line); }
.section h2 {
  font-size: var(--step-h2);
  font-weight: 400;
  margin-bottom: 1.4rem;
}
.section .prose { max-width: var(--measure); color: var(--ink-soft); }
.section .prose p + p { margin-top: 1.1rem; }

/* ── Values ── */

.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin-top: 2.5rem;
}
.value h3 {
  font: 500 .8rem/1 var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .7rem;
}
.value p { color: var(--ink-soft); font-size: .98rem; }

/* ── Where to find us ── */

.places {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.1rem;
  margin-top: 2.2rem;
}
.place {
  display: block;
  background: var(--card);
  border: var(--line-w) solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-decoration: none;
  transition: border-color .15s ease, transform .15s ease;
}
.place:hover { border-color: var(--teal); transform: translateY(-2px); }
.place .name {
  font: 500 .8rem/1 var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
}
.place .detail { margin-top: .6rem; color: var(--ink-soft); font-size: .95rem; }

.note {
  margin-top: 2rem;
  padding: 1.1rem 1.3rem;
  background: var(--teal-tint);
  border-radius: var(--radius);
  font-size: .95rem;
  color: var(--ink-soft);
  max-width: var(--measure);
}

/* ── Footer ── */

.site-footer {
  border-top: var(--line-w) solid var(--line);
  background: var(--cream-deep);
  padding-block: 2.6rem;
  font-size: .9rem;
  color: var(--ink-soft);
}
.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
}
.site-footer a { color: var(--ink-soft); }

/* ── Legal page ── */

.legal { padding-block: var(--stack); }
.legal h1 { font-size: var(--step-h2); font-weight: 400; margin-bottom: 2rem; }
.legal h2 {
  font: 500 .8rem/1 var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 2.4rem 0 .9rem;
}
.legal .prose { max-width: var(--measure); color: var(--ink-soft); }
.legal .prose p + p { margin-top: 1rem; }
.legal dl { max-width: var(--measure); color: var(--ink-soft); }
.legal dt { font: 500 .78rem/1 var(--sans); letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); margin-top: 1rem; }
.legal dd { margin-top: .25rem; }

.todo {
  background: var(--teal-tint);
  border-left: 3px solid var(--teal);
  padding: 1rem 1.2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
  max-width: var(--measure);
  font-size: .95rem;
}

/* ── Holding page ──
   Temporary "coming soon" screen. The full brand page lives in wip/
   until Veronika has designed it.                                   */

body.holding {
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: var(--gutter);
}
body.holding .mark {
  font-size: clamp(2rem, 8vw, 3.4rem);
  letter-spacing: .18em;
  text-transform: uppercase;
}
body.holding .line {
  margin-top: 1.4rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
body.holding .soon {
  margin-top: 2.6rem;
  font: 500 .78rem/1 var(--sans);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal);
}
