/* =====================================================
   SOW HEALTH — GLOBAL STYLE SHEET
   Calm, readable, durable layout
===================================================== */


/* ---------------------------
   Base Reset
--------------------------- */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.7;
  color: #222;
  background-color: #f6f4ee;
}

/* ---------------------------
   Layout Containers
--------------------------- */

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.narrow {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 6px;
}

.text-center {
  text-align: center;
}

/* ---------------------------
   Header
--------------------------- */

.site-header {
  background: #fbfaf6;
  border-bottom: 1px solid #e4e0d6;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 32px 0 28px;
}

.site-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  max-width: 700px;
}

.nav-primary,
.nav-secondary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  column-gap: 12px;
  row-gap: 6px;
}

.site-nav a {
  margin-left: 0;
  text-decoration: none;
  color: #5b5b54;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav a:hover {
  color: #111;
}

.nav-secondary a {
  font-size:10px;
  color: #6a6a62;
}

.site-brand {
  display: flex;
  align-items: center;
  min-width: 0;
  padding-top: 4px;
}

.brand-icon-placeholder {
  width: 34px;
  height: 34px;
  margin-right: 12px;
  border-radius: 50%;
  background: transparent;
  flex-shrink: 0;
}

.brand-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  color: inherit;
}

.brand-link:visited,
.brand-link:hover,
.brand-link:active {
  color: inherit;
  text-decoration: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 2px;
}

.brand-logo {
  display: block;
  max-height: 92px;
  width: auto;
}

.brand-name {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.03em;
}

.brand-tagline {
  font-size: 10px;
  color: #5f5f57;
  margin-top: 46px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------------------------
   Hero Sections
--------------------------- */

.hero {
  padding: 100px 0 64px;
  text-align: center;
}

.small-hero {
  padding: 82px 0 48px;
}

.hero h1 {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.tagline {
  font-size: 17px;
  color: #6a6a62;
  margin-bottom: 24px;
}

.hero-text {
  font-size: 18px;
  color: #474742;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------------------------
   Sections
--------------------------- */

.section {
  padding: 92px 0;
}

.muted {
  background-color: #f1eee7;
}

.section h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 26px;
  letter-spacing: 0.015em;
  color: #1f1f1b;
}

.section h3 {
  font-size: 20px;
  margin-top: 34px;
  margin-bottom: 10px;
  color: #24241f;
}

.section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.section p {
  margin-bottom: 18px;
  line-height: 1.7;
  color: #45453f;
}

.section {
  padding: 64px 0;
}

.section .container.narrow {
  display: block;
}  

.section.muted {
  padding: 64px 0;
}

.container.narrow {
  max-width: 680px;
}

/* ---------------------------
   Orientation Statements
--------------------------- */

.orientation p {
  font-size: 20px;
  margin: 10px 0;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ---------------------------
   Lists
--------------------------- */

.bullets {
  margin: 12px 0 16px 22px;
}

.bullets li {
  margin: 6px 0;
}

/* ---------------------------
   Buttons / Links
--------------------------- */

.button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 14px;
  border: 1px solid #999;
  border-radius: 6px;
  text-decoration: none;
  color: #222;
  background: #fff;
  transition: all 0.18s ease;
}

.button:hover {
  border-color: #333;
  color: #000;
  background-color: #f4f4f4;
  transform: translateY(-1px);
}

.section .button {
  margin-top: 8px;
}

.section strong {
  font-weight: 600;
  color: #1f1f1b;
}

/* ---------------------------
   Link Refinement
--------------------------- */

a {
  transition: color 0.15s ease, opacity 0.15s ease;
}

a:hover {
  opacity: 0.85;
}

/* ---------------------------
   Featured Offering
--------------------------- */

.featured-offering {
  background: #f3f0e8;
  border: 1px solid #e1dccf;
  border-radius: 14px;
  padding: 34px 30px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.featured-offering h2,
.featured-offering h3 {
  margin-top: 0;
}

.featured-kicker {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b6b61;
  margin-bottom: 10px;
}

.featured-subtitle {
  font-size: 15px;
  color: #5d5d56;
  margin-bottom: 16px;
}

.featured-offering p:last-child {
  margin-bottom: 0;
}

@media (max-width: 800px) {
  .featured-offering {
    padding: 26px 22px;
    border-radius: 12px;
  }
}

/* ---------------------------
   Journal / Newsletter
--------------------------- */

.journal-intro {
  max-width: 620px;
  margin: 0 auto 10px;
  text-align: center;
}

.journal-section {
  padding: 24px 0;
  border-bottom: 1px solid #e2ddd2;
}

.journal-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.journal-section h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

/* ---------------------------
   Timeline
--------------------------- */

.timeline {
  margin-top: 30px;
}

.timeline-item {
  margin-bottom: 25px;
}

.timeline-item h4 {
  color: #444;
}

/* ---------------------------
   Images
--------------------------- */

.founders-photo {
  max-width: 320px;
  width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
}

.photo-caption {
  font-size: 14px;
  color: #666;
}

/* ---------------------------
   Typography Rhythm
--------------------------- */

h1, h2 {
  margin-bottom: 12px;
}

h3 {
  margin-bottom: 6px;
}

p {
  line-height: 1.65;
  margin-bottom: 14px;
}

/* ---Micro balance refinement --- */
.section h2 {
  margin-bottom: 20px;
}

.hero-text {
  margin-top: 10px;
}

/* ---------------------------
   Footer
--------------------------- */

.site-footer {
  background: #fbfaf6;
  border-top: 1px solid #e4e0d6;
  padding: 36px 0;
  text-align: center;
  font-size: 14px;
  color: #5a5a54;
}

/* ---------------------------
   Responsive
--------------------------- */

@media (max-width: 800px) {

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .site-nav {
    margin-top: 12px;
    justify-content: flex-start;
    max-width: 100px;
    gap: 8px;
  }

  .nav-primary,
  .nav-secondary {
    justify-content: flex-start;
    column-gap: 10px;
  }

  .site-nav a {
    display: inline-block;
    margin: 0;
  }

  .hero h1 {
    font-size: 34px;
  }

  .section {
    padding: 58px 0;
  }
}
.note {
  background: #efece4;
  border-left: 4px solid #999;
  padding: 14px 14px;
  border-radius: 6px;
  margin: 18px 0;
}

.small {
  font-size: 14px;
  color: #666;
}
/* --- Social footer --- */
.footer-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.social {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
}

.social a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  transition: background-color 0.15s ease, opacity 0.15s ease, transform 0.15s ease;
  opacity: 0.85;
  color: #222;
}

.social a:hover {
  opacity: 1;
  transform: translateY(-1px);
  background: rgba(0, 0, 0, 0.04);
}

.social svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

@media (min-width: 700px) {
  .footer-row {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ---------------------------
   Newsletter Form (Clean)
--------------------------- */

.newsletter-form {
  text-align: center;
  max-width: 420px;
  margin: 20px auto 0;
}

.newsletter-form input {
  width: 100%;
  padding: 10px;
  border: 1px solid #d6d2c8;
  border-radius: 6px;
  margin-bottom: 10px;
  font-family: inherit;
}

.newsletter-form button {
  padding: 10px 16px;
  border: 1px solid #999;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  transition: all 0.18s ease;
}

.newsletter-form button:hover {
  border-color: #333;
  background-color: #f4f4f4;
  transform: translateY(-1px);
}

/* ---------------------------
   Newsletter Refinement (Centered + Quiet)
--------------------------- */

.centered-form {
  text-align: center;
}

.centered-form form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.centered-form input {
  max-width: 320px;
  width: 100%;
  margin-bottom: 12px;
  text-align: center;
}

.centered-form button {
  width: 180px;
}

.form-intro {
  max-width: 520px;
  margin: 0 auto 20px;
}

.form-success {
  max-width: 520px;
  margin: 20px auto 0;
}

/* ---------------------------
   Newsletter Success State
--------------------------- */

.form-success {
  text-align: center;
  max-width: 460px;
  margin: 80px auto;
  font-size: 16px;
  line-height: 1.8;
  color: #4a4a44;
  letter-spacing: 0.01em;
}