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

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Base */
body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
}

/* Container */
.container {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* Type scale */
h1 {
  font-size: 5rem;
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* Section labels — small, uppercase, muted */
h2 {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
}

/* Content headings */
h3 {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3;
}

p {
  font-size: 1rem;
  font-weight: 300;
}

/* Image placeholder */
.image-placeholder {
  background-color: #e0e0e0;
  min-height: 500px;
  width: 100%;
}


/* ─── Sections ──────────────────────────────────────────── */

section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}


/* Hero */
#hero {
  padding-top: 8rem;
  padding-bottom: 2rem;
}

#services {
  padding-top: 3rem;
}

#hero h1 {
  margin-bottom: 2rem;
}

#hero p {
  font-size: 1.125rem;
}

#hero p + p {
  margin-top: 0.375rem;
}


/* Services */
#services h2 {
  margin-bottom: 3rem;
}

.service + .service {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid #e8e8e8;
}

.service h3 {
  margin-bottom: 0.625rem;
}


/* Selected Work */
#work h2 {
  margin-bottom: 3rem;
}

article + article {
  margin-top: 6rem;
}

article h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.375rem;
}

.project-subtitle {
  font-size: 0.875rem;
  color: #888;
  margin-bottom: 0.875rem;
}


/* Selected Clients */
#clients h2 {
  margin-bottom: 2rem;
}

.client-list {
  list-style: none;
  columns: 2;
  column-gap: 3rem;
}

.client-list li {
  margin-bottom: 0.5rem;
  break-inside: avoid;
}


/* About */
#about h2 {
  margin-bottom: 2rem;
}

#about p {
  max-width: 68ch;
}

#about p + p, #about p ~ p {
  margin-top: 1.25rem;
}


/* Contact */
#contact h2 {
  margin-bottom: 2rem;
}

#contact form {
  max-width: 480px;
}

.form-field {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.5rem;
}

input,
textarea {
  display: block;
  width: 100%;
  border: 1px solid #d0d0d0;
  padding: 0.625rem 0.75rem;
  font-family: inherit;
  font-size: 1rem;
  color: #1a1a1a;
  background-color: #ffffff;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #1a1a1a;
}

textarea {
  resize: vertical;
}

button[type="submit"] {
  background-color: #1a1a1a;
  color: #ffffff;
  border: none;
  padding: 0.75rem 2rem;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
}


/* ─── Mobile ────────────────────────────────────────────── */

@media (max-width: 640px) {
  h1 {
    font-size: 3rem;
  }

  section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  #hero {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .image-placeholder {
    min-height: 280px;
  }

  article + article {
    margin-top: 4rem;
  }

  .client-list {
    columns: 1;
  }

  #contact form {
    max-width: 100%;
  }
}
