/* =====================================================================
   Sadovnick Morgan LLP — "v2" green-premium concept stylesheet
   Self-contained: only used by index-v2.html (and any v2 preview pages),
   so it doesn't touch the live site's css/styles.css.
   Brand green is the lead. Edit the tokens in :root to re-skin.
   ===================================================================== */

:root {
  --green-deep:   #123c33;  /* hero / footer / headers */
  --green:        #2a9d8f;  /* brand teal-green (logo)  */
  --green-bright: #7fcdbd;  /* eyebrows on dark         */
  --ivory:        #f5f1e9;  /* warm section background  */
  --ivory-soft:   #eaf3f0;  /* tinted band              */
  --gold:         #e9b96b;  /* premium accent (set to var(--green) to drop gold) */
  --gold-ink:     #3a2a0c;  /* text on gold             */
  --ink:          #1d2b27;  /* body headings/text       */
  --muted:        #5f6b62;  /* secondary text           */
  --line:         #e2dccd;  /* hairline borders         */
  --white:        #ffffff;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  --maxw: 1140px;
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; color: var(--green-deep); line-height: 1.15; margin: 0 0 .5em; }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4.5rem 0; }
.section--ivory { background: var(--ivory); }
.eyebrow { text-transform: uppercase; letter-spacing: .2em; font-size: .72rem; font-weight: 700; color: var(--green); margin-bottom: 1rem; }
.lead { font-size: 1.15rem; color: var(--muted); }
.center { text-align: center; }

/* buttons */
.btn { display: inline-block; font-family: var(--sans); font-weight: 600; font-size: .92rem; padding: .85rem 1.6rem; border-radius: var(--radius); border: none; cursor: pointer; transition: transform .15s ease, background .2s ease; }
.btn--gold { background: var(--gold); color: var(--gold-ink); }
.btn--gold:hover { background: #e0a94f; text-decoration: none; transform: translateY(-1px); }
.btn--green { background: var(--green-deep); color: var(--ivory); }
.btn--green:hover { background: #0c2c25; text-decoration: none; transform: translateY(-1px); }
.btn--ghost { background: transparent; border: 1px solid rgba(255,255,255,.35); color: var(--ivory); }
.btn--ghost:hover { background: rgba(255,255,255,.1); text-decoration: none; }
.btn--ghost-dark { background: transparent; border: 1px solid var(--green); color: var(--green-deep); }
.btn--ghost-dark:hover { background: var(--ivory-soft); text-decoration: none; }

/* topbar */
.topbar { background: var(--green-deep); color: #cfe0d9; font-size: .82rem; }
.topbar .container { display: flex; justify-content: flex-end; gap: 1.5rem; padding: .5rem 1.5rem; }
.topbar a { color: #cfe0d9; }
.topbar a:hover { color: #fff; text-decoration: none; }

/* header */
.site-header { background: var(--white); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; min-height: 76px; }
.brand__logo { height: 34px; width: auto; }
.nav ul { list-style: none; display: flex; align-items: center; gap: 1.5rem; margin: 0; padding: 0; }
.nav a { color: var(--ink); font-weight: 600; font-size: .92rem; }
.nav a:hover { color: var(--green); text-decoration: none; }
.nav .btn { padding: .6rem 1.2rem; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; color: var(--green-deep); cursor: pointer; }

/* hero */
.hero { background: var(--green-deep); color: var(--ivory); padding: 5rem 0 5.5rem; }
.hero .eyebrow { color: var(--green-bright); }
.hero h1 { color: #fff; max-width: 16ch; }
.hero p { color: #cdded7; font-size: 1.15rem; max-width: 52ch; margin: 1.25rem 0 2rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* services */
.grid { display: grid; gap: 1.5rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.card { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 1.75rem; }
.card__icon { font-size: 1.8rem; color: var(--green); margin-bottom: .75rem; }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--muted); font-size: .95rem; margin-bottom: .75rem; }

/* industries grid */
.ind-head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.ind { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 1.1rem; }
.ind i { font-size: 1.4rem; color: var(--green); }
.ind__name { font-weight: 600; color: var(--green-deep); margin: .5rem 0 .15rem; font-size: .98rem; }
.ind__desc { font-size: .82rem; color: var(--muted); }
.ind--more { background: var(--green-deep); border-color: var(--green-deep); }
.ind--more i { color: var(--green-bright); }
.ind--more .ind__name { color: #fff; }
.ind--more .ind__desc { color: #a9c6bd; }

/* sector hub strip */
.hub { background: var(--ivory-soft); border-top: 1px solid #d6e4df; border-bottom: 1px solid #d6e4df; }
.hub .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-top: 1.5rem; padding-bottom: 1.5rem; flex-wrap: wrap; }
.hub__name { font-family: var(--serif); font-size: 1.4rem; color: var(--green-deep); }
.hub__name span { color: var(--green); }
.hub__sub { font-size: .85rem; color: var(--muted); }

/* split / professionals */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.people { display: flex; gap: .75rem; flex-wrap: wrap; }
.avatar { width: 76px; text-align: center; }
.avatar__circle { width: 76px; height: 76px; border-radius: 50%; background: var(--green-deep); color: #fff; font-family: var(--serif); font-size: 1.4rem; display: grid; place-items: center; margin-bottom: .4rem; }
.avatar__name { font-size: .78rem; color: var(--muted); }

/* insights */
.post { border-top: 1px solid var(--line); padding: 1.5rem 0; }
.post:first-of-type { border-top: none; }
.post__meta { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--green); margin-bottom: .35rem; }
.post h3 a { color: var(--green-deep); }

/* CTA band */
.cta-band { background: var(--green); color: #04261f; text-align: center; }
.cta-band h2 { color: #04261f; }
.cta-band p { color: #06352b; max-width: 46ch; margin: 0 auto 1.5rem; }

/* footer */
.site-footer { background: var(--green-deep); color: #b9ccc4; padding: 3.5rem 0 1.5rem; font-size: .92rem; }
.site-footer h4 { color: #fff; font-family: var(--sans); font-size: 1rem; margin-bottom: .8rem; }
.site-footer a { color: #b9ccc4; }
.site-footer a:hover { color: #fff; text-decoration: none; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 2rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: .45rem; }
.social { display: flex; gap: .6rem; margin-top: .75rem; }
.social a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.1); display: grid; place-items: center; color: #fff; }
.social a:hover { background: var(--green); }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; font-size: .82rem; color: #8aa79d; }

/* one-liner / empathy band */
.oneliner { background: var(--ivory-soft); border-top: 1px solid #d6e4df; border-bottom: 1px solid #d6e4df; }
.oneliner p { font-family: var(--serif); font-size: clamp(1.3rem, 2.6vw, 1.9rem); color: var(--green-deep); max-width: 30ch; margin: 0 auto; text-align: center; line-height: 1.35; }

/* plan steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.step__num { width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: #fff; font-family: var(--serif); font-size: 1.2rem; display: grid; place-items: center; margin-bottom: .9rem; }
.step h3 { margin-bottom: .3rem; }
.step p { color: var(--muted); font-size: .95rem; }

/* authority stats */
.stat-row { display: flex; gap: 2.5rem; flex-wrap: wrap; margin-top: 1.25rem; }
.stat__num { font-family: var(--serif); font-size: 1.7rem; color: var(--green-deep); line-height: 1; }
.stat__lbl { font-size: .82rem; color: var(--muted); margin-top: .2rem; }

/* stakes contrast */
.stakes { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.stakes__col { border-radius: 12px; padding: 1.75rem; }
.stakes__col--bad { background: var(--white); border: 1px solid var(--line); }
.stakes__col--good { background: var(--green-deep); color: var(--ivory); }
.stakes__col--good h3 { color: #fff; }
.stakes__col ul { list-style: none; padding: 0; margin: 0; }
.stakes__col li { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: .6rem; font-size: .95rem; }
.stakes__col--bad i { color: #b08a3c; }
.stakes__col--good i { color: var(--green-bright); }

/* preview ribbon */
.preview-ribbon { background: var(--gold); color: var(--gold-ink); text-align: center; font-size: .8rem; font-weight: 600; padding: .4rem 1rem; }
.preview-ribbon a { color: var(--gold-ink); text-decoration: underline; }

@media (max-width: 900px) {
  .grid--3 { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav { position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--line); display: none; }
  .nav.is-open { display: block; }
  .nav ul { flex-direction: column; align-items: flex-start; gap: 0; padding: .5rem 1.5rem 1rem; }
  .nav-toggle { display: block; }
}
