/* ==========================================================================
   Fox Mowing & Gardening Victoria — Corporate Hub
   Design system + components. Obscura-style layout, Fox brand.
   Deploy note: paste this whole file into GHL Funnel → Settings → Custom CSS
   (once per funnel). Per-page <body> markup goes in each page's Custom HTML.
   ========================================================================== */

/* ----- Fonts -----
   Loaded via <link rel="preconnect"> + <link> in each page's <head> for speed
   (non-blocking). In GHL: add those two links to Funnel → Settings → Head code. */

/* ----- Tokens ----- */
:root {
  --fox-lime:       #C2D82E;
  --fox-lime-dark:  #aabf24;
  --fox-coral:      #D9534F;
  --ink:            #1D1D1D;
  --ink-soft:       #2a2a2a;
  --green-deep:     #16271b;  /* hero / dark band overlay */
  --green-deeper:   #0f1c13;
  --bg:             #F5F5F5;
  --white:          #ffffff;
  --slate:          #69727D;
  --line:           #e3e3e3;

  --font-body:    "Open Sans", system-ui, sans-serif;
  --font-head:    "Questrial", "Open Sans", sans-serif;

  --radius:       4px;
  --radius-card:  10px;
  --container:    1200px;
  --shadow-card:  0 14px 34px rgba(0,0,0,.08);
  --shadow-nav:   0 6px 22px rgba(0,0,0,.07);
  --ease:         .28s cubic-bezier(.4,0,.2,1);
}

/* ----- Reset ----- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 100px; } /* offset sticky header for anchor links */
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 400; line-height: 1.12; margin: 0 0 .4em; letter-spacing: -.01em; }
p { margin: 0 0 1.1em; }
ul { margin: 0; padding: 0; list-style: none; }

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

/* ----- Helpers ----- */
.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 13px;
  color: var(--fox-lime-dark);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--fox-lime); display: inline-block; }
.eyebrow.center { justify-content: center; }
.lime { color: var(--fox-lime); }
.text-center { text-align: center; }
.section { padding: 92px 0; }
.section.tight { padding: 64px 0; }
.section-head { max-width: 680px; margin: 0 auto 54px; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); }
.section-head h2 .uline { box-shadow: inset 0 -10px 0 var(--fox-lime); }
.section-head p { color: var(--slate); font-size: 17px; margin: 0; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-size: 14px; letter-spacing: .06em; text-transform: uppercase;
  padding: 15px 26px; border-radius: var(--radius);
  cursor: pointer; border: 2px solid transparent; transition: var(--ease);
  white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; }
.btn-primary { background: var(--fox-lime); color: var(--ink); border-color: var(--fox-lime); }
.btn-primary:hover { background: var(--fox-lime-dark); border-color: var(--fox-lime-dark); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.topbar {
  position: sticky; top: 0; z-index: 60;
  background: var(--white);
  transition: box-shadow var(--ease);
}
.topbar.scrolled { box-shadow: var(--shadow-nav); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 84px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 46px; width: auto; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-size: 15px; font-weight: 600; color: var(--ink);
  position: relative; padding: 6px 0; transition: color var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--fox-lime); transition: width var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--fox-lime-dark); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-phone { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 15px; }
.nav-phone svg { width: 20px; height: 20px; color: var(--fox-lime-dark); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 5px 0; transition: var(--ease); }
/* Mobile-only CTA injected into the menu (hidden on desktop) */
.nav-cta-mobile { display: none; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; color: var(--white); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 28%; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(15,28,19,.80) 0%, rgba(15,28,19,0) 34%),
    linear-gradient(100deg, var(--green-deeper) 0%, rgba(15,28,19,.9) 30%, rgba(15,28,19,.52) 58%, rgba(15,28,19,.24) 100%);
}
.hero-inner { position: relative; padding-top: 96px; padding-bottom: 52px; }
.hero-content { max-width: 560px; }
.hero h1 { font-size: clamp(44px, 6vw, 74px); line-height: 1.02; margin-bottom: .3em; }
.hero p { font-size: 18px; color: rgba(255,255,255,.85); max-width: 480px; margin-bottom: 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-note { color: rgba(255,255,255,.92); font-size: 14px; margin: 18px 0 0; text-shadow: 0 1px 8px rgba(0,0,0,.5); display: inline-flex; align-items: center; gap: 8px; }
.hero-note svg { width: 16px; height: 16px; color: var(--fox-lime); flex: 0 0 auto; }
.hero-features {
  position: relative; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 72px; padding: 28px 0 10px; border-top: 1px solid rgba(255,255,255,.16);
}
.hfeat { display: flex; gap: 14px; align-items: flex-start; }
.hfeat-icon {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; background: rgba(194,216,46,.16);
  border: 1px solid rgba(194,216,46,.45);
}
.hfeat-icon svg { width: 22px; height: 22px; color: var(--fox-lime); }
.hfeat-txt strong { display: block; font-family: var(--font-head); font-size: 16px; text-shadow: 0 1px 8px rgba(0,0,0,.55); }
.hfeat-txt span { font-size: 13.5px; color: rgba(255,255,255,.85); text-shadow: 0 1px 8px rgba(0,0,0,.55); }
.hero h1, .hero-content p { text-shadow: 0 2px 14px rgba(0,0,0,.3); }

/* ==========================================================================
   SERVICES CARDS
   ========================================================================== */
.bg-soft { background: var(--bg); }
.cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
}
.card {
  background: var(--white); border-radius: var(--radius-card);
  box-shadow: var(--shadow-card); overflow: hidden; transition: var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); }
.card-img { position: relative; height: 180px; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-badge {
  position: absolute; left: 24px; bottom: -22px;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--ink); display: grid; place-items: center;
  border: 3px solid var(--white);
}
.card-badge svg { width: 24px; height: 24px; color: var(--fox-lime); }
.card-body { padding: 36px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 21px; }
.card-body p { color: var(--slate); font-size: 15px; flex: 1; }
.card-link {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .08em;
  font-size: 13px; color: var(--fox-lime-dark); font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
}
.card-link svg { width: 14px; height: 14px; transition: var(--ease); }
.card-link:hover svg { transform: translateX(4px); }

/* ==========================================================================
   DARK TESTIMONIAL / CTA BAND
   ========================================================================== */
.band { position: relative; color: var(--white); overflow: hidden; }
.band-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.band-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, var(--green-deeper) 30%, rgba(15,28,19,.82)); }
.band-inner { position: relative; padding-top: 70px; padding-bottom: 70px; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.band-quote { max-width: 640px; display: flex; gap: 20px; }
.band-quote .mark { font-family: Georgia, serif; font-size: 70px; line-height: .8; color: var(--fox-lime); }
.band-quote p { font-size: 22px; font-family: var(--font-head); margin-bottom: 8px; }
.band-quote cite { font-style: normal; color: rgba(255,255,255,.7); font-size: 15px; }

/* ----- Trust strip ----- */
.trust { background: var(--green-deeper); color: var(--white); }
.trust-inner { display: flex; justify-content: center; gap: 64px; flex-wrap: wrap; padding: 22px 0; }
.trust-item { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 15px; }
.trust-item svg { width: 22px; height: 22px; color: var(--fox-lime); }

/* ==========================================================================
   PAGE HERO (interior pages)
   ========================================================================== */
.pagehero { position: relative; color: var(--white); }
.pagehero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.pagehero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, var(--green-deeper), rgba(15,28,19,.7)); }
.pagehero-inner { position: relative; padding-top: 84px; padding-bottom: 84px; }
.pagehero h1 { font-size: clamp(36px, 5vw, 56px); }
.crumbs { font-size: 14px; color: rgba(255,255,255,.7); }
.crumbs a:hover { color: var(--fox-lime); }
.crumbs .sep { margin: 0 8px; }

/* ==========================================================================
   SPLIT (image + text) — about, intro blocks
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius-card); box-shadow: var(--shadow-card); }
.split h2 { font-size: clamp(28px, 3.4vw, 40px); }
.split .lead { font-size: 18px; color: var(--ink-soft); }
.pillars { display: grid; gap: 22px; margin: 26px 0; }
.pillar { display: flex; gap: 16px; }
.pillar-ic { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 10px; background: rgba(194,216,46,.18); display: grid; place-items: center; }
.pillar-ic svg { width: 24px; height: 24px; color: var(--fox-lime-dark); }
.pillar h4 { font-size: 18px; margin-bottom: 2px; }
.pillar p { margin: 0; color: var(--slate); font-size: 15px; }

/* ----- Stats ----- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat { text-align: center; }
.stat .num { font-family: var(--font-head); font-size: clamp(38px, 5vw, 54px); color: var(--fox-lime-dark); line-height: 1; }
.stat .lbl { text-transform: uppercase; letter-spacing: .1em; font-size: 13px; color: var(--slate); margin-top: 8px; }
.stats.on-dark .num { color: var(--fox-lime); }
.stats.on-dark .lbl { color: rgba(255,255,255,.7); }

/* ==========================================================================
   SERVICES LIST (services page)
   ========================================================================== */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.svc {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card);
  padding: 32px 28px; transition: var(--ease);
}
.svc:hover { border-color: var(--fox-lime); box-shadow: var(--shadow-card); transform: translateY(-4px); }
.svc-ic { width: 54px; height: 54px; border-radius: 12px; background: var(--ink); display: grid; place-items: center; margin-bottom: 18px; }
.svc-ic svg { width: 26px; height: 26px; color: var(--fox-lime); }
.svc-img { height: 180px; border-radius: 8px; overflow: hidden; margin: -4px -4px 22px; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.svc:hover .svc-img img { transform: scale(1.05); }
.svc h3 { font-size: 20px; }
.svc p { color: var(--slate); font-size: 15px; margin: 0 0 14px; }
.svc ul { display: grid; gap: 8px; }
.svc li { font-size: 14.5px; padding-left: 24px; position: relative; color: var(--ink-soft); }
.svc li::before { content: ""; position: absolute; left: 0; top: 8px; width: 13px; height: 13px; border-radius: 3px; background: var(--fox-lime); }

/* ==========================================================================
   GALLERY (our work)
   ========================================================================== */
.gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.gitem { position: relative; border-radius: var(--radius-card); overflow: hidden; aspect-ratio: 4/3; }
.gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gitem:hover img { transform: scale(1.07); }
.gitem .gcap {
  position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 18px;
  background: linear-gradient(transparent 45%, rgba(15,28,19,.82));
  opacity: 0; transition: var(--ease); color: var(--white);
  font-family: var(--font-head); font-size: 17px;
}
.gitem:hover .gcap { opacity: 1; }

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.review {
  background: var(--white); border-radius: var(--radius-card); padding: 30px 28px;
  box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 14px;
}
.stars { display: flex; gap: 3px; color: var(--fox-lime); }
.stars svg { width: 18px; height: 18px; }
.review p { font-size: 16px; color: var(--ink-soft); flex: 1; margin: 0; }
.review .who { font-family: var(--font-head); font-size: 16px; }
.review .who span { display: block; font-family: var(--font-body); font-size: 13px; color: var(--slate); }

/* ==========================================================================
   FRANCHISE
   ========================================================================== */
.fr-hero-list { display: grid; gap: 12px; margin: 24px 0 32px; }
.fr-hero-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: rgba(255,255,255,.9); }
.fr-hero-list svg { width: 22px; height: 22px; color: var(--fox-lime); flex: 0 0 auto; margin-top: 2px; }
.fr-benefits { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.fr-ben { padding: 30px 26px; border-radius: var(--radius-card); background: var(--bg); border: 1px solid var(--line); }
.fr-ben-ic { width: 50px; height: 50px; border-radius: 12px; background: var(--fox-lime); display: grid; place-items: center; margin-bottom: 16px; }
.fr-ben-ic svg { width: 26px; height: 26px; color: var(--ink); }
.fr-ben h3 { font-size: 19px; }
.fr-ben p { color: var(--slate); font-size: 15px; margin: 0; }
.fr-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; counter-reset: step; }
.fr-step { position: relative; padding: 34px 26px 26px; background: var(--white); border-radius: var(--radius-card); box-shadow: var(--shadow-card); }
.fr-step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: -22px; left: 26px; width: 46px; height: 46px;
  background: var(--ink); color: var(--fox-lime); border-radius: 50%;
  display: grid; place-items: center; font-family: var(--font-head); font-size: 20px;
}
.fr-step h4 { font-size: 18px; margin-top: 6px; }
.fr-step p { color: var(--slate); font-size: 15px; margin: 0; }

/* ----- P&L / table ----- */
.fr-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card); }
.fr-table th, .fr-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: 15px; }
.fr-table th { background: var(--ink); color: var(--white); font-family: var(--font-head); font-weight: 400; }
.fr-table tr:last-child td { border-bottom: 0; }
.fr-table .hl { color: var(--fox-lime-dark); font-weight: 700; }

/* ==========================================================================
   FORMS
   ========================================================================== */
.formcard { background: var(--white); border-radius: var(--radius-card); box-shadow: var(--shadow-card); padding: 38px 34px; }
.formcard.on-dark { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); box-shadow: none; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 7px; }
.formcard.on-dark .field label { color: rgba(255,255,255,.85); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font-family: var(--font-body); font-size: 15px;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); color: var(--ink);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--fox-lime); box-shadow: 0 0 0 3px rgba(194,216,46,.25); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 13px; color: var(--slate); margin-top: 10px; }

/* GHL embed slot — drop the native GHL form iframe here in production */
.ghl-embed-slot { min-height: 60px; }

/* Prominent post-submit success state (replaces the form) */
.form-success { text-align: center; padding: 26px 12px; animation: fsIn .3s ease; }
.form-success .fs-ic { width: 66px; height: 66px; border-radius: 50%; background: var(--fox-lime); display: grid; place-items: center; margin: 0 auto 18px; box-shadow: 0 8px 22px rgba(194,216,46,.4); }
.form-success .fs-ic svg { width: 34px; height: 34px; color: var(--ink); }
.form-success h3 { font-size: 25px; margin-bottom: 10px; }
.form-success p { color: var(--slate); font-size: 16px; line-height: 1.6; margin: 0 auto; max-width: 380px; }
.formcard.on-dark .form-success h3 { color: #fff; }
.formcard.on-dark .form-success p { color: rgba(255,255,255,.85); }
@keyframes fsIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ==========================================================================
   CONTACT INFO
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.cinfo { display: grid; gap: 22px; margin-top: 26px; }
.cinfo-item { display: flex; gap: 16px; align-items: flex-start; }
.cinfo-ic { width: 48px; height: 48px; border-radius: 12px; background: rgba(194,216,46,.18); display: grid; place-items: center; flex: 0 0 auto; }
.cinfo-ic svg { width: 22px; height: 22px; color: var(--fox-lime-dark); }
.cinfo-item strong { font-family: var(--font-head); font-size: 16px; display: block; }
.cinfo-item span, .cinfo-item a { color: var(--slate); font-size: 15px; }

/* ==========================================================================
   BLOG
   ========================================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.post { background: var(--white); border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card); transition: var(--ease); }
.post:hover { transform: translateY(-5px); }
.post img { height: 190px; width: 100%; object-fit: cover; }
.post-body { padding: 24px; }
.post .tag { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--fox-lime-dark); font-weight: 700; }
.post h3 { font-size: 20px; margin: 8px 0; }
.post p { color: var(--slate); font-size: 15px; }

/* ==========================================================================
   SERVICE PAGES (intro checklist + FAQ accordion)
   ========================================================================== */
.checklist { display: grid; gap: 12px; margin: 22px 0; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--ink-soft); }
.checklist svg { width: 22px; height: 22px; color: var(--fox-lime-dark); flex: 0 0 auto; margin-top: 1px; }

.faq-list { max-width: 840px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; transition: var(--ease); }
.faq-item[open] { border-color: var(--fox-lime); box-shadow: var(--shadow-card); }
.faq-item summary {
  cursor: pointer; padding: 20px 24px; font-family: var(--font-head); font-size: 18px;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 26px; line-height: 1; color: var(--fox-lime-dark); transition: var(--ease); flex: 0 0 auto; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 24px 22px; color: var(--slate); font-size: 15.5px; }
.faq-item .faq-a p { margin: 0; }

/* Inline quote form heading on service intro */
.svc-form-head { font-size: 22px; margin-bottom: 4px; }
.svc-form-sub { color: var(--slate); font-size: 14.5px; margin-bottom: 22px; }

/* ==========================================================================
   SERVICE DEPTH: rating bar, pricing, areas-served
   ========================================================================== */
.ratingbar { background: var(--ink); color: #fff; }
.ratingbar-inner { display: flex; align-items: center; justify-content: center; gap: 10px 16px; flex-wrap: wrap; padding: 14px 0; }
.ratingbar .stars-row { display: inline-flex; gap: 2px; color: var(--fox-lime); }
.ratingbar .stars-row svg { width: 18px; height: 18px; }
.ratingbar .rb-score { font-family: var(--font-head); font-size: 18px; }
.ratingbar .rb-text { color: rgba(255,255,255,.82); font-size: 14px; }
.ratingbar .rb-text strong { color: #fff; }

.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.price-factor { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card); padding: 26px 24px; transition: var(--ease); }
.price-factor:hover { border-color: var(--fox-lime); box-shadow: var(--shadow-card); }
.price-factor .pf-ic { width: 40px; height: 40px; border-radius: 10px; background: rgba(194,216,46,.18); display: grid; place-items: center; margin-bottom: 14px; }
.price-factor .pf-ic svg { width: 20px; height: 20px; color: var(--fox-lime-dark); }
.price-factor h4 { font-size: 18px; margin-bottom: 6px; }
.price-factor p { color: var(--slate); font-size: 14.5px; margin: 0; }

.area-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 840px; margin: 0 auto; }
.area-chips li { background: var(--white); border: 1px solid var(--line); border-radius: 100px; padding: 8px 16px; font-size: 14px; color: var(--ink-soft); transition: var(--ease); }
.area-chips li:hover { border-color: var(--fox-lime); }
.area-chips a { color: inherit; }
.area-chips a:hover { color: var(--fox-lime-dark); }
.map-embed { position: relative; border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 16 / 7; max-width: 1000px; margin: 0 auto; }
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 760px) { .map-embed { aspect-ratio: 4 / 3; } }
.cal-embed { max-width: 900px; margin: 0 auto; }
.cal-embed iframe { width: 100%; min-height: 700px; border: 0; border-radius: var(--radius-card); display: block; }
.cal-placeholder { border: 2px dashed var(--line); border-radius: var(--radius-card); padding: 56px 24px; text-align: center; background: var(--white); }
.cal-placeholder p { color: var(--slate); font-size: 17px; margin-bottom: 18px; }

/* ==========================================================================
   BLOG POST (article prose)
   ========================================================================== */
.prose { max-width: 760px; margin: 0 auto; }
.prose > p, .prose > ul, .prose > h2, .prose > h3 { }
.prose h2 { font-size: 30px; margin: 1.5em 0 .5em; }
.prose h3 { font-size: 22px; margin: 1.3em 0 .4em; }
.prose p { font-size: 17px; line-height: 1.78; color: var(--ink-soft); }
.prose p.lead { font-size: 19.5px; color: var(--ink); }
.prose ul.bullets { margin: 0 0 1.3em; display: grid; gap: 9px; }
.prose ul.bullets li { position: relative; padding-left: 26px; font-size: 16.5px; line-height: 1.6; color: var(--ink-soft); }
.prose ul.bullets li::before { content: ""; position: absolute; left: 0; top: 9px; width: 13px; height: 13px; border-radius: 3px; background: var(--fox-lime); }
.prose a:not(.btn) { color: var(--fox-lime-dark); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(170,191,36,.45); text-underline-offset: 2px; }
.post-meta { display: flex; gap: 8px 18px; flex-wrap: wrap; align-items: center; font-size: 14px; color: rgba(255,255,255,.82); margin-top: 12px; }
.post-meta .cat { color: var(--fox-lime); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.cta-inline { background: var(--bg); border: 1px solid var(--line); border-left: 4px solid var(--fox-lime); border-radius: 10px; padding: 24px 28px; margin: 34px 0; }
.cta-inline h4 { font-size: 21px; margin-bottom: 6px; }
.cta-inline p { color: var(--slate); margin-bottom: 14px; font-size: 15.5px; }
.author-box { display: flex; gap: 16px; align-items: center; max-width: 760px; margin: 44px auto 0; padding-top: 28px; border-top: 1px solid var(--line); }
.author-box .ab-ic { width: 54px; height: 54px; border-radius: 50%; background: var(--ink); display: grid; place-items: center; flex: 0 0 auto; }
.author-box .ab-ic svg { width: 26px; height: 26px; color: var(--fox-lime); }
.author-box strong { font-family: var(--font-head); font-size: 16px; display: block; }
.author-box p { margin: 0; color: var(--slate); font-size: 14px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--green-deeper); color: rgba(255,255,255,.75); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer h4 { color: var(--white); font-size: 17px; margin-bottom: 20px; }
.footer img.flogo { height: 50px; margin-bottom: 18px; }
.footer p { font-size: 14.5px; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: 14.5px; transition: var(--ease); }
.footer-links a:hover { color: var(--fox-lime); padding-left: 4px; }
.footer .fcontact li { display: flex; gap: 10px; margin-bottom: 12px; font-size: 14.5px; align-items: flex-start; }
.footer .fcontact svg { width: 18px; height: 18px; color: var(--fox-lime); flex: 0 0 auto; margin-top: 3px; }
.footer-bottom { margin-top: 56px; border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; font-size: 13.5px; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .cards, .fr-benefits, .fr-steps, .svc-grid, .gallery, .reviews, .blog-grid, .price-grid { grid-template-columns: repeat(2,1fr); }
  .hero-features { grid-template-columns: repeat(2,1fr); gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split.reverse .split-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .nav-links {
    position: fixed; inset: 84px 0 auto 0; flex-direction: column; gap: 0;
    background: var(--white); box-shadow: var(--shadow-nav); padding: 10px 0;
    max-height: 0; overflow: hidden; transition: max-height var(--ease); align-items: stretch;
  }
  .nav-links.open { max-height: 90vh; }
  .nav-links a { padding: 15px 24px; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: block; }
  .nav-phone span { display: none; }
  /* Free up header space so the hamburger always fits on small phones */
  .nav-actions .btn { display: none; }
  .nav-actions { gap: 12px; }
  /* Full-width quote button inside the opened mobile menu */
  .nav-cta-mobile {
    display: block; margin: 12px 24px 14px; text-align: center;
    background: var(--fox-lime); color: var(--ink) !important;
    font-family: var(--font-head); text-transform: uppercase; letter-spacing: .06em;
    font-size: 14px; padding: 15px 20px !important; border-radius: var(--radius);
    border-bottom: 0 !important;
  }
  .nav-cta-mobile::after { display: none; }
  .cards, .fr-benefits, .fr-steps, .svc-grid, .gallery, .reviews, .blog-grid, .price-grid, .stats, .form-row { grid-template-columns: 1fr; }
  .stats { gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .band-inner { flex-direction: column; align-items: flex-start; }
  .hero-features { grid-template-columns: 1fr 1fr; margin-top: 54px; }
  .trust .container { padding: 0 14px; }
  .trust-inner { gap: 8px; flex-wrap: nowrap; padding: 13px 0; justify-content: space-between; }
  .trust-item { font-size: 10.5px; gap: 5px; white-space: nowrap; }
  .trust-item svg { display: none; } /* drop icons on mobile so all three labels fit one line */
}

/* ==========================================================================
   FRANCHISE SITE — additions (Fox brand, elevated)
   ========================================================================== */
.pill { display:inline-flex; align-items:center; gap:8px; background:rgba(194,216,46,.16); border:1px solid rgba(194,216,46,.5); color:var(--fox-lime); font-family:var(--font-head); font-size:12.5px; letter-spacing:.12em; text-transform:uppercase; padding:7px 14px; border-radius:100px; }
.pill.dark { background:var(--fox-lime); color:var(--ink); border-color:var(--fox-lime); }

/* journey / steps snapshot */
.steps { display:grid; grid-template-columns:repeat(auto-fit,minmax(190px,1fr)); gap:26px; margin-top:8px; }
.step { text-align:center; padding:0 8px; position:relative; }
.step .step-num { width:54px; height:54px; border-radius:50%; background:var(--fox-lime); color:var(--ink); font-family:var(--font-head); font-size:22px; display:grid; place-items:center; margin:0 auto 16px; }
.step h4 { font-size:17px; margin-bottom:6px; }
.step p { font-size:14px; color:var(--slate); margin:0; }

/* responsive video */
.video-embed { position:relative; aspect-ratio:16/9; border-radius:var(--radius-card); overflow:hidden; box-shadow:var(--shadow-card); background:#000; }
.video-embed iframe { position:absolute; inset:0; width:100%; height:100%; border:0; }
.video-ph { position:absolute; inset:0; display:grid; place-items:center; background:linear-gradient(135deg,#16271b,#0f1c13); color:rgba(255,255,255,.5); font-size:14px; text-align:center; padding:20px; }

/* trust checklist (no smoke & mirrors) */
.checklist-trust { display:grid; grid-template-columns:repeat(2,1fr); gap:16px 30px; max-width:780px; margin:0 auto; }
.checklist-trust li { display:flex; gap:13px; align-items:flex-start; font-weight:600; font-size:15.5px; }
.checklist-trust li svg { width:22px; height:22px; color:var(--fox-lime-dark); flex:0 0 auto; margin-top:3px; }
@media (max-width:600px){ .checklist-trust { grid-template-columns:1fr; } }

/* story card */
.story-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:22px; }
.story { background:var(--white); border:1px solid var(--line); border-radius:var(--radius-card); padding:24px 24px 22px; box-shadow:var(--shadow-card); }
.story .who { font-family:var(--font-head); font-size:19px; color:var(--ink); margin-bottom:2px; }
.story .was { font-size:13px; color:var(--slate); margin-bottom:14px; }
.story .stat { font-size:15px; font-weight:700; color:var(--fox-lime-dark); border-top:1px solid var(--line); padding-top:14px; }

/* dark CTA band helper already exists as .band; add aspirational big CTA */
.bigcta { text-align:center; max-width:680px; margin:0 auto; }
.bigcta h2 { font-size:clamp(30px,4.4vw,46px); color:#fff; }
.bigcta p { color:rgba(255,255,255,.85); font-size:18px; margin-bottom:28px; }

/* dark-band checklist (offer snapshot etc.) — explicit svg sizing to avoid balloon */
.dark-checks { display:grid; gap:12px; margin:22px 0; list-style:none; padding:0; }
.dark-checks li { display:flex; gap:12px; align-items:flex-start; color:rgba(255,255,255,.9); font-size:16px; }
.dark-checks li svg { width:20px; height:20px; color:var(--fox-lime); flex:0 0 auto; margin-top:3px; }
.dark-checks strong { color:#fff; }

/* tables (investment, comparison) */
.table-wrap { overflow-x:auto; -webkit-overflow-scrolling:touch; margin:0 0 8px; }
.ftable { width:100%; border-collapse:separate; border-spacing:0; border:1px solid var(--line); border-radius:var(--radius-card); overflow:hidden; font-size:15px; min-width:520px; }
.ftable th { background:var(--ink); color:#fff; text-align:left; padding:14px 18px; font-family:var(--font-head); font-weight:400; font-size:14px; }
.ftable td { padding:13px 18px; border-top:1px solid var(--line); }
.ftable tr:nth-child(even) td { background:var(--bg); }
.ftable td.r, .ftable th.r { text-align:right; }
.ftable td.hl { color:var(--fox-lime-dark); font-weight:700; }
.ftable tr.total td { font-weight:700; font-size:16px; background:rgba(194,216,46,.14); border-top:2px solid var(--fox-lime); }
.ftable td.tick svg { width:18px; height:18px; color:var(--fox-lime-dark); vertical-align:middle; }
.ftable td.cross { color:#c44; }

/* comparison cards (fox vs independent vs big franchisor) */
.cmp-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.cmp { border:1px solid var(--line); border-radius:var(--radius-card); padding:24px 22px; background:var(--white); }
.cmp.win { border:2px solid var(--fox-lime); box-shadow:var(--shadow-card); }
.cmp h3 { font-size:18px; margin-bottom:14px; }
.cmp ul { display:grid; gap:9px; }
.cmp li { display:flex; gap:10px; align-items:flex-start; font-size:14.5px; color:var(--slate); }
.cmp li svg { width:17px; height:17px; flex:0 0 auto; margin-top:3px; }
.cmp.win li { color:var(--ink-soft); }
.cmp li.no svg { color:#c44; }
.cmp li.yes svg { color:var(--fox-lime-dark); }
@media (max-width:760px){ .cmp-grid { grid-template-columns:1fr; } }

/* prose helpers for content pages */
.lead-lg { font-size:19px; color:var(--ink-soft); max-width:760px; }
.note-box { background:var(--bg); border-left:4px solid var(--fox-lime); border-radius:0 10px 10px 0; padding:18px 22px; margin:22px 0; font-size:15.5px; }

/* stories video grid */
.vid-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:28px; }
@media (max-width:760px){ .vid-grid { grid-template-columns:1fr; } }
.vid-card .video-embed { margin-bottom:14px; }
.vid-card h3 { font-size:18px; margin-bottom:4px; }
.vid-card p { font-size:14.5px; color:var(--slate); margin:0; }

/* real-numbers charts */
.chart-box { background:var(--bg); border:1px solid var(--line); border-radius:var(--radius-card); padding:28px 24px 16px; margin:22px 0; }
.chart-box .chart-title { font-family:var(--font-head); font-size:15px; text-align:center; margin-bottom:16px; color:var(--ink); }
.chart-box svg { display:block; margin:0 auto; width:100%; height:auto; }
.disclaimer { font-size:12px; color:var(--slate); line-height:1.6; background:var(--bg); border-radius:var(--radius-card); padding:18px 22px; margin-top:28px; }

/* quiz */
.quiz { max-width:720px; margin:0 auto; }
.quiz-q { margin-bottom:26px; }
.quiz-q h3 { font-size:18px; margin-bottom:12px; }
.quiz-opts { display:grid; gap:10px; }
.quiz-opt { display:flex; align-items:center; gap:12px; border:1.5px solid var(--line); border-radius:10px; padding:13px 16px; cursor:pointer; transition:var(--ease); font-size:15px; }
.quiz-opt:hover { border-color:var(--fox-lime); }
.quiz-opt input { accent-color:var(--fox-lime-dark); width:17px; height:17px; flex:0 0 auto; }
.quiz-opt.sel { border-color:var(--fox-lime); background:rgba(194,216,46,.10); font-weight:600; }
.quiz-result { display:none; text-align:center; padding:34px 28px; background:var(--bg); border-radius:var(--radius-card); margin-top:14px; }
.quiz-result.show { display:block; animation:fsIn .3s ease; }
.quiz-result h3 { font-size:25px; margin-bottom:10px; }

/* mobile hero overflow fix */
.hfeat, .stat { min-width: 0; }
@media (max-width: 600px) {
  .hero-features { grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 38px; }
  .hero-content, .hero p, .hero-note { max-width: 100%; }
  .hfeat-txt strong, .hfeat-txt span { overflow-wrap: anywhere; }
}
