/* Strength for Entrepreneurs — site stylesheet */

:root {
  --accent: #9C4A32;
  --accent-hover: #6E2E1F;
  --bg: #FAF5EF;
  --bg-tint: #F1E7D9;
  --ink: #2B2420;
  --ink-strong: #231d19;
  --ink-soft: #4a3f36;
  --line: #E4D9CB;
  --dark: #231d19;
  --dark-deeper: #1C1712;
  --dark-text: #D8CBBB;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Work Sans', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, .serif {
  font-family: 'Newsreader', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  margin: 0;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

img { max-width: 100%; }

.section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 48px;
}

.divider {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 48px;
}
.divider > div {
  height: 1px;
  background: var(--line);
}

/* top nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 36px;
  padding-bottom: 36px;
}
.nav .brand {
  font-size: 20px;
  color: var(--ink);
}
.nav a.nav-link {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* hero */
.hero {
  display: flex;
  gap: 72px;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 67px;
}
.hero-copy {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
}
.eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero h1 {
  font-size: 56px;
  line-height: 1.08;
  color: var(--ink-strong);
}
.hero-welcome {
  font-size: 19px;
  line-height: 1.65;
  font-style: italic;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0;
}
.hero-photo {
  flex: 0 0 340px;
}
.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 24px 60px -20px rgba(43, 36, 32, 0.35);
}

/* quote bands */
.quote-band {
  padding-top: 67px;
  padding-bottom: 96px;
  text-align: center;
}
.quote-band.closing {
  padding-top: 96px;
}
.quote-rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 32px;
}
.quote-band p {
  font-size: 36px;
  line-height: 1.5;
  font-style: italic;
  max-width: 640px;
  margin: 0 auto;
}
.quote-band p.light { color: var(--ink-strong); }
.quote-band p.dark { color: var(--bg); }
.band-dark { background: var(--dark); }

/* values */
.prose {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 800px;
}
.prose p {
  font-size: 27px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}

/* entrepreneurship quote + linkedin */
.tint-band {
  background: var(--bg-tint);
}
.tint-band .section {
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.pull-quote {
  font-size: 34px;
  line-height: 1.4;
  font-style: italic;
  color: var(--accent);
  max-width: 720px;
  margin: 0;
}
.linkedin-link {
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
}

/* approach section */
.approach {
  padding-top: 88px;
  padding-bottom: 88px;
}
.approach h2 { font-size: 34px; color: var(--ink-strong); margin-bottom: 28px; }
.approach .prose p { font-size: 24px; line-height: 1.55; }

/* stations in life */
.stations {
  padding-top: 88px;
  padding-bottom: 88px;
}
.stations h2 { font-size: 34px; color: var(--ink-strong); margin-bottom: 48px; }
.stations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
}
.station-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.station-col h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}
.station-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.station-col li {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-soft);
  padding-left: 16px;
  position: relative;
}
.station-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* offerings */
.offerings {
  padding-top: 0;
  padding-bottom: 96px;
}
.offerings h2 { font-size: 34px; color: var(--ink-strong); margin-bottom: 48px; }
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}
.offer-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px;
  background: #fff;
  border: 1px solid var(--line);
}
.offer-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-tint);
}
.offer-card h3 { font-size: 22px; color: var(--ink-strong); margin: 0; }
.offer-card p { font-size: 16px; line-height: 1.6; color: var(--ink-soft); margin: 0; }
.offerings-note {
  font-size: 15px;
  font-style: italic;
  color: var(--ink-soft);
  margin: 28px 0 0;
}

/* contact */
.contact-section {
  background: var(--dark);
}
.contact-wrap {
  padding-top: 96px;
  padding-bottom: 96px;
  display: flex;
  gap: 72px;
}
.contact-intro {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}
.contact-intro h2 { font-size: 34px; color: var(--bg); }
.contact-intro p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--dark-text);
  max-width: 400px;
  margin: 0;
}
.contact-form {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid #4a3f36;
  background: #2B2420;
  color: var(--bg);
  border-radius: 2px;
  width: 100%;
}
.contact-form textarea { resize: vertical; }
.contact-form button {
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 20px;
  border: none;
  background: var(--accent);
  color: var(--bg);
  border-radius: 2px;
  cursor: pointer;
  width: fit-content;
}
.contact-form button:hover { background: var(--accent-hover); }
.form-note {
  font-size: 14px;
  color: var(--dark-text);
  margin: 0;
}

/* footer */
.footer {
  background: var(--dark-deeper);
}
.footer .section {
  padding-top: 28px;
  padding-bottom: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: #8a7c6d; }
.footer-links { display: flex; gap: 24px; align-items: center; }
.footer-links a { font-size: 13px; color: #8a7c6d; }

/* legal pages */
.legal-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 88px 48px 120px;
}
.legal-back { margin-bottom: 56px; }
.legal-back a { font-size: 14px; color: #8a7c6d; }
.legal-wrap h1 { font-size: 38px; margin-bottom: 8px; }
.legal-kicker { font-size: 14px; color: #8a7c6d; margin-bottom: 48px; }
.legal-wrap section { margin-bottom: 40px; }
.legal-wrap h2 { font-family: 'Newsreader', Georgia, serif; font-weight: 500; font-size: 21px; margin: 0 0 12px; }
.legal-wrap p, .legal-wrap li { font-size: 16px; line-height: 1.7; color: var(--ink-soft); }
.legal-wrap ul { margin: 0; padding-left: 20px; }
.legal-wrap li { margin-bottom: 6px; }
.legal-placeholder { color: var(--accent); font-style: italic; }

/* responsive */
@media (max-width: 780px) {
  .section, .divider, .legal-wrap { padding-left: 24px; padding-right: 24px; }

  .hero { flex-direction: column-reverse; gap: 32px; padding-bottom: 48px; }
  .hero h1 { font-size: 38px; }
  .hero-photo { flex: 0 0 auto; max-width: 280px; margin: 0 auto; }

  .quote-band p { font-size: 26px; }
  .pull-quote { font-size: 26px; }

  .prose p { font-size: 22px; }
  .approach .prose p { font-size: 19px; }

  .stations-grid { grid-template-columns: 1fr; gap: 36px; }
  .offerings-grid { grid-template-columns: 1fr; }

  .contact-wrap { flex-direction: column; gap: 40px; }

  .legal-wrap { padding-top: 56px; padding-bottom: 72px; }
}
