/* Applied Coaching — styles.css
   Minimal, mobile-first, no external dependencies beyond Google Fonts. */

:root {
  --ink: #0B1A2E;
  --ink-soft: #4A5868;
  --ink-muted: #78828F;
  --paper: #FAFAF7;
  --paper-soft: #F5F2EA;
  --rule: #E6E2D9;
  --gold: #B08A45;
  --max-content: 720px;
  --max-wide: 1080px;
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3 {
  font-family: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}

h1 {
  font-size: 2.75rem;
  line-height: 1.08;
  margin: 0 0 1.25rem;
}

h2 {
  font-size: 1.75rem;
  line-height: 1.2;
  margin: 3rem 0 1rem;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.3;
  margin: 2rem 0 0.5rem;
}

@media (min-width: 720px) {
  h1 {
    font-size: 3.75rem;
  }
  h2 {
    font-size: 2rem;
  }
}

p {
  margin: 0 0 1.25rem;
}

a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--rule);
  transition: text-decoration-color 0.2s ease;
}

a:hover,
a:focus {
  text-decoration-color: var(--gold);
}

/* Layout */

.container {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 720px) {
  .container {
    padding: 0 2.5rem;
  }
}

.content {
  max-width: var(--max-content);
  margin: 0 auto;
}

/* Header */

.site-header {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--rule);
}

.site-header .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

@media (min-width: 720px) {
  .site-header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
  }
}

.wordmark {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.375rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9375rem;
}

.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--gold);
}

/* Hero */

.hero {
  padding: 5rem 0 4rem;
}

.hero .subhead {
  font-size: 1.1875rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0;
  line-height: 1.5;
}

@media (min-width: 720px) {
  .hero {
    padding: 7rem 0 5rem;
  }
  .hero .subhead {
    font-size: 1.375rem;
  }
}

/* Gold accent rule */

.rule {
  width: 44px;
  height: 2px;
  background: var(--gold);
  border: none;
  margin: 2.25rem 0;
}

/* Content sections */

section.panel {
  padding: 4rem 0;
  border-top: 1px solid var(--rule);
}

section.panel h2 {
  margin-top: 0;
}

/* Contact list */

.contact-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.contact-list dt {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 0.25rem;
}

.contact-list dd {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--ink);
}

.contact-list dd a {
  color: var(--ink);
}

address.inline {
  font-style: normal;
  display: block;
}

/* Legal pages */

.legal-page {
  padding: 4rem 0 5rem;
}

.legal-page .content > h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 2.75rem;
  margin-bottom: 0.75rem;
}

.legal-page .effective {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  margin-top: 0.25rem;
  margin-bottom: 2rem;
}

.legal-page .content ul {
  padding-left: 1.25rem;
  margin: 0 0 1.25rem;
}

.legal-page .content li {
  margin-bottom: 0.5rem;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--rule);
  padding: 3rem 0 3.5rem;
  font-size: 0.9375rem;
  color: var(--ink-muted);
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .site-footer .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
  }
}

.site-footer .legal-links {
  display: flex;
  gap: 1.5rem;
}

.site-footer .legal-links a {
  color: var(--ink-soft);
  text-decoration: none;
}

.site-footer .legal-links a:hover,
.site-footer .legal-links a:focus {
  color: var(--gold);
}

.site-footer address {
  font-style: normal;
  line-height: 1.5;
}

.site-footer .footer-brand {
  color: var(--ink-soft);
}

/* Print */

@media print {
  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
  }
  .site-nav,
  .rule {
    display: none;
  }
  a {
    text-decoration: none;
    color: #000;
  }
  section.panel,
  .site-header,
  .site-footer {
    border: none;
    padding: 1rem 0;
  }
}
