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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Helvetica Neue", Arial, sans-serif;
  background-color: #f8f8f8;
  color: #111111;
  line-height: 1.6;
}

/* === Layout === */

.wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

/* === Header & Nav === */

.site-header {
  border-bottom: 1px solid #e0e0e0;
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.brand a {
  text-decoration: none;
  color: #111111;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav a {
  font-size: 0.9rem;
  text-decoration: none;
  color: #555555;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

nav a:hover {
  color: #111111;
}

/* === Typography === */

.section-label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 0.75rem;
}

h1 {
  font-size: 2.4rem;
  margin: 0 0 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h2 {
  font-size: 1.4rem;
  margin: 0 0 0.3rem;
}

h3 {
  font-size: 1rem;
  margin: 1.75rem 0 0.25rem;
}

.lead {
  font-size: 1.05rem;
  max-width: 34rem;
  margin-bottom: 1.25rem;
  color: #333333;
}

.muted {
  color: #777777;
  font-size: 0.95rem;
}

/* === Hero / Home === */

.section {
  padding: 3.5rem 0;
  border-bottom: 1px solid #e0e0e0;
  background-color: #f8f8f8;
}

.section:nth-of-type(2n) {
  background-color: #fdfdfd;
}

.hero {
  display: grid;
  grid-template-columns: 2.1fr 1.4fr;
  gap: 3rem;
  margin-top: 2rem;
  align-items: flex-start;
}

.hero-main {
  max-width: 34rem;
}

.hero-tagline {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.hero-sub {
  font-size: 1rem;
  color: #444444;
  max-width: 28rem;
}

.hero-contact {
  margin-top: 2rem;
  font-size: 0.95rem;
}

.hero-contact a {
  color: #111111;
  text-decoration: none;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 0.05rem;
}

.hero-contact a:hover {
  border-color: #111111;
}

/* Side note block */

.side-note {
  font-size: 0.9rem;
  color: #555555;
  border-left: 1px solid #dddddd;
  padding-left: 1.25rem;
}

/* === Cards / Awards === */

.card-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #e0e0e0;
}

.card-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.3rem;
}

.card-subtitle {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.card-body {
  font-size: 0.95rem;
  color: #444444;
}

/* === Beyond the Practice === */

.beyond-intro {
  max-width: 36rem;
  font-size: 0.98rem;
  color: #444444;
  margin-top: 0.5rem;
}

.beyond-item {
  margin-top: 2rem;
}

.beyond-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #999999;
  margin-bottom: 0.25rem;
}

.beyond-title {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.beyond-tagline {
  font-size: 0.95rem;
  font-style: italic;
  color: #555555;
  margin-bottom: 0.5rem;
}

.beyond-body {
  font-size: 0.95rem;
  color: #444444;
  max-width: 40rem;
}

/* === Contact === */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

.contact-details {
  font-size: 0.97rem;
  color: #444444;
}

.contact-details p {
  margin-bottom: 1rem;
}

.contact-details a {
  color: #111111;
  text-decoration: none;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 0.04rem;
}

.contact-details a:hover {
  border-color: #111111;
}

.form {
  display: grid;
  gap: 1rem;
}

label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #888888;
}

input,
textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.7rem 0.6rem;
  border-radius: 0;
  border: 1px solid #dddddd;
  background-color: #ffffff;
  color: #111111;
}

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

textarea {
  min-height: 6rem;
  resize: vertical;
}

.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border: 1px solid #111111;
  background-color: #111111;
  color: #ffffff;
  cursor: pointer;
}

.button:hover {
  background-color: #ffffff;
  color: #111111;
}

/* === Footer === */

.site-footer {
  border-top: 1px solid #e0e0e0;
  padding: 1.5rem 1.5rem;
  font-size: 0.8rem;
  color: #777777;
  text-align: center;
  background-color: #ffffff;
}

/* === Responsive === */

@media (max-width: 720px) {
  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}
