/* NOSCHEDULE — Website Styles
   Quiet. Intentional. Complete.
*/

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

/* Base */
html {
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #FAF9F7;
  color: #1C1C1C;
  padding: 0;
  margin: 0;
}

/* Container */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* Typography — Headlines */
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: normal;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.75rem;
  line-height: 1.3;
  margin-top: 4rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

/* Typography — Body */
p {
  margin-bottom: 1.5rem;
}

.tagline {
  font-size: 1.25rem;
  color: #6E6E6E;
  margin-bottom: 3rem;
}

.section-intro {
  font-size: 1.1rem;
  color: #6E6E6E;
  margin-bottom: 1rem;
}

/* Lists */
.list-plain {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.list-plain li {
  padding: 0.25rem 0;
}

.list-plain li::before {
  content: "—";
  margin-right: 0.75rem;
  color: #6E6E6E;
}

/* Emphasis */
strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

/* Divider */
hr {
  border: none;
  border-top: 1px solid #E6E4E1;
  margin: 3rem 0;
}

/* Links */
a {
  color: #1C1C1C;
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  color: #6E6E6E;
}

/* CTA Button */
.cta {
  display: inline-block;
  background-color: #1C1C1C;
  color: #FAF9F7;
  padding: 1rem 2rem;
  font-size: 1rem;
  text-decoration: none;
  margin-top: 2rem;
}

.cta:hover {
  background-color: #333;
  color: #FAF9F7;
}

/* Header */
header {
  padding-top: 2rem;
}

/* Footer */
footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #E6E4E1;
  color: #6E6E6E;
  font-size: 0.875rem;
}

footer a {
  color: #6E6E6E;
}

footer a:hover {
  color: #1C1C1C;
}

/* Legal Page Specific */
.legal h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.legal h2 {
  font-size: 1.25rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.legal .last-updated {
  color: #6E6E6E;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 600px) {
  html {
    font-size: 16px;
  }

  .container {
    padding: 3rem 1.5rem;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.5rem;
    margin-top: 3rem;
  }
}
