@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600&display=swap');

:root {
  --ink: #2b2620;
  --ink-soft: #4a4339;
  --terracotta: #b5654a;
  --sand: #e7ddc8;
  --stone: #a89d8a;
  --warm-white: #faf7f1;
  --border-hairline: #ded2b8;
  --max-width: 960px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--warm-white);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  font-size: 17px;
}

h1, h2, h3 {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
  margin: 0 0 0.5em 0;
}

h1 { font-size: 2.6rem; letter-spacing: 0.01em; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1.2em 0; color: var(--ink-soft); }

a { color: var(--terracotta); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header / nav */
header {
  border-bottom: 1px solid var(--border-hairline);
  padding: 1.75rem 0;
}
header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Jost', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}

/* Full wordmark lockup — used in footer */
.wordmark-full { text-align: left; }
.wordmark-full .word {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
}
.wordmark-full .rule {
  width: 90px;
  height: 1px;
  background: var(--ink);
  opacity: 0.25;
  margin: 0.5rem 0 0.4rem;
}
.wordmark-full .descriptor {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta);
}
nav a {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-left: 2rem;
  letter-spacing: 0.02em;
}
nav a:hover { color: var(--terracotta); text-decoration: none; }
nav a.active { color: var(--terracotta); }

/* Mobile nav toggle */
.nav-toggle { display: none; }

@media (max-width: 640px) {
  nav { display: none; }
  header .wrap { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  nav.open { display: flex; flex-direction: column; gap: 0.75rem; }
  .nav-toggle {
    display: inline-block;
    background: none;
    border: 1px solid var(--border-hairline);
    border-radius: 4px;
    padding: 0.4rem 0.8rem;
    font-family: 'Jost', sans-serif;
    color: var(--ink);
    cursor: pointer;
  }
  header .wrap { position: relative; }
}

/* Hero */
.hero {
  padding: 5rem 0 4rem 0;
  border-bottom: 1px solid var(--border-hairline);
}
.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.hero h1 { max-width: 640px; }
.hero .lede {
  max-width: 560px;
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-top: 1.2rem;
}

/* Sections */
section { padding: 4rem 0; }
section.tight { padding: 2.5rem 0; }
.section-border { border-bottom: 1px solid var(--border-hairline); }
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--stone);
  margin-bottom: 1.5rem;
}

/* Service / card blocks */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 720px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service-card h3 { margin-bottom: 0.6rem; }
.service-card .desc { color: var(--ink-soft); margin-bottom: 1rem; }

.service-detail {
  padding: 3rem 0;
}
.service-detail:not(:last-child) {
  border-bottom: 1px solid var(--border-hairline);
}
.service-detail ul {
  margin: 1.2rem 0;
  padding-left: 1.2rem;
}
.service-detail li {
  color: var(--ink-soft);
  margin-bottom: 0.7rem;
}
.service-detail .background {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-hairline);
  font-size: 0.95rem;
  color: var(--stone);
}

/* Who I work with strip */
.strip {
  background: var(--sand);
  padding: 2.5rem 0;
}
.strip p { color: var(--ink-soft); margin: 0; }
.strip .label {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

/* CTA button */
.btn {
  display: inline-block;
  background: var(--ink);
  color: var(--warm-white) !important;
  padding: 0.85rem 1.8rem;
  border-radius: 3px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
}
.btn:hover { background: var(--terracotta); }

/* Footer */
footer {
  border-top: 1px solid var(--border-hairline);
  padding: 2rem 0;
  font-size: 0.85rem;
  color: var(--stone);
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Contact form */
.contact-form {
  display: grid;
  gap: 1.1rem;
  max-width: 480px;
  margin-top: 2rem;
}
.contact-form label {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 0.35rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border-hairline);
  border-radius: 3px;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  background: var(--warm-white);
  color: var(--ink);
}
.contact-form textarea { min-height: 130px; resize: vertical; }

.background-list {
  color: var(--ink-soft);
}
