/* Little Guys Studio — company site.
   Shares the PKHomeDex palette so the two sites read as one outfit. */

:root {
  --teal: #14b8a6;
  --teal-bright: #2cc5be;
  --bg: #0a1211;
  --surface: #0d161b;
  --hairline: rgba(255, 255, 255, 0.10);
  --ink: #f2f7f5;
  --muted: #9fb4b1;
  --faint: #6d8481;
}

* { 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 Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.wrap {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: var(--teal-bright); }
a:hover { color: var(--teal); }

/* ---- masthead ---- */

.masthead {
  padding: 88px 0 56px;
  background:
    radial-gradient(760px 320px at 50% -120px, rgba(20, 184, 166, 0.16), transparent 70%);
  text-align: center;
}

.masthead h1 {
  margin: 0 0 16px;
  font-size: clamp(32px, 6vw, 46px);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.masthead p {
  margin: 0 auto;
  max-width: 540px;
  color: var(--muted);
  font-size: clamp(17px, 2.2vw, 19px);
}

/* ---- main ---- */

main { flex: 1 0 auto; padding-bottom: 72px; }

h2 {
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 48px 0 18px;
  font-weight: 600;
}

/* ---- product card ---- */

.product {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
}

.product:hover { border-color: var(--teal); }

.product img {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  flex: none;
}

.product h3 {
  margin: 0 0 6px;
  font-size: 20px;
  color: var(--teal-bright);
}

.product p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
}

.product .go {
  margin-top: 10px;
  font-size: 14.5px;
  color: var(--teal-bright);
  display: block;
}

/* ---- contact ---- */

.contact p { margin: 0 0 10px; }

.contact .label {
  color: var(--faint);
  font-size: 14.5px;
  display: block;
}

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

footer {
  flex: none;
  border-top: 1px solid var(--hairline);
  padding: 32px 0 48px;
  color: var(--faint);
  font-size: 14px;
}

footer p { margin: 0 0 10px; }

@media (max-width: 560px) {
  body { font-size: 16px; }
  .masthead { padding: 60px 0 40px; }
  .product { flex-direction: column; gap: 16px; }
}
