/* ============================================
   OGM Acquisitions LLC — Stylesheet
   ============================================ */

:root {
  /* Color tokens */
  --ink: #1C2620;
  --ink-soft: #263530;
  --paper: #F5F1E8;
  --paper-dim: #EBE5D6;
  --pine: #35573C;
  --pine-dark: #24402A;
  --pine-light: #4A6E4F;
  --clay: #B1502F;
  --clay-dark: #8F3E22;
  --wheat: #C99A4A;
  --ink-text: #1C2620;
  --muted: #5B6660;
  --white: #FFFFFF;
  --line: rgba(28, 38, 32, 0.12);
  --line-light: rgba(245, 241, 232, 0.18);

  /* Type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing scale */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 6.5rem;

  --radius: 10px;
  --radius-sm: 6px;
  --shadow-card: 0 1px 2px rgba(28,38,32,0.06), 0 8px 24px rgba(28,38,32,0.08);
  --max-width: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-text);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.12; font-weight: 600; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea { font-family: inherit; }

:focus-visible {
  outline: 3px solid var(--wheat);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
  display: inline-block;
}
.on-dark .eyebrow { color: var(--wheat); }

.section {
  padding: var(--space-6) 0;
}
.section-head {
  max-width: 640px;
  margin: 0 0 var(--space-4);
}
.section-head h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  margin-top: var(--space-2);
}
.section-head p {
  margin-top: var(--space-2);
  color: var(--muted);
  font-size: 1.05rem;
}
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .eyebrow::before { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color .15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--clay);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(177,80,47,0.28);
}
.btn-primary:hover { background: var(--clay-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.on-dark .btn-outline { color: var(--paper); }
.on-dark .btn-outline:hover { background: var(--paper); color: var(--ink); }
.btn-block { width: 100%; }
.btn-lg { padding: 1.1rem 2rem; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(245,241,232,0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.brand-mark { width: 36px; height: 36px; flex-shrink: 0; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-name span { display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--clay); margin-top: 1px;}

.nav-desktop {
  display: none;
}
.nav-desktop ul { display: flex; gap: var(--space-4); }
.nav-desktop a {
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--ink-soft);
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color .15s ease, color .15s ease;
}
.nav-desktop a:hover { color: var(--clay); border-color: var(--clay); }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.header-cta { display: none; }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1.5px solid var(--line);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
}
.menu-toggle .bars { width: 18px; height: 12px; position: relative; }
.menu-toggle .bars span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--ink); border-radius: 2px; }
.menu-toggle .bars span:nth-child(1){ top: 0; }
.menu-toggle .bars span:nth-child(2){ top: 5px; }
.menu-toggle .bars span:nth-child(3){ top: 10px; }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-inner { padding: var(--space-3); }
.mobile-nav-close {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--paper);
  color: var(--ink);
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: var(--space-4);
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 0.3rem; }
.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line-light);
}
.mobile-nav .mobile-cta { margin-top: var(--space-4); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: var(--space-6) 0 var(--space-6);
}
.hero-map-watermark {
  position: absolute;
  right: -8%;
  top: -6%;
  width: 620px;
  max-width: 80vw;
  opacity: 0.14;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-5);
}
.hero-copy h1 {
  font-size: clamp(2.1rem, 5.6vw, 3.4rem);
  color: var(--paper);
  letter-spacing: -0.01em;
}
.hero-copy h1 em {
  font-style: italic;
  color: var(--wheat);
}
.hero-copy .eyebrow { margin-bottom: var(--space-2); }
.hero-copy p.lede {
  margin-top: var(--space-2);
  font-size: 1.15rem;
  color: rgba(245,241,232,0.82);
  max-width: 46ch;
}
.hero-points {
  margin-top: var(--space-4);
  display: grid;
  gap: 0.7rem;
}
.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 1rem;
  color: var(--paper);
}
.hero-points svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; color: var(--wheat); }

.hero-actions { margin-top: var(--space-4); display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* Lead form card */
.lead-card {
  background: var(--paper);
  color: var(--ink-text);
  border-radius: var(--radius);
  padding: var(--space-4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  border: 1px solid rgba(0,0,0,0.04);
}
.lead-card h2 {
  font-size: 1.5rem;
}
.lead-card .sub {
  color: var(--muted);
  margin-top: 0.4rem;
  font-size: 0.95rem;
}
.field { margin-top: var(--space-3); }
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
}
.field label .req { color: var(--clay); }
.field input, .field textarea {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  background: var(--white);
  color: var(--ink-text);
}
.field input:focus, .field textarea:focus {
  border-color: var(--pine);
}
.checkline {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: var(--space-2);
  font-size: 0.82rem;
  color: var(--muted);
}
.checkline input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--pine); flex-shrink: 0; }
.checkline a { color: var(--pine); font-weight: 600; text-decoration: underline; }
.lead-card .btn { margin-top: var(--space-3); }
.form-note {
  margin-top: var(--space-2);
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}
.hp-field { position: absolute; left: -9999px; top: -9999px; }

/* ---------- Trust ribbon ---------- */
.ribbon {
  background: var(--pine);
  color: var(--paper);
  overflow: hidden;
}
.ribbon-track {
  display: flex;
  gap: var(--space-5);
  padding: 0.9rem 0;
  white-space: nowrap;
  animation: scrollRibbon 26s linear infinite;
  width: max-content;
}
.ribbon-track span { font-weight: 700; font-size: 0.92rem; letter-spacing: 0.02em; display: inline-flex; align-items: center; gap: var(--space-5); }
.ribbon-track span::after { content: "•"; margin-left: var(--space-5); color: var(--wheat); }
@keyframes scrollRibbon {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ribbon-track { animation: none; flex-wrap: wrap; }
}

/* ---------- Advantage grid ---------- */
.advantage-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}
.advantage-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-3);
  transition: transform .18s ease, box-shadow .18s ease;
}
.advantage-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.advantage-card .icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--paper-dim);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-2);
  color: var(--pine);
}
.advantage-card .icon svg { width: 24px; height: 24px; }
.advantage-card h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.advantage-card p { color: var(--muted); font-size: 0.95rem; }

/* ---------- About ---------- */
.about-section { background: var(--ink); color: var(--paper); }
.about-grid {
  display: grid;
  gap: var(--space-5);
  align-items: center;
}
.about-copy p { margin-top: var(--space-2); color: rgba(245,241,232,0.82); font-size: 1.02rem; }
.about-copy p:first-of-type { margin-top: var(--space-2); }
.about-stats {
  margin-top: var(--space-4);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}
.about-stats .stat-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--wheat);
}
.about-stats .stat-label {
  font-size: 0.82rem;
  color: rgba(245,241,232,0.72);
  margin-top: 0.25rem;
}
.about-visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: var(--ink-soft);
  padding: var(--space-4);
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  gap: var(--space-3);
  counter-reset: step;
}
.step-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-4);
  padding-top: var(--space-5);
}
.step-card .num {
  position: absolute;
  top: var(--space-3);
  left: var(--space-4);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clay);
  letter-spacing: 0.05em;
}
.step-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.step-card p { color: var(--muted); }

/* ---------- Situations ---------- */
.situations-section { background: var(--paper-dim); }
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.pill {
  background: var(--white);
  border: 1.5px solid var(--line);
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* ---------- Areas / map ---------- */
.areas-section { }
.areas-grid {
  display: grid;
  gap: var(--space-5);
  align-items: center;
}
.map-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-4);
}
.map-wrap svg { width: 100%; height: auto; }
.area-list { display: grid; gap: 0.6rem; margin-top: var(--space-3); }
.area-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 1.02rem;
}
.area-list li svg { width: 16px; height: 16px; color: var(--clay); flex-shrink: 0; }
.area-note { margin-top: var(--space-3); color: var(--muted); font-size: 0.92rem; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 0.8rem; max-width: 780px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.3rem;
  font-weight: 700;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--pine);
  color: var(--pine);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: transform .2s ease;
}
.faq-item[open] summary .plus { transform: rotate(45deg); }
.faq-item .faq-body {
  padding: 0 1.3rem 1.2rem;
  color: var(--muted);
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--pine-dark);
  color: var(--paper);
  text-align: center;
}
.final-cta h2 { color: var(--paper); font-size: clamp(1.7rem, 4vw, 2.3rem); }
.final-cta p { margin-top: var(--space-2); color: rgba(245,241,232,0.82); max-width: 55ch; margin-left:auto; margin-right:auto; }
.final-cta .btn { margin-top: var(--space-3); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(245,241,232,0.75);
  padding: var(--space-5) 0 var(--space-3);
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  gap: var(--space-4);
}
.footer-brand .brand-name { color: var(--paper); }
.footer-brand p { margin-top: var(--space-2); color: rgba(245,241,232,0.65); max-width: 40ch; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wheat);
  margin-bottom: var(--space-2);
}
.footer-col ul { display: grid; gap: 0.55rem; }
.footer-col a:hover { color: var(--paper); }
.footer-bottom {
  margin-top: var(--space-5);
  padding-top: var(--space-3);
  border-top: 1px solid var(--line-light);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(245,241,232,0.5);
}
.footer-bottom .legal-address { max-width: 60ch; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Simple pages (privacy/terms/thank you) ---------- */
.doc-page { padding: var(--space-6) 0; }
.doc-page .container { max-width: 820px; }
.doc-page h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.doc-page .updated { color: var(--muted); margin-top: 0.5rem; font-size: 0.9rem; }
.doc-page h2 { font-size: 1.3rem; margin-top: var(--space-5); margin-bottom: var(--space-2); }
.doc-page p, .doc-page li { color: var(--ink-soft); margin-top: var(--space-2); }
.doc-page ul { list-style: disc; padding-left: 1.3rem; }
.doc-page ul li { margin-top: 0.5rem; }
.doc-page a { color: var(--pine); font-weight: 600; text-decoration: underline; }

.thanks-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}
.thanks-page .icon-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--pine);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-3);
}
.thanks-page .icon-circle svg { width: 34px; height: 34px; color: var(--paper); }
.thanks-page h1 { color: var(--paper); font-size: clamp(1.8rem, 4vw, 2.6rem); }
.thanks-page p { margin-top: var(--space-2); color: rgba(245,241,232,0.8); max-width: 50ch; margin-left:auto; margin-right:auto; }
.thanks-page .btn { margin-top: var(--space-4); }

/* ============ Responsive ============ */
@media (min-width: 720px) {
  .advantage-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .nav-desktop { display: block; }
  .menu-toggle { display: none; }
  .header-cta { display: inline-flex; }
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
  .advantage-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: 0.9fr 1.1fr; }
  .section { padding: var(--space-7) 0; }
}

@media (min-width: 1080px) {
  .hero { padding-top: var(--space-7); padding-bottom: var(--space-7); }
}
