/* The Acker Group — goackergroup.com
   Design system: black / white monochrome to match the TAG brand mark.
   Fast, no frameworks, mobile-first. */

:root {
  --cabernet: #1b1b1b;
  --cabernet-deep: #000000;
  --gold: #1b1b1b;
  --gold-soft: #dcdcdc;
  --cream: #f5f5f5;
  --paper: #ffffff;
  --ink: #141414;
  --muted: #5c5c5c;
  --line: #e4e4e4;
  --radius: 14px;
  --maxw: 1140px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

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

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

a { color: var(--cabernet); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; font-weight: 600; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 0.6em; }
h3 { font-size: 1.25rem; margin-bottom: 0.4em; }
p { margin-bottom: 1em; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section.tint { background: var(--cream); }
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem;
  font-weight: 700; color: var(--gold); margin-bottom: 0.8em;
}
.section.tint .eyebrow, .on-dark .eyebrow { color: #555; }
.cta-band .eyebrow { color: rgba(255,255,255,0.65); }
.lede { font-size: 1.15rem; color: var(--muted); max-width: 720px; }

/* Buttons */
.btn {
  display: inline-block; padding: 14px 30px; border-radius: 999px;
  font-weight: 700; font-size: 1rem; border: 2px solid var(--cabernet);
  background: var(--cabernet); color: #fff; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
}
.btn:hover { background: var(--cabernet-deep); text-decoration: none; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,0,0,0.28); }
.btn.gold { background: #fff; border-color: #fff; color: #000; }
.btn.gold:hover { background: #e2e2e2; border-color: #e2e2e2; box-shadow: 0 8px 20px rgba(255,255,255,0.25); }
.btn.ghost { background: transparent; color: var(--cabernet); }
.btn.ghost:hover { background: var(--cabernet); color: #fff; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 1.6em; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 82px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand img.brand-logo { height: 66px; width: auto; }
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.68rem; color: var(--muted); letter-spacing: 0.06em; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--ink); font-weight: 600; font-size: 0.95rem; }
.nav a:hover { color: var(--cabernet); text-decoration: none; }
.nav .btn { padding: 10px 22px; font-size: 0.92rem; color: #fff; }
.nav .btn:hover { color: #fff; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--ink); }

/* Hero */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(0,0,0,0.88) 20%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.12)); }
.hero-inner { position: relative; z-index: 1; padding: 110px 0 90px; max-width: 640px; }
.hero .eyebrow { color: var(--gold-soft); }
.hero h1 { margin-bottom: 0.5em; }
.hero p.lede { color: rgba(255,255,255,0.88); }
.hero .btn.ghost { color: #fff; border-color: rgba(255,255,255,0.7); }
.hero .btn.ghost:hover { background: #fff; color: #000; }

/* Stat band */
.stats { background: var(--cabernet-deep); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 44px 0; text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: #fff; }
.stat-label { font-size: 0.92rem; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* Cards */
.grid { display: grid; gap: 24px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,0.10); }
.card img.card-img { width: 100%; height: 190px; object-fit: cover; }
.card-body { padding: 24px; }
.card-body h3 { margin-bottom: 0.35em; }
.card-body h3 a { color: var(--ink); }
.card-body h3 a:hover { color: var(--cabernet); }
.card-body p { color: var(--muted); font-size: 0.97rem; margin-bottom: 0.8em; }
.card-link { font-weight: 700; font-size: 0.95rem; }

/* Split (image + text) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img.rounded { border-radius: var(--radius); box-shadow: 0 20px 45px rgba(0,0,0,0.14); }
.checklist { list-style: none; margin: 1.2em 0; }
.checklist li { padding: 8px 0 8px 34px; position: relative; }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 8px; color: var(--gold); font-weight: 800; }

/* FAQ accordion */
.faq { border-top: 1px solid var(--line); margin-top: 1.5em; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 1.08rem; font-weight: 700; color: var(--ink);
  padding: 20px 40px 20px 0; position: relative;
}
.faq-q::after { content: "+"; position: absolute; right: 4px; top: 18px; font-size: 1.5rem; color: var(--gold); font-weight: 400; }
.faq-item.open .faq-q::after { content: "–"; }
.faq-a { display: none; padding: 0 0 22px; color: var(--muted); max-width: 800px; }
.faq-item.open .faq-a { display: block; }

/* Quote */
.quote-block { background: var(--cabernet); color: #fff; border-radius: var(--radius); padding: 48px; position: relative; }
.quote-block blockquote { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.45; margin-bottom: 0.8em; }
.quote-block cite { font-style: normal; color: var(--gold-soft); font-weight: 600; }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--cabernet) 0%, var(--cabernet-deep) 100%); color: #fff; border-radius: var(--radius); padding: 56px; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 620px; margin: 0 auto 1em; }
.cta-band .btn-row { justify-content: center; }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 0.92rem; }
.field input, .field select, .field textarea {
  font: inherit; padding: 13px 15px; border: 1px solid var(--line);
  border-radius: 10px; background: #fff; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.form-note { font-size: 0.88rem; color: var(--muted); margin-top: 1em; }

/* Footer */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.78); padding: 64px 0 32px; font-size: 0.95rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1em; }
.site-footer a { color: rgba(255,255,255,0.78); }
.site-footer a:hover { color: #fff; }
.footer-brand { font-family: var(--font-display); color: #fff; font-size: 1.4rem; margin-bottom: 0.5em; }
.footer-legal { border-top: 1px solid rgba(255,255,255,0.14); padding-top: 24px; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer-legal p { margin-bottom: 0.6em; }

/* Page hero (interior) */
.page-hero { background: var(--cabernet-deep); color: #fff; padding: 72px 0 56px; }
.page-hero h1 { margin-bottom: 0.35em; }
.page-hero p { color: rgba(255,255,255,0.82); max-width: 720px; font-size: 1.12rem; margin-bottom: 0; }
.breadcrumb { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-bottom: 1em; }
.breadcrumb a { color: var(--gold-soft); }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { text-align: center; padding: 36px 24px; }
.team-avatar {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--cabernet), var(--cabernet-deep));
  color: var(--gold-soft); font-family: var(--font-display); font-size: 1.9rem;
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.team-card h3 { margin-bottom: 0.15em; }
.team-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block; }
.team-role { color: var(--muted); font-size: 0.92rem; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; position: relative; }
.step-num {
  width: 46px; height: 46px; border-radius: 50%; background: var(--cabernet); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1em;
}

/* Utility */
.center { text-align: center; }
.mt-2 { margin-top: 2em; }
.small { font-size: 0.9rem; color: var(--muted); }
.divider { border: none; border-top: 1px solid var(--line); margin: 3em 0; }

/* Responsive */
@media (max-width: 900px) {
  .grid.cols-3, .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .grid.cols-2, .split, .steps { grid-template-columns: 1fr; }
  .split { gap: 32px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .nav { display: none; position: absolute; top: 72px; left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch; padding: 12px 24px 24px; border-bottom: 1px solid var(--line); gap: 0; }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; border-top: 1px solid var(--line); }
  .nav .btn { margin-top: 12px; }
  .nav-toggle { display: block; }
  .section { padding: 52px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .quote-block, .cta-band { padding: 36px 26px; }
}
@media (max-width: 560px) {
  .brand-cobrand { display: none; }
  .grid.cols-3, .grid.cols-4, .team-grid { grid-template-columns: 1fr; }
  .hero-inner { padding: 80px 0 64px; }
}
