/* ---------- Base ---------- */
:root {
  --ink: #14202b;
  --ink-soft: #45566a;
  --accent: #0f7b6c;
  --accent-dark: #0b5f54;
  --bg: #fdfcfa;
  --bg-alt: #f4f2ee;
  --line: #e4e0d9;
  --radius: 10px;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Newsreader", Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(253, 252, 250, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}

.wordmark em {
  font-style: normal;
  font-weight: 400;
  color: var(--ink-soft);
}

.mark {
  width: 26px;
  height: 26px;
  color: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

.site-nav a:hover { color: var(--ink); }

.nav-cta {
  color: #fff !important;
  background: var(--accent);
  padding: 8px 18px;
  border-radius: 999px;
  transition: background 0.15s ease;
}

.nav-cta:hover { background: var(--accent-dark); }

/* ---------- Hero ---------- */
.hero {
  padding: 110px 0 90px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  max-width: 21ch;
  margin-bottom: 26px;
}

.accent { color: var(--accent); }

.lede {
  font-size: 1.16rem;
  color: var(--ink-soft);
  max-width: 62ch;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

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

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-ghost:hover { border-color: var(--ink-soft); }

/* ---------- Sections ---------- */
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  line-height: 1.2;
  margin-bottom: 18px;
}

.section-lede {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 62ch;
  margin-bottom: 40px;
}

/* ---------- Results / proof ---------- */
.results {
  padding: 0 0 90px;
}

.proof-strip {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 36px;
  border-top: 1px solid var(--line);
  padding-top: 36px;
}

.proof-stat {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 10px;
}

.proof-label {
  display: block;
  color: var(--ink-soft);
  font-size: 0.96rem;
  max-width: 36ch;
  line-height: 1.5;
}

/* ---------- Services ---------- */
.services {
  background: var(--bg-alt);
  padding: 90px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.services .section-title { margin-bottom: 34px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
}

.service h3 {
  font-size: 1.06rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service p {
  color: var(--ink-soft);
  font-size: 0.96rem;
}

/* ---------- Work ---------- */
.work {
  padding: 90px 0;
  border-bottom: 1px solid var(--line);
}

.work-list {
  display: grid;
  gap: 0;
}

.work-item {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.work-item:last-child {
  border-bottom: 1px solid var(--line);
}

.work-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
}

.work-meta {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.work-item p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  max-width: 68ch;
  margin-bottom: 10px;
}

.work-link {
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 123, 108, 0.35);
}

.work-link:hover { border-bottom-color: var(--accent); }

/* ---------- About ---------- */
.about { padding: 90px 0; }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.about-role {
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 4px;
}

.about-copy p + p { margin-top: 18px; }

.about-copy { color: var(--ink-soft); font-size: 1.08rem; }

.about-links {
  margin-top: 26px !important;
}

.about-links a {
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 123, 108, 0.35);
}

.about-links a:hover { border-bottom-color: var(--accent); }

/* ---------- Contact ---------- */
.contact {
  background: var(--ink);
  color: #eef2f5;
  padding: 90px 0;
}

.contact .section-title { color: #fff; }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}

.contact-intro p {
  color: #b9c4ce;
  max-width: 40ch;
}

.contact-email {
  margin-top: 22px;
  font-size: 0.98rem;
}

.contact-email a {
  color: #7fd6c8;
  text-decoration: none;
  border-bottom: 1px solid rgba(127, 214, 200, 0.4);
}

.contact-email a:hover { border-bottom-color: #7fd6c8; }

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field { margin-bottom: 16px; }

.field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: #b9c4ce;
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.98rem;
  transition: border-color 0.15s ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: #7fd6c8;
}

.field textarea { resize: vertical; }

.hidden-field { display: none; }

/* ---------- Footer ---------- */
.site-footer {
  padding: 28px 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 22px;
  align-items: center;
}

.site-footer a {
  color: var(--ink-soft);
  text-decoration: none;
}

.site-footer a:hover { color: var(--ink); }

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .hero { padding: 70px 0 60px; }
  .proof-strip { grid-template-columns: 1fr; gap: 24px; }
  .about-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-form .form-row { grid-template-columns: 1fr; gap: 0; }
  .site-nav { gap: 18px; }
  .site-nav a:not(.nav-cta) { display: none; }
}
