/* Latin subsets, self hosted: the site loads nothing from a third party. */
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('fonts/BricolageGrotesque.woff2') format('woff2');
}
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('fonts/Figtree.woff2') format('woff2');
}

:root {
  --bg: #0c0c0f;
  --surface: #141418;
  --surface-high: #1b1b20;
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.12);
  --text: #f2f2f5;
  --text-2: #a7a8b0;
  --text-3: #6b6c75;
  --accent: #b8a9f5;
  --accent-dim: rgba(184, 169, 245, 0.16);
  --on-accent: #100c1f;
  --good: #6ed39b;
  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --body: 'Figtree', system-ui, sans-serif;
  --page: min(1080px, 100% - 2.5rem);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

h1 { font-size: clamp(2.6rem, 7vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
h3 { font-size: 1.15rem; letter-spacing: -0.01em; }

p { margin: 0; }
a { color: var(--accent); }

.wrap { width: var(--page); margin-inline: auto; }

/* -- header ------------------------------------------------------------ */

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(12, 12, 15, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.85rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.brand svg { display: block; }

nav {
  display: flex;
  gap: 1.4rem;
  font-size: 0.95rem;
}

nav a {
  color: var(--text-2);
  text-decoration: none;
}

nav a:hover { color: var(--text); }

@media (max-width: 640px) {
  nav { display: none; }
}

/* -- hero --------------------------------------------------------------- */

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  padding-block: clamp(3rem, 8vw, 6rem);
}

.hero p.lead {
  margin-top: 1.4rem;
  font-size: 1.2rem;
  color: var(--text-2);
  max-width: 34ch;
}

.eyebrow {
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
}

.button.quiet {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.note { font-size: 0.9rem; color: var(--text-3); }

.shot {
  border-radius: 28px;
  border: 1px solid var(--border-strong);
  width: 100%;
  display: block;
  background: var(--surface);
}

.hero .shot { max-width: 340px; margin-inline: auto; }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* -- sections ------------------------------------------------------------ */

section { padding-block: clamp(3rem, 7vw, 5.5rem); }

.section-head { max-width: 46ch; margin-bottom: 2.5rem; }
.section-head p { margin-top: 0.9rem; color: var(--text-2); }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
}

.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--text-2); font-size: 0.98rem; }

.card .tag {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.shots figure { margin: 0; }
.shots figcaption {
  margin-top: 0.8rem;
  color: var(--text-3);
  font-size: 0.92rem;
}

.privacy-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.privacy-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.1rem 1.3rem;
}

.privacy-list .dot {
  flex: none;
  width: 9px;
  height: 9px;
  margin-top: 0.55rem;
  border-radius: 50%;
  background: var(--good);
}

details {
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
}

summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--display);
  font-size: 1.05rem;
}

details p { margin-top: 0.7rem; color: var(--text-2); }

/* -- prose (privacy, 404) ------------------------------------------------- */

.prose { max-width: 68ch; padding-block: 3.5rem; }
.prose h1 { font-size: clamp(2.2rem, 5vw, 3rem); }
.prose h2 { font-size: 1.5rem; margin-top: 2.5rem; }
.prose p, .prose li { color: var(--text-2); margin-top: 1rem; }
.prose strong { color: var(--text); }
.prose .updated { color: var(--text-3); font-size: 0.92rem; margin-top: 0.8rem; }

/* -- footer ---------------------------------------------------------------- */

footer {
  border-top: 1px solid var(--border);
  padding-block: 2.5rem 3.5rem;
  color: var(--text-3);
  font-size: 0.93rem;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: center;
}

footer a { color: var(--text-2); text-decoration: none; }
footer a:hover { color: var(--text); }
