/* ============================================================
   BLUEPEAK LEDGER — styles.css
   "Evergreen & Ivory" — deep forest green + warm cream,
   restrained brass-gold accent. Luxury-minimal finance, light theme.
   ============================================================ */

:root {
  /* Surfaces (light, warm) */
  --bg: #F4EFE4;          /* warm cream page background */
  --bg-alt: #FBF8F1;      /* slightly lighter warm white (alt sections) */
  --card: #FFFFFF;        /* white cards */
  --line: #E7DECC;        /* warm border / divider */

  /* Greens (brand / dark) */
  --green-900: #122A20;   /* deepest — footer */
  --green-800: #1B3A2C;   /* hero + dark sections */
  --green-700: #245138;   /* primary buttons */
  --green-600: #2E6347;   /* hover / eyebrow / links */

  /* Gold (decorative accent — used sparingly) */
  --gold: #C2A05C;
  --gold-bright: #DCBC7B; /* hero highlight on dark */

  /* Text */
  --ink: #16291F;         /* primary text on light */
  --muted: #55635A;       /* muted text on light */

  /* Text on dark green */
  --cream: #F2ECDE;
  --cream-muted: #AFC0B2;
  --line-dark: rgba(242, 236, 222, 0.16);

  /* Type */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1180px;
  --radius: 16px;
  --radius-lg: 22px;
  --nav-h: 76px;
  --section-pad-y: clamp(40px, 5vw, 64px); /* shared so anchor offset can track it */

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 240ms;

  /* Shadows (warm, soft) */
  --shadow-sm: 0 10px 28px -20px rgba(20, 40, 28, 0.45);
  --shadow-md: 0 22px 50px -30px rgba(20, 40, 28, 0.40);
  --shadow-lg: 0 34px 70px -34px rgba(20, 40, 28, 0.45);

  /* z-index scale */
  --z-overlay: 20;
  --z-nav: 50;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; font-family: var(--font-display); font-weight: 700; line-height: 1.12; letter-spacing: -0.01em; }
p { margin: 0; }
svg { display: block; }

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

/* ---------- Accessibility helpers ---------- */
.skip-link {
  position: absolute; left: 16px; top: -60px;
  background: var(--green-700); color: var(--cream); padding: 10px 16px;
  border-radius: 8px; font-weight: 600; z-index: 100;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: 16px; }

:focus-visible { outline: 2px solid var(--green-600); outline-offset: 3px; border-radius: 4px; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.98rem;
  padding: 13px 24px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid transparent; white-space: nowrap;
  transition: background-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.btn--lg { padding: 16px 30px; font-size: 1.02rem; }
.btn--block { display: flex; width: 100%; }

/* Circular arrow (reference-inspired) appended to filled buttons */
.btn--primary:not(.btn--noarrow)::after,
.btn--invert:not(.btn--noarrow)::after {
  content: ""; width: 22px; height: 22px; border-radius: 50%;
  background-position: center; background-repeat: no-repeat; background-size: 12px;
  transition: transform var(--dur) var(--ease);
}
.btn--primary:not(.btn--noarrow):hover::after,
.btn--invert:not(.btn--noarrow):hover::after { transform: translate(2px, -2px); }

/* Primary = deep green (on light backgrounds) */
.btn--primary { background: var(--green-700); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--green-600); box-shadow: var(--shadow-md); }
.btn--primary:not(.btn--noarrow)::after {
  background-color: rgba(242, 236, 222, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 17 17 7M9 7h8v8' stroke='%23F2ECDE' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Invert = cream fill (on dark green backgrounds) */
.btn--invert { background: var(--cream); color: var(--green-800); box-shadow: var(--shadow-sm); }
.btn--invert:hover { background: #FFFFFF; }
.btn--invert:not(.btn--noarrow)::after {
  background-color: rgba(27, 58, 44, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 17 17 7M9 7h8v8' stroke='%231B3A2C' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Outline (on light) = green */
.btn--outline { background: transparent; color: var(--green-700); border-color: rgba(36, 81, 56, 0.4); }
.btn--outline:hover { border-color: var(--green-700); background: rgba(36, 81, 56, 0.06); }

/* Outline light (on dark hero) = cream */
.btn--outline-light { background: transparent; color: var(--cream); border-color: rgba(242, 236, 222, 0.5); }
.btn--outline-light:hover { border-color: var(--cream); background: rgba(242, 236, 222, 0.1); }

/* ============================================================
   SECTION 1 — NAVIGATION
============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-nav);
  height: var(--nav-h);
  background: transparent; border-bottom: 1px solid transparent;
  transition: background-color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              backdrop-filter var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.nav.is-solid {
  background: rgba(251, 248, 241, 0.9);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 30px -24px rgba(20, 40, 28, 0.5);
}
.nav__inner {
  height: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark { width: 40px; height: 40px; flex: none; display: inline-flex; align-items: center; justify-content: center; }
.brand__mark-img { width: 100%; height: 100%; object-fit: contain; display: block; }
/* Default (over dark hero + dark footer): show the cream/inverse mark */
.brand__mark-img--dark { display: none; }
/* Solid nav (light cream bg): switch to the color mark */
.nav.is-solid .brand__mark-img--light { display: none; }
.nav.is-solid .brand__mark-img--dark { display: block; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.32rem; letter-spacing: 0.01em; color: var(--cream); transition: color var(--dur) var(--ease); }
.nav.is-solid .brand__name { color: var(--ink); }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-size: 0.96rem; font-weight: 500; color: var(--cream-muted); position: relative; padding: 4px 0; transition: color var(--dur) var(--ease); }
.nav.is-solid .nav__links a { color: var(--muted); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav__links a:hover { color: var(--cream); }
.nav.is-solid .nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }

/* Right-side action buttons (Get a Quote + Book a Free Call) */
.nav__actions { display: flex; align-items: center; gap: 12px; }

.nav__toggle { display: none; background: none; border: none; color: var(--cream); padding: 8px; cursor: pointer; }
.nav.is-solid .nav__toggle { color: var(--ink); }
.nav__toggle-icon { width: 26px; height: 26px; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 auto 0; z-index: var(--z-overlay);
  background: rgba(251, 248, 241, 0.98);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu__links { display: flex; flex-direction: column; padding: 18px 24px 26px; gap: 4px; }
.mobile-menu__links a { padding: 14px 4px; font-size: 1.05rem; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line); }
.mobile-menu__links a:last-child { border: none; margin-top: 12px; }

/* ============================================================
   SECTION 2 — HERO
============================================================ */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  padding-top: calc(var(--nav-h) + 40px); padding-bottom: 80px;
  background: var(--green-800); color: var(--cream); overflow: hidden;
  border-bottom-left-radius: 36px; border-bottom-right-radius: 36px;
}
.hero__grid {
  position: absolute; inset: -10% 0 0 0; z-index: 0;
  background-image:
    linear-gradient(to right, rgba(242, 236, 222, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(242, 236, 222, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 40%, transparent 100%);
  will-change: transform;
}
.hero__glow {
  position: absolute; z-index: 0; top: -20%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 620px; pointer-events: none;
  background: radial-gradient(circle, rgba(194, 160, 92, 0.18), transparent 62%);
  filter: blur(10px);
}
.hero__inner { position: relative; z-index: 1; max-width: 880px; }
.hero__title { font-size: clamp(2.3rem, 6vw, 4.3rem); font-weight: 800; letter-spacing: -0.02em; color: var(--cream); }
.hero__title .hl { color: var(--gold-bright); font-style: italic; }
.hero__subtitle {
  margin-top: 26px; max-width: 640px; color: var(--cream-muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem); font-weight: 500; line-height: 1.6;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.stats { display: flex; align-items: stretch; gap: 0; margin: 56px 0 0; flex-wrap: wrap; }
.stats__item { flex: 1; min-width: 200px; padding-right: 28px; }
.stats__divider { width: 1px; background: var(--line-dark); margin-right: 28px; }
.stats__num { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--cream); }
.stats__label { margin-top: 6px; color: var(--cream-muted); font-size: 0.95rem; line-height: 1.5; }

/* ============================================================
   SECTIONS — shared
============================================================ */
.section {
  padding: var(--section-pad-y) 0; position: relative;
  /* Land anchor jumps ~24px below the fixed nav, regardless of section padding */
  scroll-margin-top: calc(24px - var(--section-pad-y));
}
.section--alt { background: var(--bg-alt); }

.eyebrow {
  color: var(--green-600); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); display: inline-block; }
.section__title { font-size: clamp(1.9rem, 4vw, 3rem); max-width: 18ch; color: var(--ink); }
.section__lead { margin-top: 18px; max-width: 70ch; color: var(--muted); font-size: 1.08rem; }

/* Icon badge */
.icon-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(36, 81, 56, 0.08); border: 1px solid rgba(36, 81, 56, 0.16); color: var(--green-700);
}
.icon-badge svg { width: 26px; height: 26px; }
.icon-badge--lg { width: 60px; height: 60px; border-radius: 16px; }
.icon-badge--lg svg { width: 30px; height: 30px; }

/* Arrow link */
.link-arrow { display: inline-flex; align-items: center; gap: 8px; color: var(--green-700); font-weight: 600; margin-top: auto; }
.link-arrow span { transition: transform var(--dur) var(--ease); }
.link-arrow:hover span { transform: translateX(5px); }
.link-arrow:hover { color: var(--green-600); }

/* ============================================================
   SECTION 3 — THE PROBLEM
============================================================ */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 52px; }
.problem-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.problem-card:hover { transform: translateY(-4px); border-color: rgba(36, 81, 56, 0.4); box-shadow: var(--shadow-md); }
.problem-card__title { font-family: var(--font-body); font-weight: 700; font-size: 1.18rem; line-height: 1.35; margin: 22px 0 12px; color: var(--ink); }
.problem-card__body { color: var(--muted); font-size: 0.98rem; }
.problem-closer {
  text-align: center; margin: 44px auto 0; max-width: 680px;
  font-family: var(--font-body); font-weight: 600; font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--ink);
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 20px 34px; box-shadow: var(--shadow-sm);
}

/* ============================================================
   SECTION 4 — SERVICES OVERVIEW
============================================================ */
.services-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 26px; margin-top: 52px; align-items: stretch; }
.service-card {
  position: relative; display: flex; flex-direction: column; gap: 18px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px 36px; box-shadow: var(--shadow-sm);
  cursor: pointer; text-decoration: none; color: inherit;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(36, 81, 56, 0.4); box-shadow: var(--shadow-md); }
.service-card:hover .link-arrow { color: var(--green-600); }
.service-card:hover .link-arrow span { transform: translateX(5px); }
.service-card:focus-visible { outline: 2px solid var(--green-600); outline-offset: 3px; }
.service-card--primary {
  border-color: rgba(194, 160, 92, 0.55);
  box-shadow: 0 0 0 1px rgba(194, 160, 92, 0.35), var(--shadow-lg);
}
.service-card__badge {
  position: absolute; top: 22px; right: 22px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green-800); background: rgba(194, 160, 92, 0.22); border: 1px solid rgba(194, 160, 92, 0.5);
  padding: 5px 11px; border-radius: 999px;
}
.service-card__title { font-size: 1.9rem; color: var(--ink); }
.service-card__body { color: var(--muted); }

/* ============================================================
   SECTION 5 — BOOKKEEPING PACKAGES
============================================================ */
/* Tighter vertical padding for the pricing section (keeps anchor landing correct
   because scroll-margin-top references this same variable) */
#pricing { --section-pad-y: clamp(44px, 5vw, 64px); }
#pricing .section__title { font-size: clamp(1.6rem, 3vw, 2.1rem); max-width: 30ch; }
#pricing .section__lead { margin-top: 12px; font-size: 0.95rem; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 26px; align-items: start; }
.price-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 26px; box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.price-card:hover { transform: translateY(-4px); border-color: rgba(36, 81, 56, 0.4); box-shadow: var(--shadow-md); }

/* Featured = solid deep green card */
.price-card--featured {
  background: var(--green-800); border-color: var(--green-800);
  box-shadow: var(--shadow-lg); transform: translateY(-10px);
}
.price-card--featured:hover { transform: translateY(-14px); }
@media (min-width: 921px) { .price-card--featured { padding: 34px 28px; } }
.price-card--featured .price-card__name,
.price-card--featured .price-card__price { color: var(--cream); }
.price-card--featured .price-card__price span,
.price-card--featured .price-card__sub { color: var(--cream-muted); }
.price-card--featured .price-card__time { color: var(--gold-bright); }
.price-card--featured .price-card__list { border-top-color: var(--line-dark); }
.price-card--featured .price-card__list li { color: var(--cream-muted); }
.price-card--featured .price-card__list li strong { color: var(--cream); }
.price-card--featured .price-card__list li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12.5 10 17.5 19 7' stroke='%23DCBC7B' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.price-card__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--green-900); font-weight: 700; font-size: 0.74rem;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 7px 16px; border-radius: 999px;
  box-shadow: 0 10px 24px -12px rgba(194, 160, 92, 0.9);
}
.price-card__name { font-size: 1.4rem; color: var(--ink); }
.price-card__price { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; margin-top: 6px; color: var(--ink); }
.price-card__price span { font-family: var(--font-body); font-weight: 500; font-size: 0.95rem; color: var(--muted); }
.price-card__sub { color: var(--muted); margin-top: 8px; font-size: 0.95rem; }
.price-card__time { color: var(--green-600); font-size: 0.85rem; font-weight: 700; margin-top: 14px; }
.price-card__list { list-style: none; margin: 12px 0 18px; padding: 14px 0 0; border-top: 1px solid var(--line); display: grid; gap: 7px; flex: 1; }
.price-card__list li { position: relative; padding-left: 28px; color: var(--muted); font-size: 0.92rem; line-height: 1.35; }
.price-card__list li strong { color: var(--ink); }
.price-card__list li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px;
  background-position: center; background-repeat: no-repeat; background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12.5 10 17.5 19 7' stroke='%23245138' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Accordion */
.accordion { margin-top: 30px; border: 1px solid rgba(36, 81, 56, 0.35); border-radius: var(--radius); background: var(--card); overflow: hidden; box-shadow: var(--shadow-sm); }
.accordion__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: rgba(36, 81, 56, 0.06); border: none; cursor: pointer; color: var(--ink);
  font-family: var(--font-body); text-align: left;
  padding: 15px 22px; transition: background-color var(--dur) var(--ease);
}
.accordion__trigger:hover { background: rgba(36, 81, 56, 0.11); }
.accordion__label { display: flex; flex-direction: column; gap: 3px; }
.accordion__title { font-weight: 700; font-size: 1.1rem; color: var(--ink); }
.accordion__hint { font-weight: 600; font-size: 0.85rem; color: var(--green-600); }
.accordion__trigger .when-open { display: none; }
.accordion__trigger[aria-expanded="true"] .when-closed { display: none; }
.accordion__trigger[aria-expanded="true"] .when-open { display: inline; }
.accordion__chevron {
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green-700); color: var(--cream);
  transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.accordion__chevron svg { width: 20px; height: 20px; }
.accordion__trigger:hover .accordion__chevron { background: var(--green-600); }
.accordion__trigger[aria-expanded="true"] .accordion__chevron { transform: rotate(180deg); }
.accordion__panel { padding: 0 26px; }
.accordion__panel[hidden] { display: none; }
.addon-grid { list-style: none; margin: 0; padding: 6px 0 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }
.addon-grid li { display: flex; justify-content: space-between; gap: 18px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.addon-grid li span { color: var(--ink); font-weight: 500; font-size: 0.96rem; }
.addon-grid li em { color: var(--green-600); font-style: normal; font-weight: 700; font-size: 0.9rem; text-align: right; white-space: nowrap; }
.addon-grid li em small { display: block; color: var(--muted); font-weight: 400; font-size: 0.78rem; }

/* ============================================================
   SECTION 5b — GET A CUSTOM QUOTE
============================================================ */
#quote { --section-pad-y: clamp(36px, 4.5vw, 56px); }
#quote .section__title { font-size: clamp(1.6rem, 3vw, 2.1rem); }
#quote .section__lead { margin-top: 12px; font-size: 0.95rem; }

.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 30px; align-items: stretch; }
.quote-card {
  position: relative; display: flex; flex-direction: column; gap: 11px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 26px 24px; box-shadow: var(--shadow-sm);
}
.quote-card__num {
  position: absolute; top: -17px; left: 28px; width: 38px; height: 38px; border-radius: 50%;
  background: var(--green-700); color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; box-shadow: var(--shadow-sm);
}
.quote-card__tag {
  align-self: flex-start; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green-800); background: rgba(194, 160, 92, 0.22); border: 1px solid rgba(194, 160, 92, 0.5);
  padding: 5px 11px; border-radius: 999px;
}
.quote-card__tag--alt { color: var(--green-700); background: rgba(36, 81, 56, 0.08); border-color: rgba(36, 81, 56, 0.25); }
.quote-card__title { font-size: 1.5rem; color: var(--ink); }
.quote-card__body { color: var(--muted); font-size: 0.98rem; }
.quote-card__body strong { color: var(--ink); }
.quote-card__list { list-style: none; margin: 2px 0; padding: 0; display: grid; gap: 9px; }
.quote-card__list li { position: relative; padding-left: 27px; color: var(--muted); font-size: 0.94rem; }
.quote-card__list li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 17px; height: 17px;
  background-position: center; background-repeat: no-repeat; background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12.5 10 17.5 19 7' stroke='%23245138' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.quote-card .btn--block { margin-top: auto; }
.quote-card__note { color: var(--muted); font-size: 0.82rem; line-height: 1.5; }
.quote-card__note strong { color: var(--ink); }
.quote-form { display: grid; gap: 10px; margin-top: 2px; }

/* ============================================================
   SECTION 6 — CONSULTING
============================================================ */
.consulting-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px; }
.consult-tile {
  position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px 26px 28px; overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.consult-tile::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--gold); }
.consult-tile:hover { transform: translateY(-4px); border-color: rgba(36, 81, 56, 0.4); box-shadow: var(--shadow-md); }
.consult-tile h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; line-height: 1.3; color: var(--ink); }
.consult-tile__price { color: var(--green-700); font-weight: 700; font-size: 1.15rem; margin-top: 10px; }
.consult-tile__desc { color: var(--muted); font-size: 0.9rem; margin-top: 10px; }
.consulting-cta { text-align: center; margin-top: 52px; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.consulting-cta p { font-family: var(--font-display); font-size: clamp(1.2rem, 2.4vw, 1.55rem); color: var(--ink); max-width: 30ch; }

/* ============================================================
   SECTION 7 — WHY US
============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 52px; }
.why-card { padding: 4px; }
.why-card__title { font-family: var(--font-body); font-weight: 700; font-size: 1.12rem; line-height: 1.3; margin: 20px 0 12px; color: var(--ink); }
.why-card__body { color: var(--muted); font-size: 0.96rem; }

/* ============================================================
   SECTION 8 — ABOUT
============================================================ */
.about-grid { display: grid; grid-template-columns: 320px 1fr; gap: 56px; margin-top: 52px; align-items: start; }
.about-photo { display: flex; justify-content: center; }
.about-photo__frame {
  width: 280px; height: 280px; border-radius: 50%; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  background: radial-gradient(circle at 50% 35%, rgba(194, 160, 92, 0.16), transparent 70%), var(--card);
  border: 1px solid rgba(194, 160, 92, 0.5);
  box-shadow: 0 0 0 8px rgba(194, 160, 92, 0.08), var(--shadow-md);
}
.about-photo__frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-bio p { color: var(--muted); margin-bottom: 18px; max-width: 62ch; }
.about-bio__location { color: var(--ink) !important; font-weight: 600; }
.about-bio__email { color: var(--green-700); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(36, 81, 56, 0.35); transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.about-bio__email:hover { color: var(--green-600); border-bottom-color: var(--green-600); }
.badges { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px; }
.badges li {
  padding: 10px 18px; border: 1px solid rgba(194, 160, 92, 0.45); border-radius: 999px;
  background: rgba(194, 160, 92, 0.1); color: var(--ink); font-size: 0.88rem; font-weight: 600;
}

/* ============================================================
   SECTION 9 — MY PROMISE
============================================================ */
.promise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 44px; }
.promise-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.promise-card:hover { transform: translateY(-4px); border-color: rgba(36, 81, 56, 0.4); box-shadow: var(--shadow-md); }
.promise-card__title { font-family: var(--font-body); font-weight: 700; font-size: 1.08rem; line-height: 1.3; margin: 18px 0 10px; color: var(--ink); }
.promise-card__body { color: var(--muted); font-size: 0.94rem; }
.promise-guarantee {
  display: flex; align-items: center; gap: 18px; margin-top: 30px;
  background: var(--green-800); color: var(--cream);
  border-radius: var(--radius-lg); padding: 26px 32px; box-shadow: var(--shadow-md);
}
.promise-guarantee svg { width: 36px; height: 36px; flex: none; color: var(--gold-bright); }
.promise-guarantee p { font-size: 1.05rem; line-height: 1.55; color: var(--cream); }
.promise-guarantee strong { color: #FFFFFF; }

/* ============================================================
   SECTION 9 — TESTIMONIALS (kept for when real reviews exist)
============================================================ */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.testimonial {
  position: relative; margin: 0; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 30px 30px; box-shadow: var(--shadow-sm);
}
.testimonial__quote { font-family: var(--font-display); font-size: 4rem; line-height: 0.6; color: var(--gold); display: block; height: 34px; }
.testimonial blockquote { margin: 18px 0 22px; font-style: italic; color: var(--ink); font-size: 1.05rem; line-height: 1.6; }
.testimonial figcaption { color: var(--muted); font-size: 0.9rem; }
.testimonial-note { text-align: center; margin-top: 36px; font-style: italic; color: var(--muted); font-size: 0.95rem; }

/* ============================================================
   SECTION 10 — CONTACT
============================================================ */
/* Condensed contact/messaging section (anchor landing stays correct via the shared var) */
#contact { --section-pad-y: clamp(44px, 5vw, 64px); }
#contact .section__title { font-size: clamp(1.6rem, 3vw, 2.1rem); }
#contact .section__lead { margin-top: 12px; font-size: 0.95rem; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 30px; align-items: start; }
.booking__title { font-size: 1.4rem; color: var(--ink); }
.booking__sub { color: var(--muted); margin-top: 6px; margin-bottom: 16px; }
.calendly-embed {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--bg-alt); box-shadow: var(--shadow-sm);
}
.calendly-embed .calendly-inline-widget { border-radius: var(--radius); }

.form-wrap { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.contact-form { display: grid; gap: 12px; }
.field { display: grid; gap: 5px; }
.field label { font-size: 0.88rem; font-weight: 600; color: var(--ink); }
.req { color: var(--green-600); }
.optional { color: var(--muted); font-weight: 400; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: 10px;
  padding: 10px 14px; transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field textarea { resize: vertical; min-height: 84px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(85, 99, 90, 0.6); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--green-600); box-shadow: 0 0 0 3px rgba(46, 99, 71, 0.15);
}
.field.has-error input, .field.has-error select { border-color: #C0492F; }
.field__error { color: #B23A22; font-size: 0.82rem; min-height: 0; }

.select-wrap { position: relative; }
.select-wrap select { appearance: none; -webkit-appearance: none; padding-right: 42px; cursor: pointer; }
.select-wrap__chevron { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--muted); pointer-events: none; }

.form-foot { color: var(--muted); font-size: 0.85rem; text-align: center; margin-top: 4px; }
.form-error { color: #B23A22; font-size: 0.88rem; text-align: center; background: rgba(178, 58, 34, 0.08); border: 1px solid rgba(178, 58, 34, 0.3); border-radius: 10px; padding: 11px 14px; }
.form-error[hidden] { display: none; }
.btn:disabled { opacity: 0.65; cursor: progress; }

.form-success {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(36, 81, 56, 0.08); border: 1px solid rgba(36, 81, 56, 0.3); border-radius: 12px;
  padding: 18px; color: var(--ink);
}
.form-success[hidden] { display: none; }
.form-success svg { width: 24px; height: 24px; color: var(--green-700); flex: none; margin-top: 2px; }
.form-success p { font-size: 0.95rem; }

/* ============================================================
   SECTION 11 — FOOTER
============================================================ */
.footer { background: var(--green-900); color: var(--cream); }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; padding-top: 60px; padding-bottom: 48px; }
.footer .brand__name { color: var(--cream); }
.footer__tagline { color: var(--cream-muted); margin-top: 16px; font-family: var(--font-display); font-style: italic; font-size: 1.02rem; }
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a, .footer__contact a, .footer__contact span { color: var(--cream-muted); font-size: 0.95rem; transition: color var(--dur) var(--ease); }
.footer__links a:hover, .footer__contact a:hover { color: var(--gold-bright); }
.footer__contact { display: flex; flex-direction: column; gap: 12px; }
.footer__bar { border-top: 1px solid var(--line-dark); padding: 22px 0; }
.footer__bar p { color: var(--cream-muted); font-size: 0.84rem; text-align: center; }

/* ============================================================
   SCROLL REVEAL ANIMATION
============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1080px) {
  .consulting-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .promise-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .nav__links, .nav__actions { display: none; }
  .nav__toggle { display: inline-flex; }

  .problem-grid, .pricing-grid, .testimonial-grid, .quote-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .price-card--featured { transform: none; order: -1; }
  .price-card--featured:hover { transform: translateY(-4px); }

  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-photo { order: -1; }

  .contact-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }

  .stats__divider { display: none; }
  .stats__item { flex-basis: 100%; padding-right: 0; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .consulting-grid, .why-grid, .addon-grid, .promise-grid { grid-template-columns: 1fr; }
  .promise-guarantee { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn--lg { width: 100%; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .container { padding-inline: 18px; }
  .form-wrap { padding: 24px 20px; }
  .hero { border-radius: 0 0 24px 24px; }
}

/* ============================================================
   REDUCED MOTION
============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__grid { transform: none !important; }
}
