/* The page a client actually lands on. This is the wrapper Kieran's own website provides in real
   life — his header, his words, his contact details — with the form embedded inside it. Kept here so
   the live address shows the real thing rather than a demo of it. */

:root {
  --ink: #1b1b1b;
  --teal: #79c2c9;
  --teal-deep: #3f8b93;
  --wash: #f4f6f6;
  --line: #e2e6e7;
  --muted: #55605f;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--wash);
  color: var(--ink);
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.site-head { background: var(--ink); color: #fff; padding: 30px 20px 26px; text-align: center; }
.site-head img { width: 220px; max-width: 62%; height: auto; display: block; margin: 0 auto; }
.site-nav { margin-top: 20px; display: flex; justify-content: center; gap: 26px; flex-wrap: wrap; }
.site-nav a {
  color: #b9bfc1; text-decoration: none; font-size: 12.5px; letter-spacing: 0.14em;
  text-transform: uppercase; padding-bottom: 4px; border-bottom: 2px solid transparent;
}
.site-nav a:hover { color: #fff; }
.site-nav a[aria-current='page'] { color: #fff; border-bottom-color: var(--teal); }

.intro { max-width: 660px; margin: 0 auto; padding: 44px 20px 8px; text-align: center; }
.intro h1 { margin: 0; font-size: 30px; font-weight: 400; letter-spacing: -0.01em; }
.intro p { margin: 14px auto 0; max-width: 52ch; color: var(--muted); font-size: 16px; }

.site-foot {
  background: var(--ink); color: #9aa1a3; text-align: center;
  padding: 34px 20px 40px; margin-top: 40px; font-size: 13px; line-height: 1.8;
}
.site-foot strong { display: block; color: #fff; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; font-size: 12px; margin-bottom: 12px; }
.site-foot a { color: var(--teal); text-decoration: none; }
.site-foot a:hover { text-decoration: underline; }
.site-foot .legal { display: block; margin-top: 18px; font-size: 11.5px; color: #6f7678; }

@media (max-width: 640px) {
  .intro { padding-top: 32px; }
  .intro h1 { font-size: 25px; }
  .site-nav { gap: 18px; }
}
