/* ============================================
   HERO
============================================ */
#hero {
  padding: 6rem 0 5rem;
  background-color: var(--cream);
}

#hero .eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clay);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

#hero h1 {
  color: var(--ink);
  margin-bottom: 1.5rem;
}

#hero h1 em {
  font-style: italic;
  color: var(--bark);
}

#hero .subhead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.cta-button {
  display: inline-block;
  background-color: var(--bark);
  color: #fff;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background-color 0.2s;
}

.cta-button:hover {
  background-color: var(--soil);
  color: #fff;
}

/* ============================================
   ABOUT
============================================ */
#about {
  background-color: var(--warm-off);
}

#about h2 {
  color: var(--ink);
  margin-bottom: 2rem;
}

#about p {
  margin-bottom: 1.25rem;
}

#about p:last-child {
  margin-bottom: 0;
}

/* ============================================
   WHAT I DO / WHO I SERVE
============================================ */
#what-i-do {
  background-color: var(--warm-off);
}

#what-i-do h2 {
  color: var(--ink);
  margin-bottom: 1.5rem;
}

#what-i-do p {
  margin-bottom: 1.25rem;
}

#what-i-do p:last-of-type {
  margin-bottom: 0;
}

.who-list {
  list-style: none;
  margin: 0.25rem 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.who-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--soil);
}

.who-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--clay);
}

/* ============================================
   THE WORK
============================================ */
#the-work {
  background-color: var(--cream);
}

#the-work h2 {
  color: var(--ink);
  margin-bottom: 1.5rem;
}

#the-work > .container > p {
  margin-bottom: 1.5rem;
}

.work-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.work-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--soil);
}

.work-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--clay);
}

/* ============================================
   CONNECT
============================================ */
#connect {
  background-color: var(--cream);
}

#connect h2 {
  color: var(--ink);
  margin-bottom: 1rem;
}

#connect .intro {
  color: var(--muted);
  margin-bottom: 2rem;
}

.connect-primary-cta {
  margin-bottom: 3rem;
}

.form-separator {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.form-separator::before,
.form-separator::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--sand);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--soil);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1rem;
  color: var(--ink);
  background-color: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(196, 149, 106, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: -0.5rem;
}

.form-submit {
  background-color: var(--bark);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.9rem 2rem;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  align-self: flex-start;
  transition: background-color 0.2s;
  letter-spacing: 0.01em;
}

.form-submit:hover {
  background-color: var(--soil);
}

/* ============================================
   FOOTER LINKS
============================================ */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--sand);
  text-decoration: none;
  font-size: 0.85rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--cream);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 520px) {
  #hero {
    padding: 4rem 0 3.5rem;
  }

  .form-submit {
    width: 100%;
    text-align: center;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }
}
