/*
Theme Name: Vibrant Assurance CPA
Theme URI: https://centauricpa.com/
Author: Centauri CPA
Description: Lightweight, vibrant CPA firm theme for Audit & Assurance.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vibrant-assurance-cpa
*/

:root{
  /* KPMG-inspired blues */
  --va-primary:#00338D;
  --va-secondary:#005EB8;
  --va-highlight:#0091DA;
  --va-teal:#00A3A1;
  --va-purple:#483698;

  /* neutrals */
  --va-ink:#0C233C;
  --va-text:#1a2433;
  --va-muted:#5a6b82;

  --va-bg:#F5FAFF;
  --va-surface:#ffffff;
  --va-border:rgba(12,35,60,.12);

  --va-radius:18px;
  --va-shadow:0 14px 30px rgba(12,35,60,.10);

  --va-max:1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--va-text);
  background:linear-gradient(180deg, var(--va-bg), #ffffff 45%, #ffffff);
  line-height:1.6;
}
a{ color:var(--va-secondary); text-decoration:none; }
a:hover{ color:var(--va-primary); text-decoration:underline; }

img{ max-width:100%; height:auto; }
.container{ width:min(var(--va-max), calc(100% - 40px)); margin-inline:auto; }

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px; width:auto; height:auto; padding:10px 12px;
  background:var(--va-surface); border:1px solid var(--va-border);
  border-radius:12px; z-index:9999;
}

/* Header */
.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(180%) blur(10px);
  background:rgba(245,250,255,.82);
  border-bottom:1px solid var(--va-border);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  min-width:220px;
}
.brand-mark{
  width:42px; height:42px; border-radius:14px;
  background:conic-gradient(from 200deg, var(--va-primary), var(--va-secondary), var(--va-highlight), var(--va-teal));
  box-shadow:0 10px 20px rgba(0,51,141,.20);
}
.site-title{
  margin:0; font-size:1.05rem; line-height:1.2;
  font-weight:800; letter-spacing:.2px;
  color:var(--va-ink);
}
.site-tagline{ margin:0; font-size:.86rem; color:var(--va-muted); }

/* Nav */
.nav-toggle{
  display:none;
  border:1px solid var(--va-border);
  background:var(--va-surface);
  border-radius:14px;
  padding:10px 12px;
  font-weight:700;
}
.primary-nav ul{
  display:flex; list-style:none; margin:0; padding:0;
  gap:8px; align-items:center; flex-wrap:wrap;
}
.primary-nav a{
  display:inline-flex; align-items:center;
  padding:10px 12px;
  border-radius:14px;
  color:var(--va-ink);
  font-weight:700;
}
.primary-nav a:hover{
  background:rgba(0,94,184,.08);
  text-decoration:none;
}
.primary-nav .menu-item.contact a,
.primary-nav .menu-item.cta a{
  background:linear-gradient(90deg, var(--va-primary), var(--va-secondary));
  color:#fff;
  box-shadow:0 12px 24px rgba(0,51,141,.20);
}
.primary-nav .menu-item.contact a:hover,
.primary-nav .menu-item.cta a:hover{ filter:brightness(1.05); }

/* Hero */
.hero{ padding:58px 0 26px; }
.hero-card{
  border:1px solid var(--va-border);
  background:
    radial-gradient(900px 300px at 10% 0%, rgba(0,145,218,.18), transparent 60%),
    radial-gradient(900px 300px at 90% 20%, rgba(0,163,161,.16), transparent 60%),
    var(--va-surface);
  border-radius:calc(var(--va-radius) + 8px);
  box-shadow:var(--va-shadow);
  padding:42px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:24px;
  align-items:center;
}
.hero h1{
  margin:0 0 12px;
  font-size: clamp(1.9rem, 2.6vw, 3.1rem);
  line-height:1.1;
  color:var(--va-ink);
  letter-spacing:-.6px;
}
.hero p{ margin:0 0 18px; color:var(--va-muted); font-size:1.05rem; }
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:18px; }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:16px;
  border:1px solid var(--va-border);
  background:var(--va-surface);
  font-weight:800;
  text-decoration:none !important;
}
.btn-primary{
  border:none;
  color:#fff;
  background:linear-gradient(90deg, var(--va-primary), var(--va-secondary));
}
.btn-primary:hover{ filter:brightness(1.06); }
.btn-outline:hover{ background:rgba(0,94,184,.08); }

/* Cards */
.section{ padding:34px 0; }
.section h2{ margin:0 0 10px; font-size:1.55rem; color:var(--va-ink); }
.section .lead{ margin:0 0 18px; color:var(--va-muted); max-width:70ch; }

.grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:18px; }
.card{
  border:1px solid var(--va-border);
  background:var(--va-surface);
  border-radius:var(--va-radius);
  padding:18px;
  box-shadow:0 10px 20px rgba(12,35,60,.06);
}
.card h3{ margin:2px 0 6px; color:var(--va-ink); }
.card p{ margin:0; color:var(--va-muted); }
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px;
  border-radius:999px;
  font-weight:800;
  border:1px solid var(--va-border);
  background:rgba(0,145,218,.08);
  color:var(--va-ink);
}

.split{ display:grid; grid-template-columns: 1fr 1fr; gap:18px; }
.list-check{ padding-left:0; list-style:none; margin:0; }
.list-check li{
  margin:10px 0; padding-left:28px; position:relative; color:var(--va-muted);
}
.list-check li:before{
  content:"✓"; position:absolute; left:0; top:0;
  width:20px; height:20px; display:inline-flex; align-items:center; justify-content:center;
  border-radius:8px; background:rgba(0,163,161,.12); color:var(--va-teal); font-weight:900;
}

/* Content */
.entry{ padding:34px 0 52px; }
.entry .content{
  border:1px solid var(--va-border);
  background:var(--va-surface);
  border-radius:calc(var(--va-radius) + 6px);
  box-shadow:var(--va-shadow);
  padding:28px;
}
.entry h1{ margin-top:0; color:var(--va-ink); }
.entry h2, .entry h3{ color:var(--va-ink); }
.entry p{ color:var(--va-muted); }

/* Form */
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
label{ display:block; font-weight:800; margin:12px 0 6px; color:var(--va-ink); }
input, textarea{
  width:100%; padding:12px 12px; border-radius:14px;
  border:1px solid var(--va-border); background:#fff; font:inherit;
}
textarea{ min-height:140px; resize:vertical; }
.notice{
  padding:12px 14px; border-radius:16px;
  border:1px solid var(--va-border);
  background:rgba(0,145,218,.08);
  color:var(--va-ink); font-weight:700;
}

/* Footer */
.site-footer{
  padding:28px 0;
  border-top:1px solid var(--va-border);
  background:linear-gradient(180deg, #fff, rgba(245,250,255,.7));
}
.footer-inner{ display:flex; align-items:flex-start; justify-content:space-between; gap:18px; flex-wrap:wrap; }
.small{ color:var(--va-muted); font-size:.92rem; }

@media (max-width: 900px){
  .hero-card{ grid-template-columns:1fr; padding:28px; }
  .grid{ grid-template-columns:1fr; }
  .split{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; }
  .nav-toggle{ display:inline-flex; }
  .primary-nav{ display:none; width:100%; }
  .primary-nav.open{ display:block; }
  .primary-nav ul{ flex-direction:column; align-items:stretch; padding:10px 0; }
  .primary-nav a{ justify-content:space-between; }
}
