/*
Theme Name: Redstone Financial
Theme URI: https://redstone.kelvindale.cloud
Author: Kelvindale
Description: Premium bookkeeping & advisory theme for Redstone Financial. Dark navy, metallic crimson, and silver.
Version: 1.1
*/

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --navy-900: #10151f;
  --navy-800: #151c28;
  --navy-700: #1c2534;
  --navy-600: #232e41;
  --line: rgba(197, 202, 213, 0.14);

  --crimson: #b21e34;
  --crimson-bright: #cf2740;
  --crimson-deep: #8a1626;
  --silver: #c7ccd6;
  --silver-bright: #e6e9ef;

  --fg: #f3f5f9;
  --fg-muted: #a3abba;

  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;

  --maxw: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--fg);
  background: var(--navy-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

/* ---------- metallic red text (matches logo) ---------- */
.metal-red {
  background: linear-gradient(180deg, #e0576a 0%, var(--crimson) 45%, var(--crimson-deep) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.metal-silver {
  background: linear-gradient(180deg, #ffffff 0%, var(--silver) 55%, #8f96a3 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.98rem;
  padding: 0.9rem 1.6rem; border-radius: 8px; cursor: pointer;
  border: 1px solid transparent; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary {
  background: linear-gradient(180deg, var(--crimson-bright), var(--crimson-deep));
  color: #fff; box-shadow: 0 10px 30px rgba(178, 30, 52, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(178, 30, 52, 0.45); }
.btn-ghost {
  background: rgba(255,255,255,0.04); border-color: rgba(199,204,214,0.28); color: var(--fg);
}
.btn-ghost:hover { background: rgba(255,255,255,0.09); transform: translateY(-2px); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(16, 21, 31, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand-mark { display: flex; flex-direction: column; line-height: 1; }
.brand-mark .brand-name { font-family: var(--sans); font-weight: 800; font-size: 1.35rem; letter-spacing: 0.02em; }
.brand-mark .brand-sub { font-size: 0.6rem; letter-spacing: 0.32em; color: var(--fg-muted); margin-top: 4px; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a.nav-link { font-weight: 500; font-size: 0.95rem; color: var(--fg-muted); transition: color .15s; }
.nav a.nav-link:hover { color: var(--fg); }
.nav-toggle { display: none; background: none; border: none; color: var(--fg); font-size: 1.5rem; cursor: pointer; }

/* ---------- hero ---------- */
.hero {
  position: relative; padding: 7rem 0 5rem;
  background:
    radial-gradient(1000px 500px at 78% -5%, rgba(178,30,52,0.22), transparent 60%),
    radial-gradient(700px 500px at 0% 20%, rgba(60,80,120,0.28), transparent 55%),
    linear-gradient(180deg, var(--navy-800), var(--navy-900));
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3.5rem; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--crimson-bright); margin-bottom: 1.3rem;
}
.eyebrow::before { content:""; width: 26px; height: 2px; background: var(--crimson); display:inline-block; }
.hero h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(2.4rem, 4.6vw, 3.9rem); line-height: 1.08; letter-spacing: -0.01em; }
.hero p.lede { font-size: 1.18rem; color: var(--fg-muted); margin: 1.5rem 0 2.2rem; max-width: 34rem; }
.hero .cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2.2rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.hero-stats .stat .num { font-family: var(--serif); font-size: 2rem; font-weight: 700; }
.hero-stats .stat .lbl { font-size: 0.82rem; color: var(--fg-muted); }

/* hero with cinematic video background */
.hero-video { padding: 0; min-height: 88vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(16,21,31,0.92) 0%, rgba(16,21,31,0.72) 42%, rgba(16,21,31,0.30) 100%),
    linear-gradient(180deg, rgba(16,21,31,0.35), rgba(16,21,31,0.75));
}
.hero-inner { position: relative; z-index: 2; max-width: 42rem; padding-top: 3rem; padding-bottom: 3rem; }

/* hero mock card (a books/dashboard visual) */
.hero-card {
  background: linear-gradient(160deg, var(--navy-700), var(--navy-600));
  border: 1px solid var(--line); border-radius: 18px; padding: 1.4rem;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5); transform: rotate(1.2deg);
}
.hero-card .hc-top { display:flex; justify-content: space-between; align-items:center; margin-bottom: 1.1rem; }
.hero-card .hc-title { font-weight: 700; font-size: 0.95rem; }
.hero-card .hc-tag { font-size: 0.7rem; color: #34d399; background: rgba(52,211,153,0.14); padding: 3px 9px; border-radius: 99px; }
.hero-card .hc-big { font-family: var(--serif); font-size: 2.3rem; font-weight: 700; }
.hero-card .hc-sub { font-size: 0.8rem; color: var(--fg-muted); margin-bottom: 1.1rem; }
.hero-card .bars { display:flex; align-items:flex-end; gap: 8px; height: 90px; }
.hero-card .bars span { flex:1; border-radius: 5px 5px 0 0; background: linear-gradient(180deg, var(--crimson-bright), var(--crimson-deep)); opacity: .85; }
.hero-card .rows { margin-top: 1.1rem; }
.hero-card .row { display:flex; justify-content: space-between; padding: 0.55rem 0; border-top: 1px solid var(--line); font-size: 0.82rem; }
.hero-card .row .ok { color: #34d399; }

/* ---------- trust strip ---------- */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--navy-900); }
.trust .wrap { display:flex; align-items:center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 1.4rem; padding-bottom: 1.4rem; }
.trust .item { font-size: 0.9rem; color: var(--fg-muted); display:flex; align-items:center; gap: 0.5rem; }
.trust .item strong { color: var(--fg); }

/* ---------- section shell ---------- */
.section { padding: 6rem 0; }
.section.alt { background: var(--navy-900); }
.section-head { max-width: 42rem; margin: 0 auto 3.2rem; text-align: center; }
.section-head h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(2rem, 3.6vw, 2.8rem); line-height: 1.12; }
.section-head p { color: var(--fg-muted); font-size: 1.1rem; margin-top: 1rem; }

/* ---------- services ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.4rem; }
.card {
  background: linear-gradient(160deg, var(--navy-700), var(--navy-800));
  border: 1px solid var(--line); border-radius: 16px; padding: 2rem 1.8rem;
  transition: transform .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-5px); border-color: rgba(178,30,52,0.5); }
.card .ic {
  width: 52px; height: 52px; border-radius: 12px; display:grid; place-items:center; font-size: 1.4rem; margin-bottom: 1.3rem;
  background: linear-gradient(160deg, rgba(178,30,52,0.22), rgba(178,30,52,0.06)); color: #f0637a;
  border: 1px solid rgba(178,30,52,0.32);
}
.card h3 { font-family: var(--serif); font-weight: 600; font-size: 1.3rem; margin-bottom: 0.6rem; }
.card p { color: var(--fg-muted); font-size: 0.96rem; }

/* ---------- benefits (why) ---------- */
.why-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 2.5rem; }
.why-item { display:flex; gap: 1rem; }
.why-item .chk { flex:0 0 auto; width: 34px; height: 34px; border-radius: 9px; background: rgba(178,30,52,0.16); color:#f0637a; display:grid; place-items:center; font-weight: 800; }
.why-item h4 { font-size: 1.1rem; margin-bottom: 0.35rem; }
.why-item p { color: var(--fg-muted); font-size: 0.95rem; }

/* ---------- reviews / google ---------- */
.google-badge {
  display:inline-flex; align-items:center; gap:0.6rem; margin: 0 auto 1.4rem;
  background: var(--navy-700); border:1px solid var(--line); border-radius: 99px; padding: 0.5rem 1.1rem;
}
.google-badge .g-logo {
  font-family: var(--sans); font-weight: 800; font-size: 1.05rem; width: 26px; height: 26px; border-radius: 50%;
  display:grid; place-items:center; background:#fff; color:#4285F4;
}
.google-badge .g-stars { color:#f5b400; letter-spacing: 1px; }
.google-badge .g-text { font-size: 0.9rem; color: var(--fg-muted); }
.google-badge .g-text strong { color: var(--fg); }
.reviews-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.4rem; }
.review {
  background: linear-gradient(160deg, var(--navy-700), var(--navy-800));
  border:1px solid var(--line); border-radius: 16px; padding: 1.8rem;
  display:flex; flex-direction: column; gap: 1rem;
}
.review .stars { color:#f5b400; letter-spacing: 2px; font-size: 1.05rem; }
.review p { color: var(--fg); font-size: 0.98rem; line-height: 1.6; flex: 1; }
.review .reviewer { display:flex; align-items:center; gap: 0.8rem; }
.review .avatar { width: 42px; height: 42px; border-radius: 50%; display:grid; place-items:center; font-weight: 700; font-size: 0.9rem; color:#fff; background: var(--c, var(--crimson)); }
.review .reviewer strong { display:block; font-size: 0.95rem; }
.review .reviewer span { font-size: 0.82rem; color: var(--fg-muted); }

/* ---------- process ---------- */
.steps { display:grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.6rem; counter-reset: step; }
.step { position: relative; padding: 2rem 1.6rem; background: var(--navy-700); border:1px solid var(--line); border-radius: 16px; }
.step .n { font-family: var(--serif); font-weight: 700; font-size: 2.6rem; line-height:1; margin-bottom: 0.8rem; }
.step h4 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.step p { color: var(--fg-muted); font-size: 0.95rem; }

/* ---------- pricing callout ---------- */
.pricing { display:flex; gap: 2rem; align-items: center; justify-content: space-between; flex-wrap: wrap;
  background: linear-gradient(160deg, var(--navy-700), var(--navy-600)); border:1px solid var(--line); border-radius: 20px; padding: 3rem; }
.pricing .price { font-family: var(--serif); font-size: 3.2rem; font-weight: 700; }
.pricing .price small { font-family: var(--sans); font-size: 1rem; font-weight: 500; color: var(--fg-muted); }
.pricing ul { list-style:none; display:flex; flex-direction: column; gap: 0.5rem; margin-top: 0.6rem; }
.pricing ul li { color: var(--fg-muted); font-size: 0.95rem; display:flex; gap: 0.5rem; }
.pricing ul li::before { content:"✓"; color:#f0637a; font-weight: 800; }

/* ---------- CTA band ---------- */
.cta-band { text-align:center; padding: 5.5rem 0;
  background: radial-gradient(900px 400px at 50% 0%, rgba(178,30,52,0.28), transparent 60%), var(--navy-900); }
.cta-band h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(2rem, 3.8vw, 3rem); }
.cta-band p { color: var(--fg-muted); font-size: 1.15rem; margin: 1rem auto 2.2rem; max-width: 34rem; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-900); border-top: 1px solid var(--line); padding: 3.5rem 0 2rem; }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.footer-grid p { color: var(--fg-muted); font-size: 0.92rem; margin-top: 0.8rem; max-width: 20rem; }
.footer-grid h5 { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 0.9rem; }
.footer-grid a { display:block; color: var(--fg); font-size: 0.95rem; padding: 0.25rem 0; }
.footer-grid a:hover { color: #f0637a; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 2.5rem; padding-top: 1.5rem; color: var(--fg-muted); font-size: 0.85rem; display:flex; justify-content:space-between; flex-wrap: wrap; gap: 0.5rem; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { transform: none; margin-top: 1rem; }
  .nav .nav-link { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .pricing { flex-direction: column; align-items: flex-start; }
}
