/* Downstreet — warm, grounded, honest */
:root {
  --bg: #F5EFE6;
  --fg: #2C1810;
  --accent: #C8820A;
  --accent-dark: #A06A06;
  --muted: #8B7355;
  --border: #D4C9B8;
  --light: #EDE6D6;
  --white: #FFFDF8;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.15;
}

/* HERO */
.hero {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(44px, 5.5vw, 72px);
  color: var(--fg);
  margin-bottom: 24px;
  font-optical-sizing: auto;
}
.hero-lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--accent);
  font-weight: 300;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.town-mark {
  width: 100%;
  max-width: 240px;
}
.town-mark svg { width: 100%; height: auto; }

/* APPROACH */
.approach { padding: 80px 0; background: var(--white); }
.approach-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.approach-label, .services-label, .who-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}
.approach h2 {
  font-size: clamp(32px, 4vw, 52px);
  max-width: 600px;
  margin-bottom: 24px;
}
.approach-body {
  font-size: 17px;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 48px;
  line-height: 1.8;
}
.approach-divider {
  width: 80px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 48px;
}
.approach-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.stat {}
.stat-number {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.stat-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* SERVICES */
.services { padding: 80px 0; }
.services-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.services h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 48px;
}
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tier {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px 32px;
  position: relative;
  transition: transform 0.2s ease;
}
.tier:hover { transform: translateY(-2px); }
.tier-featured {
  border-color: var(--accent);
  background: var(--white);
}
.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}
.tier-name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--fg);
}
.tier-price {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
.tier-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
}
.tier-for {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.tier-features {
  list-style: none;
}
.tier-features li {
  font-size: 14px;
  color: var(--fg);
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
}
.tier-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* WHO */
.who { padding: 80px 0; background: var(--white); }
.who-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.who h2 {
  font-size: clamp(32px, 4vw, 52px);
  max-width: 500px;
  margin-bottom: 20px;
}
.who-body {
  font-size: 17px;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.industries {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}
.industry {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.industry:hover { border-color: var(--accent); background: var(--light); }
.who-note {
  border-left: 3px solid var(--accent);
  padding-left: 24px;
}
.who-note p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--muted);
}

/* MANIFESTO */
.manifesto { padding: 80px 0; background: var(--fg); color: var(--white); }
.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.manifesto blockquote {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 3vw, 34px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--light);
  max-width: 780px;
  margin: 0 auto 64px;
  text-align: center;
}
.manifesto-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.manifesto-point {}
.point-icon { margin-bottom: 16px; }
.manifesto-point h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}
.manifesto-point p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* CLOSING */
.closing {
  padding: 100px 0;
  background: var(--bg);
  text-align: center;
}
.closing-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px;
}
.closing h2 {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 28px;
}
.closing p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.closing-mark {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--accent);
  margin-top: 40px;
}

/* FOOTER */
footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--muted);
}
.footer-note {
  font-size: 13px;
  color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .approach-stats { grid-template-columns: 1fr; gap: 28px; }
  .tiers { grid-template-columns: 1fr; max-width: 480px; }
  .manifesto-points { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 600px) {
  .hero, .approach, .services, .who, .manifesto, .closing { padding: 60px 0; }
  .hero-inner, .approach-inner, .services-inner, .who-inner, .manifesto-inner, .closing-inner { padding: 0 24px; }
  .manifesto-points { grid-template-columns: 1fr; }
}

/* =========================================================
   AUDIT PAGE
   ========================================================= */

/* HEADER */
.audit-header {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  background: var(--white);
}
.audit-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.back-link:hover { color: var(--fg); }

/* HERO */
.audit-hero {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
}
.audit-hero-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.audit-hero .hero-eyebrow {
  margin-bottom: 20px;
}
.audit-hero h1 {
  font-size: clamp(32px, 4.5vw, 56px);
  color: var(--fg);
  margin-bottom: 28px;
  line-height: 1.15;
}
.audit-hero .hero-lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 24px;
  line-height: 1.7;
}
.audit-hero .hero-tagline {
  font-style: italic;
  font-size: 15px;
  color: var(--accent);
}

/* FORM SECTION */
.audit-form-section {
  padding: 80px 0;
  background: var(--white);
}
.audit-form-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* WHAT'S NEXT */
.audit-whats-next {
  padding-top: 8px;
}
.whats-next-label {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 24px;
}
.whats-next-list {
  list-style: none;
  margin-bottom: 32px;
}
.whats-next-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--fg);
  line-height: 1.6;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.whats-next-list li:last-child { border-bottom: none; }
.check-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.delivered-note {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  margin-top: 24px;
}

/* FORM CARD */
.audit-form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 40px;
}
.form-title {
  font-size: 24px;
  margin-bottom: 28px;
  color: var(--fg);
}
.lead-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
}
.optional-tag {
  font-weight: 400;
  color: var(--muted);
  font-size: 13px;
}
.form-group input,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--fg);
  transition: border-color 0.2s ease;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); opacity: 0.7; }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 28px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  margin-top: 4px;
}
.submit-btn:hover { background: var(--accent-dark); transform: translateY(-1px); }
.submit-btn:active { transform: translateY(0); }
.form-disclaimer {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: -4px;
}

/* SUCCESS STATE */
.success-state {
  text-align: center;
  padding: 20px 0;
}
.success-icon {
  margin: 0 auto 24px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  border: 1px solid var(--border);
}
.success-state h2 {
  font-size: 26px;
  margin-bottom: 16px;
  color: var(--fg);
}
.success-state p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

/* TRUST SIGNALS */
.trust-section {
  padding: 60px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.trust-inner { max-width: 960px; margin: 0 auto; padding: 0 40px; }
.trust-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.trust-icon { flex-shrink: 0; margin-top: 2px; }
.trust-item strong { display: block; font-size: 15px; font-weight: 600; color: var(--fg); margin-bottom: 4px; }
.trust-item p { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* RESPONSIVE */
@media (max-width: 800px) {
  .audit-form-inner { grid-template-columns: 1fr; gap: 40px; }
  .trust-items { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .audit-hero, .audit-form-section, .trust-section { padding: 60px 0; }
  .audit-hero-inner, .audit-form-inner, .trust-inner { padding: 0 24px; }
  .audit-form-card { padding: 28px 24px; }
}