/* Keep it boring. Boring is fast. */
:root {
  --ink: #1c2333;
  --muted: #5b6474;
  --accent: #0d7377;   /* change me */
  --accent-soft: #e6f4f4;
  --line: #e3e7ee;
  --max-w: 760px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: #eef2f2;
}

.page {
  max-width: var(--max-w);
  margin: 2rem auto;
  padding: 2.6rem 2.8rem;
  background: #fff;
  box-shadow: 0 2px 16px rgba(20,30,50,.07);
  border-radius: 10px;
}

.hero {
  border-bottom: 2px solid var(--accent);
  padding-bottom: 1.2rem;
}
.hero h1 { font-size: 2rem; letter-spacing: -0.02em; }
.tagline {
  color: var(--accent); font-weight: 600; margin-top: .15rem;
}
.contact { color: var(--muted); font-size: .9rem; margin-top: .4rem; }
.contact a { color: var(--accent); text-decoration: none; }
.contact a:hover { text-decoration: underline; }

.counter-box {
  margin: 1.4rem 0 0;
  padding: .65rem 1rem;
  background: var(--accent-soft);
  border: 1px solid #cfe3f4;
  border-radius: 8px;
  font-size: .95rem;
}

h2 {
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--accent);
  margin: 2.2rem 0 .9rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.entry h3 { font-size: 1.02rem; }
.meta {
  color: var(--muted); font-weight: normal; font-size: .85rem;
  margin-left: .5rem;
}
.meta::before {
  content: "·";
  margin-right: .5rem;
  color: #b6bfcc;
}

.entry { margin-bottom: 1.1rem; }
.entry ul, .skills { margin: .45rem 0 0 1.15rem; }
.entry li, .skills li { margin-bottom: .3rem; }
.skills strong { color: var(--ink); }

section > p { color: #3c4454; }

/* One media query. That's enough. */
@media (max-width: 600px) {
  .page { margin: 0; padding: 1.4rem 1.2rem; border-radius: 0; box-shadow: none; }
  .hero h1 { font-size: 1.5rem; }
  .entry h3 { line-height: 1.35; }
  .meta { display: block; margin: .1rem 0 .35rem; }
  .meta::before { content: ""; }
  h2 { margin-top: 1.7rem; }
}
