/* Sabertooth Tax Service — shared stylesheet */

:root {
  --brand: #df9f3e;
  --brand-dark: #c4832a;
  --brand-soft: #fbf3e4;
  --ink: #12161c;
  --ink-soft: #1c2330;
  --text: #33404d;
  --muted: #6b7785;
  --surface: #ffffff;
  --surface-alt: #f6f8fa;
  --border: #e6eaef;
  --shadow: 0 10px 30px rgba(18, 22, 28, 0.08);
  --shadow-sm: 0 4px 14px rgba(18, 22, 28, 0.06);
  --radius: 14px;
  --radius-sm: 10px;
  --max: 1120px;
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

a { color: var(--brand-dark); text-decoration: none; }
a:hover { color: var(--brand); }

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

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

.section { padding: 72px 0; }
.section--alt { background: var(--surface-alt); }
.section__head { max-width: 680px; margin: 0 auto 44px; text-align: center; }
.section__head p { color: var(--muted); font-size: 1.05rem; margin: 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 14px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-dark); color: #fff; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--outline { background: transparent; color: var(--brand-dark); border-color: var(--brand); }
.btn--outline:hover { background: var(--brand); color: #fff; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 44px; height: auto; }
.brand__name { font-weight: 600; color: var(--ink); font-size: 1.1rem; line-height: 1.1; }
.brand__name span { display: block; font-size: 0.72rem; font-weight: 500; color: var(--muted); letter-spacing: 0.04em; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 8px;
}
.nav a:hover { color: var(--ink); background: var(--surface-alt); }
.nav a.is-active { color: var(--brand-dark); }
.nav .btn { margin-left: 8px; padding: 9px 20px; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: 0.2s;
}

/* Hero */
.hero {
  position: relative;
  color: #fff;
  background: linear-gradient(120deg, rgba(18,22,28,0.94) 0%, rgba(18,22,28,0.72) 55%, rgba(18,22,28,0.55) 100%),
              url('../img/sabertooth-hero.jpg') center right / cover no-repeat;
}
.hero .container { padding-top: 96px; padding-bottom: 104px; }
.hero__inner { max-width: 620px; }
.hero h1 { color: #fff; }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.82); margin-bottom: 32px; }
.hero .eyebrow { color: var(--brand); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Feature strip */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: -56px;
  position: relative;
  z-index: 5;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.feature .icon { font-size: 1.6rem; margin-bottom: 10px; }
.feature h3 { margin-bottom: 4px; }
.feature p { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* Cards / grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.card--accent { border-top: 4px solid var(--brand); }
.card h3 { display: flex; align-items: center; gap: 10px; }

/* Check lists */
.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li {
  position: relative;
  padding: 8px 0 8px 30px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.check-list li:last-child { border-bottom: 0; }
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--brand);
  font-weight: 700;
}

/* Printable tax checklist */
.checklist {
  max-width: 680px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 40px 44px;
}
.checklist h2 {
  font-size: 1.15rem;
  margin: 28px 0 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--brand);
}
.checklist h2:first-of-type { margin-top: 0; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 5px 0;
  color: var(--text);
  cursor: pointer;
}
.check-item input {
  flex: none;
  width: 17px;
  height: 17px;
  margin-top: 4px;
  accent-color: var(--brand);
}
.print-bar { text-align: center; margin: 0 0 28px; }
.print-bar--bottom { margin: 30px 0 0; }

@media print {
  .site-header, .site-footer, .page-hero, .print-bar, .nav-toggle { display: none !important; }
  body { color: #000; }
  .section { padding: 0; }
  .checklist { border: 0; box-shadow: none; padding: 0; max-width: none; }
  .check-item input { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}

/* Simple bullet reasons */
.reasons { display: grid; gap: 16px; }
.reason {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}
.reason .num {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 700;
  display: grid;
  place-items: center;
}
.reason p { margin: 0; }

/* CTA band */
.cta-band {
  background: var(--ink);
  color: #fff;
  border-radius: 20px;
  padding: 52px 44px;
  text-align: center;
  background-image: linear-gradient(120deg, rgba(223,159,62,0.16), rgba(18,22,28,0));
}
.cta-band h2 { color: #fff; max-width: 760px; margin: 0 auto 12px; }
.cta-band p { color: rgba(255,255,255,0.75); max-width: 620px; margin: 0 auto 28px; }

/* Page hero (interior pages) */
.page-hero {
  background: var(--ink);
  color: #fff;
  padding: 66px 0;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 8px; }
.page-hero p { color: rgba(255,255,255,0.72); margin: 0; }

/* Contact cards */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-card {
  text-align: center;
  padding: 34px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.contact-card .icon {
  width: 54px; height: 54px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--brand-soft);
  display: grid; place-items: center;
  font-size: 1.4rem;
}
.contact-card h3 { margin-bottom: 6px; }
.contact-card a { font-weight: 500; }
.map-embed {
  margin-top: 44px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.map-embed iframe { display: block; width: 100%; height: 380px; border: 0; }

/* Payment */
.pay-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.pay-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}
.pay-card label { display: block; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.amount-field { position: relative; margin-bottom: 22px; }
.amount-field .dollar {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--muted); font-weight: 600;
}
.amount-field input {
  width: 100%;
  font-family: inherit;
  font-size: 1.1rem;
  padding: 14px 16px 14px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--ink);
}
.amount-field input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft); }
.pay-note { font-size: 0.9rem; color: var(--muted); margin-top: 18px; }
.pay-media img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  padding: 60px 0 28px;
}
.site-footer a { color: rgba(255,255,255,0.72); }
.site-footer a:hover { color: var(--brand); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; gap: 14px; align-items: flex-start; }
.footer-brand img { width: 52px; }
.footer-brand strong { color: #fff; display: block; font-size: 1.05rem; margin-bottom: 6px; }
.site-footer h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-bottom {
  padding-top: 22px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* Responsive */
@media (max-width: 900px) {
  .features, .grid-3, .contact-grid { grid-template-columns: 1fr; }
  .grid-2, .pay-wrap, .footer-grid { grid-template-columns: 1fr; }
  .features { margin-top: 32px; }
  .pay-media { order: -1; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    top: 74px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 10px 16px 18px;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 8px; border-radius: 8px; }
  .nav .btn { margin: 8px 0 0; justify-content: center; }
  .cta-band { padding: 40px 24px; }
}
