/* ============================================================
   GetMoreTreeWork.com — site styles
   Palette: charcoal (#12160f / #1a2016), off-white (#f4f4f0),
   accent: safety orange (#ff7a1a) — one accent, locked site-wide
   Type: Archivo (display) + system fallback, Public Sans body
   ============================================================ */

:root {
  --ink: #0b1b36;
  --ink-2: #10244a;
  --ink-3: #142c58;
  --paper: #f7f8fb;
  --paper-2: #eef1f7;
  --line: #d8dce6;
  --line-dark: rgba(255,255,255,.14);
  --accent: #f86006;
  --accent-deep: #d9540a;
  --accent-ink: #232323;
  --green: #ffb300;
  --muted: #5b6474;
  --muted-dark: #a9b3c9;
  --radius: 14px;
  --radius-btn: 10px;
  --shadow: 0 10px 30px rgba(11, 27, 54, .12);
  --font-display: "Archivo", "Archivo Expanded", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 22px; }
.wrap-wide { max-width: 1320px; margin: 0 auto; padding: 0 22px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.h-hero {
  font-size: clamp(2.9rem, 8vw, 5.4rem);
  line-height: .96;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.h-sec {
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  letter-spacing: -0.025em;
}

.h-sec-sm {
  font-size: clamp(1.5rem, 3.2vw, 2rem);
}

.lead {
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 62ch;
}

.dark .lead { color: var(--muted-dark); }

.sec-eyebrow {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(11, 27, 54, .45);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}

.brand-mark {
  width: 38px; height: 38px;
  background: var(--accent);
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex: none;
}

.brand-mark svg { width: 22px; height: 22px; }

.brand-logo {
  height: 64px;
  width: 64px;
  display: block;
}

@media (max-width: 720px) {
  .brand-logo { height: 52px; width: 52px; }
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.brand-name small {
  display: block;
  font-weight: 500;
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-links a:not(.btn) {
  color: #dfe2da;
  text-decoration: none;
  font-size: .93rem;
  font-weight: 500;
}

.nav-links a:not(.btn):hover { color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 24px; height: 2.5px;
  background: #fff;
  border-radius: 2px;
  content: "";
  position: relative;
  transition: transform .2s ease;
}

.nav-toggle span::before { position: absolute; top: -8px; }
.nav-toggle span::after { position: absolute; top: 8px; }

.nav-cta-group { display: flex; align-items: center; gap: 12px; }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #12160f;
    border-bottom: 1px solid var(--line-dark);
    display: none;
    padding: 8px 22px 18px;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a:not(.btn) {
    display: block;
    padding: 13px 0;
    width: 100%;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .nav-cta-group .btn-nav { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .01em;
  text-decoration: none;
  border-radius: var(--radius-btn);
  padding: 15px 26px;
  line-height: 1.1;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}

.btn:active { transform: scale(.985) translateY(1px); }

.btn-primary {
  background: var(--accent);
  color: #0b1b36;
}

.btn-primary:hover { background: #ff8d3d; }

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}

.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.07); }

.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: rgba(20,24,15,.35);
}

.btn-ghost-dark:hover { border-color: var(--ink); background: rgba(20,24,15,.05); }

.btn-lg { font-size: 1.12rem; padding: 18px 32px; }

.btn-nav {
  padding: 11px 18px;
  font-size: .92rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: #0e120a;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .92;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,27,54,.38) 0%, rgba(11,27,54,.12) 42%, rgba(11,27,54,.42) 100%),
    linear-gradient(90deg, rgba(11,27,54,.30) 0%, rgba(11,27,54,.05) 70%);
}

.hero-inner {
  position: relative;
  padding: clamp(64px, 12vw, 150px) 0 clamp(64px, 11vw, 130px);
  max-width: 860px;
}

.hero-kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--accent);
  border: 1px solid var(--accent);
  padding: 9px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
  box-shadow: 0 6px 18px rgba(248,96,6,.35);
}

.hero h1 span.dot { color: var(--accent); }

.hero-sub {
  margin-top: 26px;
  font-size: clamp(1.12rem, 2.4vw, 1.45rem);
  line-height: 1.5;
  color: #e6ebf5;
  max-width: 34em;
  font-weight: 500;
}

.hero-sub strong {
  color: #ffb300;
  font-weight: 700;
}

.hero-note {
  margin-top: 14px;
  font-size: 1.02rem;
  color: #c8d1e4;
  max-width: 34em;
}

.hero-ctas {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-fineprint {
  margin-top: 18px;
  font-size: .9rem;
  color: #cfd4c8;
}

/* ---------- Sections ---------- */
.sec { padding: clamp(64px, 9vw, 110px) 0; }
.sec-tight { padding: clamp(48px, 6vw, 72px) 0; }

.dark {
  background: var(--ink);
  color: #fff;
}

.dark h2, .dark h3 { color: #fff; }

.orange-band {
  background: var(--accent);
  color: #0b1b36;
}

.orange-band h2 { color: #0b1b36; }

.sec-head { margin-bottom: clamp(30px, 5vw, 54px); }
.sec-head.center { text-align: center; }
.sec-head.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Problem list ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 720px) {
  .problem-grid { grid-template-columns: 1fr 1fr; }
}

.problem-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
}

.problem-item .x {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #e5e5dd;
  color: #7a4a10;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: .9rem;
  margin-top: 2px;
}

.problem-item p { font-size: 1rem; line-height: 1.5; color: #3a3f36; }

.problem-head {
  margin-top: clamp(34px, 6vw, 60px);
  text-align: center;
}
.problem-head .lead { max-width: 640px; margin-left: auto; margin-right: auto; }
.problem-close {
  margin-top: 30px;
  font-size: 1.08rem;
  line-height: 1.6;
  max-width: 60ch;
  color: var(--muted);
  border-left: 4px solid var(--accent);
  padding-left: 18px;
}

/* ---------- Feature cards ---------- */
.feat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 640px) { .feat-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .feat-grid { grid-template-columns: repeat(3, 1fr); } }

.feat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .15s ease, box-shadow .15s ease;
}

.feat:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.feat .ico {
  width: 46px; height: 46px;
  background: #fdf1e6;
  border: 1px solid #f3d9be;
  border-radius: 12px;
  display: grid;
  place-items: center;
}

.feat .ico svg { width: 24px; height: 24px; stroke: var(--accent-deep); }

.feat h3 { font-size: 1.18rem; }
.feat p { color: var(--muted); font-size: .99rem; }

/* dark variant (features page) */
.dark .feat, .feat.dark {
  background: var(--ink-2);
  border-color: var(--line-dark);
}
.dark .feat h3, .feat.dark h3 { color: #fff; }
.dark .feat p, .feat.dark p { color: var(--muted-dark); }
.dark .feat .ico, .feat.dark .ico { background: rgba(248,96,6,.12); border-color: rgba(248,96,6,.35); }
.dark .feat .ico svg, .feat.dark .ico svg { stroke: var(--accent); }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  counter-reset: step;
}

@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); } }

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
  counter-increment: step;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--accent);
  letter-spacing: -.03em;
  display: block;
  margin-bottom: 8px;
}

.step h3 { font-size: 1.2rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 1rem; }

/* ---------- Split media section ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split.flip > .split-media { order: 2; }
}

.split-media.split-media--tall img {
  aspect-ratio: 2 / 3;
  object-fit: contain;
  background: transparent;
}

.split-media img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.split-body h2 { margin-bottom: 18px; }

.split-body p + p { margin-top: 14px; }
.split-body p { color: var(--muted); }
.dark .split-body p { color: var(--muted-dark); }

.check-list {
  list-style: none;
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 1.02rem;
  color: #33382f;
}

.dark .check-list li { color: #dfe2da; }

.check-list .ck {
  flex: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: #0b1b36;
  display: grid;
  place-items: center;
  margin-top: 2px;
  font-weight: 800;
  font-size: .8rem;
}

/* ---------- Journey / timeline ---------- */
.journey {
  display: grid;
  gap: 0;
  position: relative;
}

.journey-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line-dark);
}

.journey-row .tag {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent);
  font-size: 1.1rem;
}

.journey-row h3 { font-size: 1.1rem; margin-bottom: 6px; }
.journey-row p { color: var(--muted-dark); font-size: .99rem; max-width: 60ch; }

.journey-row.hot .tag { background: var(--accent); color: #0b1b36; border-color: var(--accent); }

/* ---------- Compare table ---------- */
.compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 820px) { .compare { grid-template-columns: 1fr 1fr; } }

.compare-col {
  border-radius: var(--radius);
  padding: 28px 26px;
  border: 1px solid var(--line);
  background: #fff;
}

.compare-col.hl {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.compare-col h3 { font-size: 1.15rem; margin-bottom: 16px; }

.compare-col ul { list-style: none; display: grid; gap: 11px; }

.compare-col li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .99rem; color: var(--muted);
}

.compare-col.hl li { color: #dfe2da; }

.compare-col li .b { flex: none; font-weight: 800; color: var(--accent); margin-top: 1px; }
.compare-col li .n { flex: none; font-weight: 800; color: #b3b3a8; margin-top: 1px; }

/* ---------- Pricing ---------- */
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow);
}

.price-points {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

@media (min-width: 760px) { .price-points { grid-template-columns: 1fr 1fr; } }

.price-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fafaf7;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: .99rem;
  color: #3a3f36;
}

.price-point .b { color: var(--accent); font-weight: 800; flex: none; margin-top: 1px; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; max-width: 860px; margin: 0 auto; }

.faq {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.06rem;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary .pm {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--accent-deep);
  font-size: 1rem;
  transition: transform .18s ease;
}

.faq[open] summary .pm { transform: rotate(45deg); }

.faq .faq-body { padding: 0 22px 20px; color: var(--muted); font-size: 1rem; max-width: 68ch; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  border-radius: 22px;
  padding: clamp(40px, 7vw, 76px) clamp(24px, 5vw, 60px);
  margin: clamp(48px, 7vw, 90px) auto;
}

.cta-band .cta-bg {
  position: absolute; inset: 0 0 0 auto;
  width: 55%; height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: .95;
  mask-image: linear-gradient(90deg, transparent 0%, #000 32%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 32%);
}

.cta-band .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,27,54,.55) 20%, rgba(11,27,54,.1) 100%);
}

.cta-band .inner { position: relative; max-width: 620px; }

.cta-band h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); }

.cta-band p { margin-top: 16px; color: #dfe2da; font-size: 1.05rem; max-width: 54ch; }

.cta-band .hero-ctas { margin-top: 30px; }

/* ---------- Image showcase ---------- */
.showcase { margin-top: clamp(36px, 5vw, 56px); }
.showcase img {
  display: block;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}

/* ---------- Owner photo ---------- */
.owner-photo { margin: 26px 0 0; }
.owner-photo img {
  display: block;
  width: 100%;
  max-width: 640px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
}

/* ---------- Form / contact ---------- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-card iframe {
  width: 100%;
  min-height: 360px;
}

.form-note {
  display: flex;
  gap: 10px;
  align-items: center;
  background: #fdf6ef;
  border: 1px solid #f3dcc2;
  color: #7a4a10;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: .93rem;
  margin-top: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 940px) {
  .contact-grid { grid-template-columns: 1.15fr .85fr; align-items: start; }
}

.contact-side {
  display: grid;
  gap: 16px;
}

.side-card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 26px 24px;
}

.side-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.side-card p { color: var(--muted-dark); font-size: .97rem; }
.side-card a { color: var(--accent); font-weight: 600; text-decoration: none; }
.side-card a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer {
  background: #0e120a;
  color: var(--muted-dark);
  padding: 56px 0 36px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.foot-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

@media (min-width: 860px) { .foot-grid { grid-template-columns: 2fr 1fr 1fr; } }

.site-footer h4 {
  color: #fff;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-weight: 700;
}

.site-footer ul { list-style: none; display: grid; gap: 9px; }
.site-footer a { text-decoration: none; font-size: .95rem; }
.site-footer a:hover { color: #fff; }

.foot-bottom span:last-child { color: var(--accent); font-weight: 700; }

  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: .88rem;
}

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 70;
  background: rgba(14,18,10,.97);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  display: none;
}

.mobile-cta .btn { width: 100%; }

@media (max-width: 700px) {
  .mobile-cta { display: block; }
  body { padding-bottom: calc(88px + env(safe-area-inset-bottom)); }
}

/* ---------- Mobile centering ---------- */
@media (max-width: 700px) {
  .wrap, .wrap-wide { padding: 0 18px; }

  .site-header .nav {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    text-align: center;
    padding: 12px 0 14px;
  }
  .site-header .brand { justify-content: center; }
  .site-header .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 18px;
  }
  .site-header .nav-cta-group { justify-content: center; }

  .hero-inner,
  .sec-head,
  .split-body,
  .cta-band .inner,
  .site-footer .foot-grid > div {
    text-align: center;
  }
  .hero-ctas { justify-content: center; }
  .hero-note, .hero-fineprint, .sec-head .lead, .cta-band p { margin-left: auto; margin-right: auto; }
  .pill-row { justify-content: center; }
  .showcase { text-align: center; }

  .cta-band .cta-bg {
    width: 100%;
    inset: 0;
    opacity: .22;
    mask-image: linear-gradient(180deg, #000 0%, transparent 70%);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 70%);
  }
}

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-30 { margin-top: 30px; }
.muted { color: var(--muted); }
.dark .muted { color: var(--muted-dark); }

.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }

.pill {
  font-size: .85rem;
  font-weight: 600;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  background: #fff;
  color: #3a3f36;
}

.dark .pill { background: var(--ink-2); border-color: var(--line-dark); color: #dfe2da; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
