/* ===========================
   SACO PROPERTY SOLUTIONS
   sacopropertysolutions.com
   =========================== */

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

:root {
  --navy: #1a2332;
  --navy-mid: #243044;
  --gold: #B8860B;
  --gold-light: #D4A017;
  --off-white: #F7F5F0;
  --warm-gray: #8a8880;
  --border: #E2DED8;
  --text-primary: #1a1a18;
  --text-secondary: #555550;
  --text-muted: #888882;
  --white: #ffffff;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 3px;
  border: 2px solid var(--navy);
  padding: 2px 8px;
}

.logo-text {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.logo-llc {
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  gap: 0;
  align-items: center;
}

.nav-link {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--text-primary);
  background: var(--off-white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.2s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.mobile-menu a {
  font-size: 15px;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 14px 2rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.mobile-menu a:hover { background: var(--off-white); }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  background: var(--navy);
  padding: 6rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,134,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-radius: 2px;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--gold-light); }

.btn-ghost {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  transition: all 0.2s;
}

.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.hero-rule {
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, transparent 100%);
  margin-top: 0;
}

/* ===== SECTIONS ===== */
.section-label {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 620px;
  font-weight: 300;
}

.intro {
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border);
}

/* ===== AUDIENCE SECTIONS ===== */
.audience-section {
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border);
}

.audience-section.alt {
  background: var(--off-white);
}

.audience-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2rem;
}

.audience-problem {
  display: flex;
  align-items: center;
}

.problem-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.5;
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
}

/* ===== PRODUCT CARDS ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 2.5rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  border-color: #C0BAB0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.product-card.featured {
  border-color: var(--navy-mid);
}

.product-card-top { display: flex; flex-direction: column; gap: 10px; }

.badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  font-weight: 500;
  width: fit-content;
}

.badge.live {
  background: #EAF3DE;
  color: #3B6D11;
}

.badge.soon {
  background: #FAEEDA;
  color: #854F0B;
}

.product-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.2;
}

.product-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}

.product-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
  width: fit-content;
}

.product-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.product-link.muted {
  color: var(--text-muted);
  cursor: default;
  font-weight: 400;
}

/* ===== ABOUT ===== */
.about-section {
  background: var(--navy);
  padding: 6rem 2rem;
  border-bottom: none;
}

.about-section .section-label { color: var(--gold); }
.about-section .section-title { color: var(--white); margin-bottom: 2.5rem; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.founder-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.founder-attr {
  font-size: 13px;
  color: var(--gold-light);
  padding-left: 1.5rem;
  line-height: 1.6;
}

.founder-attr span { color: rgba(255,255,255,0.4); }

.about-body {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 1rem;
}

.credentials {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}

.credential-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 1rem;
}

.credential-item:last-child { border-bottom: none; }

.cred-title {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

.cred-detail {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-align: right;
}

/* ===== CONTACT ===== */
.contact-section {
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border);
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 2.5rem;
  max-width: 560px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.contact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}

.contact-item:last-child { border-bottom: none; }

.contact-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-weight: 500;
}

.contact-value {
  font-size: 15px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.15s;
}

.contact-value:hover { color: var(--gold); }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  padding: 1.5rem 2rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-left { display: flex; align-items: center; }

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-right {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 4rem 1.5rem 3rem; }
  .hero-headline { font-size: 32px; }

  .audience-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-center { order: -1; }

  .audience-section,
  .intro,
  .contact-section { padding: 3.5rem 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .section-title { font-size: 26px; }
  .credential-item { flex-direction: column; align-items: flex-start; gap: 2px; }
  .cred-detail { text-align: left; }
}
