/*
 * lamtimoradi.se — brand site for Sami Lamti's clicker portfolio.
 *
 * Single stylesheet, mobile-first, no JS. Warm earthy palette matched to the
 * Café Calm app icon (which is the first product launching).
 */

:root {
  --bg: #f6e6c5;
  --ink: #3b2419;
  --ink-soft: #6b4226;
  --accent: #8c382b;     /* terracotta — same family as the cafe-calm icon */
  --paper: #fff8e7;
  --rule: #d4a544;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "SF Pro", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 24px 24px;
  flex: 1 0 auto;
  width: 100%;
}

header.brand {
  margin-bottom: 32px;
}
header.brand a.home {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1 {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--ink);
  line-height: 1.15;
}

h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 36px 0 12px;
  color: var(--ink);
}

p.lede {
  font-size: 19px;
  color: var(--ink-soft);
  margin: 0 0 32px;
}

p { margin: 0 0 16px; }

a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

strong { color: var(--ink); }

ul {
  margin: 12px 0 16px;
  padding-left: 22px;
}
li { margin-bottom: 6px; }

.card {
  background: var(--paper);
  border: 2px solid var(--rule);
  border-radius: 16px;
  padding: 24px 28px;
  margin: 24px 0;
}

.meta {
  color: var(--ink-soft);
  font-size: 14px;
  margin-top: 32px;
}

.product-grid {
  display: grid;
  gap: 16px;
  margin: 24px 0;
}
.product-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--paper);
  border: 2px solid var(--rule);
  border-radius: 16px;
  padding: 16px 20px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 120ms ease-out;
}
.product-card:hover { transform: translateY(-2px); }
.product-card img {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  flex-shrink: 0;
}
.product-card .pc-title { font-weight: 700; font-size: 18px; color: var(--ink); }
.product-card .pc-sub { font-size: 14px; color: var(--ink-soft); }

footer {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px 24px;
  color: var(--ink-soft);
  font-size: 13px;
  border-top: 1px solid rgba(107, 66, 38, 0.18);
}

footer a { color: var(--ink-soft); }

@media (max-width: 480px) {
  main { padding: 32px 18px 16px; }
  h1 { font-size: 28px; }
}
