/* Collin Eom — freelance one-pager
   Navy on white. System fonts only, no external requests. */

:root {
  --navy: #0f2a4a;
  --navy-dark: #0a1d34;
  --ink: #16202c;
  --muted: #5b6875;
  --line: #dfe4ea;
  --tint: #f6f8fa;
  --wrap: 1040px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 20px;
}

a { color: var(--navy); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 { color: var(--navy); line-height: 1.25; margin: 0; }

/* Header */

.site-header {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.wordmark {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--navy);
}

/* Hero */

.hero { padding: 64px 0 56px; }

.hero h1 {
  font-size: 40px;
  letter-spacing: -0.015em;
  max-width: 20ch;
}

.subline {
  margin: 20px 0 0;
  max-width: 62ch;
  font-size: 19px;
  color: var(--muted);
}

.hero-actions { margin: 32px 0 0; }

.btn {
  display: inline-block;
  background: var(--navy);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 13px 26px;
  border-radius: 4px;
}

.btn:hover { background: var(--navy-dark); }

/* Sections */

.section { padding: 56px 0; border-top: 1px solid var(--line); }

.section-alt { background: var(--tint); }

.section h2 {
  font-size: 26px;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

/* Offers */

.offers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.offer {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  padding: 26px 24px 28px;
}

.offer h3 { font-size: 20px; }

.offer-tagline {
  margin: 6px 0 0;
  font-size: 15px;
  color: var(--muted);
}

.price { margin: 12px 0 18px; }

.price-from {
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
  margin-right: 2px;
}

.price-now {
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.price-was {
  margin-left: 10px;
  font-size: 15px;
  color: var(--muted);
}

.offer-list {
  margin: 0;
  padding-left: 20px;
}

.offer-list li { margin-bottom: 7px; }

.offer-body { margin: 0; }

.excluded, .terms {
  margin: 16px 0 0;
  font-size: 15px;
  color: var(--muted);
}

.terms { padding-top: 14px; border-top: 1px solid var(--line); }

.offer-aside {
  margin: 14px 0 0;
  font-size: 14px;
  color: #7b8694;
}

.label { font-weight: 600; color: var(--ink); }

.offers-note {
  margin: 24px 0 0;
  padding: 18px 20px;
  background: var(--tint);
  border-left: 3px solid var(--navy);
  border-radius: 0 4px 4px 0;
  font-size: 15px;
  color: var(--muted);
}

.section-alt .offers-note { background: #ffffff; }

/* Work */

.work-intro {
  margin: -12px 0 28px;
  max-width: 68ch;
  font-size: 16px;
  color: var(--muted);
}

.work-item { margin: 0 0 36px; }

.work-link { display: block; }

.work-item:last-child { margin-bottom: 0; }

.work-item img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
}

.work-item-phone img {
  width: auto;
  max-height: 620px;
  margin: 0 auto;
}

.work-item figcaption {
  margin-top: 12px;
  font-size: 15px;
  color: var(--muted);
}

.work-item-phone figcaption { text-align: center; }

/* How it works */

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
  max-width: 68ch;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 0 0 16px 44px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.steps li:last-child { border-bottom: 0; padding-bottom: 0; margin-bottom: 0; }

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 1px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
}

/* Contact */

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list li:last-child { border-bottom: 0; }

.contact-list .label {
  flex: 0 0 72px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 600;
}

.contact-list a {
  font-size: 19px;
  font-weight: 600;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-list a:hover { text-decoration: underline; }

/* Footer */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 40px;
  font-size: 14px;
  color: var(--muted);
}

.site-footer p { margin: 0; }

/* Mobile */

@media (max-width: 760px) {
  body { font-size: 16px; }
  .hero { padding: 44px 0 40px; }
  .hero h1 { font-size: 30px; max-width: none; }
  .subline { font-size: 17px; }
  .section { padding: 40px 0; }
  .section h2 { font-size: 23px; margin-bottom: 22px; }
  .offers { grid-template-columns: minmax(0, 1fr); gap: 18px; }
  .price-now { font-size: 27px; }
  .work-item { margin-bottom: 28px; }
  .work-item-phone img {
    width: 100%;
    height: 70vh;
    max-height: none;
    object-fit: cover;
    object-position: top;
  }
  .contact-list li { flex-direction: column; gap: 2px; }
  .contact-list .label { flex: none; }
  .contact-list a { font-size: 18px; }
  .btn { display: block; text-align: center; }
}
