/* Monty Moore TN: editorial personal-brand design system */
:root {
  --green: #1e3a2f;
  --green-2: #2a4d3f;
  --cream: #faf7f0;
  --cream-2: #f1ebdd;
  --gold: #b98b3e;
  --gold-2: #a0762e;
  --ink: #23292a;
  --muted: #5f6b66;
  --line: #e3ddce;
  --white: #ffffff;
  --radius: 4px;
  --shadow: 0 10px 34px rgba(30, 58, 47, 0.10);
  --maxw: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--green); }
a:hover { color: var(--gold-2); }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

h1, h2, h3, h4 { font-family: "Fraunces", Georgia, serif; font-weight: 600; line-height: 1.18; color: var(--green); }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.55rem, 3vw, 2.3rem); }
h3 { font-size: 1.25rem; }
.section { padding: 84px 0; }
.section.alt { background: var(--white); }
.section.dark { background: var(--green); color: var(--cream); }
.section.dark h2, .section.dark h3 { color: var(--cream); }
.section-head { max-width: 700px; margin: 0 auto 48px; text-align: center; }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 1.06rem; }
.section.dark .section-head p { color: #cdd8cf; }
.kicker {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}

/* ---------- Header ---------- */
.topline { background: var(--green); color: #cdd8cf; font-size: 0.85rem; padding: 8px 0; }
.topline .container { display: flex; justify-content: space-between; gap: 12px; }
.topline a { color: var(--cream); font-weight: 600; text-decoration: none; }
.topline .stars { color: var(--gold); letter-spacing: 1px; }
header.site {
  position: sticky; top: 0; z-index: 50; background: rgba(250,247,240,0.96);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 0; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand .mono-img { width: auto; height: 46px; flex: none; display: block; }
.brand .mono {
  width: 46px; height: 46px; flex: none; border-radius: 50%; background: var(--green);
  color: var(--gold); display: grid; place-items: center;
  font-family: "Fraunces", Georgia, serif; font-weight: 600; font-size: 1.15rem; letter-spacing: 0.02em;
}
.brand .t { font-family: "Fraunces", Georgia, serif; font-weight: 600; color: var(--green); font-size: 1.15rem; line-height: 1.2; }
.brand small { display: block; font-family: "Source Sans 3", sans-serif; font-size: 0.7rem; font-weight: 600; color: var(--gold-2); letter-spacing: 0.18em; text-transform: uppercase; }
nav.menu { display: flex; align-items: center; gap: 2px; }
nav.menu > a, nav.menu .drop > button {
  font: inherit; font-weight: 600; font-size: 0.94rem; color: var(--ink);
  padding: 9px 13px; background: none; border: 0; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px; border-bottom: 2px solid transparent;
}
nav.menu > a:hover, nav.menu .drop > button:hover { color: var(--gold-2); }
.drop { position: relative; }
.drop .panel {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 270px; background: var(--white);
  border: 1px solid var(--line); border-radius: 6px; box-shadow: var(--shadow);
  padding: 10px; display: none; z-index: 60;
}
.drop.open .panel, .drop:focus-within .panel { display: block; }
.drop .panel a { display: block; padding: 9px 13px; border-radius: 4px; color: var(--ink); font-weight: 500; font-size: 0.93rem; text-decoration: none; }
.drop .panel a:hover { background: var(--cream); color: var(--gold-2); }
.caret { border: solid var(--muted); border-width: 0 1.6px 1.6px 0; padding: 2.6px; transform: rotate(45deg); margin-top: -3px; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--green); margin: 5px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 0.98rem; padding: 15px 30px; border-radius: var(--radius);
  border: 1.5px solid transparent; cursor: pointer; text-decoration: none;
  transition: all 0.15s ease; white-space: nowrap; letter-spacing: 0.01em;
}
.btn:hover { text-decoration: none; }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-2); color: var(--white); }
.btn-line { background: transparent; color: var(--green); border-color: var(--green); }
.btn-line:hover { background: var(--green); color: var(--cream); }
.btn-line-light { background: transparent; color: var(--cream); border-color: rgba(250,247,240,0.5); }
.btn-line-light:hover { background: var(--cream); color: var(--green); }
.btn-sm { padding: 11px 20px; font-size: 0.9rem; }

/* ---------- Hero ---------- */
.hero { background: var(--green); color: var(--cream); position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(1000px 500px at 85% -10%, rgba(185,139,62,0.22), transparent 60%);
}
.hero .container { position: relative; z-index: 1; padding-top: 92px; padding-bottom: 92px; }
.hero .inner { max-width: 780px; }
.hero h1 { color: var(--cream); margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero .sub { font-size: 1.18rem; color: #cdd8cf; margin-bottom: 34px; max-width: 660px; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero .cred { display: flex; align-items: center; gap: 12px; color: #a8bcab; font-size: 0.92rem; font-weight: 600; flex-wrap: wrap; }
.hero .cred .stars { color: var(--gold); letter-spacing: 2px; }
.hero .crumbs { font-size: 0.85rem; color: #8fa893; margin-bottom: 26px; }
.hero .crumbs a { color: #cdd8cf; text-decoration: none; }

/* ---------- Stat band ---------- */
.stats { background: var(--white); border-bottom: 1px solid var(--line); }
.stats .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 34px 0; text-align: center; }
.stat .n { font-family: "Fraunces", Georgia, serif; font-size: 2.3rem; font-weight: 600; color: var(--green); line-height: 1.1; }
.stat .l { font-size: 0.87rem; color: var(--muted); font-weight: 600; margin-top: 4px; }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: 6px;
  padding: 34px 30px; transition: all 0.18s ease; display: flex; flex-direction: column; text-decoration: none;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.card .tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 12px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.96rem; flex: 1; }
.card .more { margin-top: 18px; font-weight: 700; font-size: 0.9rem; color: var(--green); letter-spacing: 0.04em; }
.card:hover .more { color: var(--gold-2); }

/* ---------- Story split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.portrait-frame {
  aspect-ratio: 4/5; background: linear-gradient(160deg, var(--green-2), var(--green));
  border-radius: 6px; display: grid; place-items: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.portrait-frame .ph {
  font-family: "Fraunces", Georgia, serif; color: var(--gold); font-size: 5rem; opacity: 0.9;
}
.portrait-frame .note {
  position: absolute; bottom: 14px; left: 14px; right: 14px; background: rgba(250,247,240,0.92);
  border-radius: 4px; padding: 10px 14px; font-size: 0.8rem; color: var(--muted); text-align: center;
}
.timeline { list-style: none; margin-top: 26px; border-left: 2px solid var(--gold); padding-left: 26px; display: grid; gap: 20px; }
.timeline .yr { font-family: "Fraunces", Georgia, serif; font-weight: 600; color: var(--gold-2); font-size: 1.05rem; }
.timeline p { color: var(--muted); font-size: 0.97rem; }

/* ---------- Quote / review ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.review {
  background: var(--white); border: 1px solid var(--line); border-radius: 6px; padding: 30px;
  display: flex; flex-direction: column; gap: 16px;
}
.review .stars { color: var(--gold); letter-spacing: 3px; font-size: 1.05rem; }
.review blockquote { font-family: "Fraunces", Georgia, serif; font-style: italic; font-size: 1.04rem; color: var(--ink); line-height: 1.55; flex: 1; }
.review .who { font-size: 0.85rem; font-weight: 700; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; }
.section.dark .review { background: rgba(250,247,240,0.06); border-color: rgba(250,247,240,0.15); }
.section.dark .review blockquote { color: var(--cream); }
.section.dark .review .who { color: #a8bcab; }

/* ---------- Prose ---------- */
.prose { max-width: 760px; }
.prose p { margin-bottom: 20px; color: #3a4440; }
.prose h2 { margin: 44px 0 18px; }
.prose ul { margin: 0 0 20px 24px; color: #3a4440; }
.prose li { margin-bottom: 10px; }
.pull {
  border-left: 3px solid var(--gold); background: var(--cream-2); padding: 24px 28px;
  margin: 30px 0; border-radius: 0 6px 6px 0;
}
.pull p { font-family: "Fraunces", Georgia, serif; font-style: italic; font-size: 1.1rem; color: var(--green); margin: 0; }
.pull .src { font-family: "Source Sans 3", sans-serif; font-style: normal; font-size: 0.82rem; font-weight: 700; color: var(--gold-2); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 10px; display: block; }
.two-col { display: grid; grid-template-columns: 1fr 330px; gap: 56px; align-items: start; }
.sidebar { position: sticky; top: 96px; display: grid; gap: 20px; }
.side-card { background: var(--white); border: 1px solid var(--line); border-radius: 6px; padding: 26px; }
.side-card h3 { margin-bottom: 12px; font-size: 1.1rem; }
.side-card.dark { background: var(--green); border: 0; color: #cdd8cf; }
.side-card.dark h3 { color: var(--cream); }
.side-card.dark .phone-big { font-family: "Fraunces", Georgia, serif; font-size: 1.4rem; color: var(--gold); display: block; margin: 8px 0 16px; text-decoration: none; }
.side-list { list-style: none; display: grid; gap: 4px; }
.side-list a { display: block; padding: 8px 12px; border-radius: 4px; color: var(--ink); font-weight: 500; font-size: 0.93rem; text-decoration: none; }
.side-list a:hover { background: var(--cream); color: var(--gold-2); }
.side-list a.active { background: var(--cream-2); color: var(--green); font-weight: 700; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); background: transparent; }
.faq summary {
  cursor: pointer; padding: 22px 8px; font-family: "Fraunces", Georgia, serif; font-weight: 600;
  font-size: 1.08rem; color: var(--green); list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 1.5rem; flex: none; }
.faq details[open] summary::after { content: "-"; }
.faq .a { padding: 0 8px 24px; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--gold); color: var(--white); }
.cta-band .container { padding: 64px 22px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { color: #f7ecd9; max-width: 520px; }
.cta-band .btn-dark { background: var(--green); color: var(--cream); }
.cta-band .btn-dark:hover { background: var(--green-2); color: var(--cream); }
.cta-band .btn-line-light:hover { color: var(--gold-2); }

/* ---------- Footer ---------- */
footer.site { background: var(--green); color: #a8bcab; font-size: 0.93rem; }
footer.site .cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 42px; padding: 64px 0 44px; }
footer.site h4 { color: var(--cream); font-size: 1rem; margin-bottom: 16px; }
footer.site a { color: #a8bcab; display: block; padding: 4px 0; text-decoration: none; }
footer.site a:hover { color: var(--cream); }
footer.site .legal {
  border-top: 1px solid rgba(250,247,240,0.14); padding: 24px 0; font-size: 0.8rem; color: #7d967f;
  display: grid; gap: 8px;
}
.eho { display: flex; align-items: center; gap: 10px; }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-30 { margin-top: 30px; }
.gold-txt { color: var(--gold-2); font-weight: 700; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .cards, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .stats .grid { grid-template-columns: 1fr 1fr; }
  .split, .two-col { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  footer.site .cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .cards, .reviews-grid { grid-template-columns: 1fr; }
  nav.menu {
    display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream);
    flex-direction: column; align-items: stretch; padding: 12px 18px 22px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  nav.menu.open { display: flex; }
  nav.menu > a, nav.menu .drop > button { width: 100%; justify-content: space-between; padding: 13px 8px; }
  .drop .panel { position: static; box-shadow: none; border: 0; padding-left: 14px; }
  .hamburger { display: block; }
  .nav-cta .btn-line { display: none; }
  .topline .left { display: none; }
  .topline .container { justify-content: center; }
  .section { padding: 56px 0; }
  .hero .container { padding-top: 60px; padding-bottom: 60px; }
}
