/* ==========================================================================
   BENGIGGS — Certified Public Accountants
   Flat editorial design system: navy, gold, white. No gradients, no shadows.
   ========================================================================== */

:root {
  --navy: #01264E;
  --navy-2: #01234A;
  --navy-deep: #011A38;
  --gold: #B89140;
  --gold-deep: #8A6B2C;
  --white: #FFFFFF;
  --paper: #F7F5F0;
  --ink: #15283D;
  --muted: #4E6072;
  --muted-light: #A9BACB;
  --line: #E2E6EB;
  --line-navy: rgba(255, 255, 255, 0.16);
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --container: 1180px;
  --header-h: 76px;
}

/* ---------- Reset & base ---------- */

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
}

p { margin: 0 0 1rem; }
img, svg { display: block; }
a { color: var(--navy); }
ul { padding-left: 1.2rem; }
li::marker { color: var(--gold); }

::selection { background: var(--gold); color: var(--navy); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 0.8rem 1.4rem;
  z-index: 200;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

body.no-scroll { overflow: hidden; }

/* ---------- Type helpers ---------- */

.kicker {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 1.1rem;
}
.kicker::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--gold);
  flex: none;
}
.kicker-light { color: var(--gold); }

.section-title { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.lede { font-size: 1.12rem; color: var(--muted); max-width: 40rem; }
.lede-light { color: var(--muted-light); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.7rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-sm { padding: 0.7rem 1.15rem; font-size: 0.72rem; }

.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-deep); color: var(--white); }

.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: #a3802f; color: var(--navy); }

.btn-outline { border-color: rgba(255, 255, 255, 0.45); color: var(--white); background: transparent; }
.btn-outline:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.06); }

.btn-outline-navy { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

.btn svg { width: 14px; height: 14px; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--white);
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
  height: 100%;
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand-logo {
  display: block;
  width: auto;
  height: 100%;
  max-width: 60vw;
  object-fit: contain;
}

.site-nav { display: flex; gap: 2rem; }
.site-nav a {
  position: relative;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  padding: 0.4rem 0;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { width: 100%; }
.site-nav a[aria-current="page"] { font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 1.4rem; }
.header-tel {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
}
.header-tel svg { width: 15px; height: 15px; color: var(--gold-deep); }
.header-tel:hover { color: var(--gold-deep); }

.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 1px solid var(--line);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile nav overlay ---------- */

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: var(--navy);
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
}
.nav-overlay.open { opacity: 1; visibility: visible; }
.overlay-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding-top: calc(var(--header-h) + 3px + 3rem);
  padding-bottom: 3rem;
}
.overlay-nav { display: flex; flex-direction: column; }
.overlay-nav a {
  display: flex;
  align-items: baseline;
  gap: 1.1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line-navy);
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
}
.overlay-nav a em {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.overlay-nav a:hover { color: var(--gold); }
.overlay-foot {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 3rem;
}
.overlay-foot .btn { align-self: flex-start; }
.overlay-contact { display: flex; flex-direction: column; gap: 0.3rem; }
.overlay-contact a { color: var(--white); font-weight: 600; text-decoration: none; }
.overlay-contact a:hover { color: var(--gold); }
.overlay-contact p { color: var(--muted-light); font-size: 0.9rem; margin: 0.4rem 0 0; }

/* ---------- Hero ---------- */

.hero {
  background: var(--navy);
  color: var(--white);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(4rem, 9vw, 7.5rem) 1rem;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5.4vw, 4.2rem);
  line-height: 1.08;
  margin: 1.2rem 0 1.4rem;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero .lede { color: var(--muted-light); font-size: 1.12rem; margin-bottom: 2.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-note {
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-navy);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-light);
}
.hero-note b { color: var(--gold); font-weight: 600; }

/* ---------- Hero media ---------- */

.hero-media {
  position: relative;
  border: 1px solid var(--line-navy);
  overflow: hidden;
}
.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 480px;
  object-fit: cover;
}

/* ---------- Stat strip (below hero) ---------- */

.stat-strip {
  background: var(--navy-2);
  border-bottom: 1px solid var(--line-navy);
}
.stat-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 1.8rem 1rem;
}
.stat-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid var(--line-navy);
}
.stat-strip-item:last-child { border-right: none; }
.stat-strip-item b {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-strip-item span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-light);
}

/* ---------- Split image (about / why sections) ---------- */

.split-image {
  margin-bottom: 1.8rem;
  border: 1px solid var(--line);
  overflow: hidden;
}
.split-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ---------- Page banner (service / audience detail) ---------- */

.page-banner {
  background: var(--navy);
  border-bottom: 1px solid var(--line-navy);
  padding: 0 0 clamp(2.5rem, 5vw, 3.5rem);
}
.page-banner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-bottom: 3px solid var(--gold);
}

/* ---------- Audience card image ---------- */

.aud-card-img {
  margin: -2.2rem -2.2rem 0;
  margin-bottom: 1rem;
  height: 200px;
  overflow: hidden;
}
.aud-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Profile card with photo ---------- */

.profile-card { border: 1px solid var(--line); overflow: hidden; }
.pc-photo {
  height: 280px;
  overflow: hidden;
}
.pc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pc-body { padding: 1.8rem; }
.pc-body h3 { font-size: 1.2rem; margin: 0 0 0.2rem; }
.pc-body .pc-role {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}
.pc-body p { font-size: 0.92rem; color: var(--muted); }
.pc-link {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.2rem;
}
.pc-link:hover { color: var(--gold-deep); }

/* ---------- Article card image ---------- */

.article-card-img {
  margin: -1.9rem -1.9rem 0;
  margin-bottom: 0.4rem;
  height: 180px;
  overflow: hidden;
}
.article-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Contact image ---------- */

.contact-image {
  margin-bottom: 1.8rem;
  border: 1px solid var(--line);
  overflow: hidden;
}
.contact-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ---------- Marquee strip ---------- */

.marquee {
  border-bottom: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  padding: 1.1rem 0;
  animation: marquee 34s linear infinite;
}
.marquee-track span {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.marquee-track span::after {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--gold);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ---------- Sections ---------- */

.section { padding: clamp(3.6rem, 8vw, 6.5rem) 0; }
.section-tint { background: var(--paper); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy .section-title { color: var(--white); }
.section-line { border-top: 1px solid var(--line); }

.section-head { max-width: 46rem; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section-navy .section-head p { color: var(--muted-light); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: clamp(2.5rem, 6vw, 5rem);
}
.split-aside { position: sticky; top: calc(var(--header-h) + 2rem); align-self: start; }

/* ---------- Numbered reasons ---------- */

.reasons { border-top: 1px solid var(--line); }
.reason {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.6rem;
  padding: 1.9rem 0;
  border-bottom: 1px solid var(--line);
}
.reason i {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 1.5rem;
  color: var(--gold-deep);
  line-height: 1.2;
}
.reason h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.reason p { color: var(--muted); margin: 0; max-width: 40rem; }

/* ---------- Service rows ---------- */

.service-list { border-top: 1px solid var(--line); }
.service-row {
  display: grid;
  grid-template-columns: 4.5rem 1fr 3rem;
  align-items: center;
  gap: 1.6rem;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}
.service-row .num {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold-deep);
}
.service-row h3 {
  font-size: 1.45rem;
  margin-bottom: 0.3rem;
  transition: color 0.2s ease;
}
.service-row p { color: var(--muted); font-size: 0.95rem; margin: 0; max-width: 44rem; }
.service-row .arrow {
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.service-row .arrow svg { width: 15px; height: 15px; color: var(--navy); }
.service-row:hover h3 { color: var(--gold-deep); }
.service-row:hover .arrow { background: var(--navy); border-color: var(--navy); }
.service-row:hover .arrow svg { color: var(--gold); }

/* ---------- Audience cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.aud-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2.2rem;
  border: 1px solid var(--line-navy);
  color: var(--white);
  text-decoration: none;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}
.aud-card .num {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.12em;
}
.aud-card h3 { color: var(--white); font-size: 1.55rem; margin: 0; }
.aud-card p { color: var(--muted-light); font-size: 0.95rem; margin: 0; flex: 1; }
.aud-card .more {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.aud-card .more svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.aud-card:hover { border-color: var(--gold); background: rgba(255, 255, 255, 0.03); }
.aud-card:hover .more svg { transform: translateX(4px); }

/* On light backgrounds */
.card-grid-light .aud-card { border-color: var(--line); color: var(--ink); }
.card-grid-light .aud-card h3 { color: var(--navy); }
.card-grid-light .aud-card p { color: var(--muted); }
.card-grid-light .aud-card:hover { border-color: var(--navy); background: var(--paper); }

/* ---------- Quote / testimonial ---------- */

.quote-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
blockquote.pull {
  margin: 0;
  padding-top: 3.4rem;
  position: relative;
}
blockquote.pull::before {
  content: "\201C";
  position: absolute;
  top: 0;
  left: -0.3rem;
  font-family: var(--font-serif);
  font-size: 6.5rem;
  line-height: 1;
  color: var(--gold);
}
blockquote.pull p {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  line-height: 1.4;
  color: var(--navy);
  margin-bottom: 1.4rem;
}
blockquote.pull cite {
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
blockquote.pull cite b { color: var(--navy); }

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--navy);
  color: var(--white);
  border-top: 3px solid var(--gold);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  padding: clamp(3rem, 6vw, 4.5rem) 1rem;
}
.cta-inner h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  margin-bottom: 0.5rem;
}
.cta-inner p { color: var(--muted-light); margin: 0; max-width: 34rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; flex: none; }
.cta-tel {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  font-size: 1.05rem;
}
.cta-tel svg { width: 17px; height: 17px; color: var(--gold); }
.cta-tel:hover { color: var(--gold); }

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: clamp(3rem, 7vw, 5.2rem) 1rem;
}
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.crumbs li { display: flex; align-items: center; gap: 0.6rem; color: var(--muted-light); }
.crumbs li::after { content: "/"; color: var(--gold); }
.crumbs li:last-child::after { content: none; }
.crumbs a { color: var(--muted-light); text-decoration: none; }
.crumbs a:hover { color: var(--white); }
.crumbs li[aria-current] { color: var(--white); }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  max-width: 22ch;
  margin-bottom: 1rem;
}
.page-hero .lede { color: var(--muted-light); max-width: 44rem; margin: 0; }

/* ---------- Prose ---------- */

.prose { max-width: 46rem; }
.prose p { color: var(--ink); margin-bottom: 1.3rem; }
.prose p.muted { color: var(--muted); }
.prose h2 { font-size: 1.7rem; margin-top: 2.6rem; }
.prose h3 { font-size: 1.3rem; margin-top: 2.2rem; }
.prose ul { margin: 0 0 1.3rem; }
.prose li { margin-bottom: 0.4rem; }

/* ---------- Check lists ---------- */

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 2rem;
  color: var(--ink);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 0.85rem;
  height: 0.85rem;
  background: var(--gold);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
.check-list.on-navy li { color: #D9E2EC; }

/* ---------- Sidebar layout (detail pages) ---------- */

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.detail-side { position: sticky; top: calc(var(--header-h) + 2rem); }
.side-block { border: 1px solid var(--line); margin-bottom: 1.4rem; }
.side-block h3 {
  font-size: 0.74rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--line);
  margin: 0;
}
.side-block ul { list-style: none; padding: 0; margin: 0; }
.side-block li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.4rem;
  font-size: 0.92rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.side-block li:last-child a { border-bottom: none; }
.side-block li a:hover { background: var(--paper); color: var(--navy); }
.side-block li a.is-current { color: var(--gold-deep); font-weight: 600; }
.side-cta {
  background: var(--navy);
  color: var(--white);
  padding: 1.8rem;
}
.side-cta h3 { color: var(--white); font-size: 1.3rem; }
.side-cta p { color: var(--muted-light); font-size: 0.9rem; }
.side-cta .btn { width: 100%; margin-top: 0.6rem; }
.side-cta a.tel {
  display: block;
  margin-top: 1rem;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
}

.fact-list { border: 1px solid var(--line); }
.fact-list .fact {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 1rem;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--line);
}
.fact:last-child { border-bottom: none; }
.fact dt {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 0.15rem;
}
.fact dd { margin: 0; color: var(--navy); font-weight: 500; font-size: 0.95rem; }

/* ---------- Challenge cards ---------- */

.challenge { border-top: 1px solid var(--line); padding: 1.6rem 0; }
.challenge h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.challenge h3::before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 2px;
  background: var(--gold);
  margin-right: 0.8rem;
  vertical-align: middle;
}
.challenge p { color: var(--muted); margin: 0; max-width: 44rem; }

/* ---------- Values grid ---------- */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.value {
  padding: 1.9rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.value h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.value h3::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1rem;
}
.value p { font-size: 0.9rem; color: var(--muted); margin: 0; }

/* ---------- Team ---------- */

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.team-card { border: 1px solid var(--line); }
.team-card .tc-head {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  padding: 1.9rem;
  border-bottom: 1px solid var(--line);
}
.tc-initials {
  width: 4rem;
  height: 4rem;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.4rem;
}
.team-card h3 { margin: 0; font-size: 1.35rem; }
.team-card .tc-role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.team-card .tc-cred { font-size: 0.8rem; color: var(--muted); }
.team-card .tc-body { padding: 1.9rem; }
.team-card .tc-body p { font-size: 0.94rem; color: var(--muted); }
.team-card .tc-body p:last-child { margin-bottom: 0; }

/* ---------- Tables ---------- */

.table-wrap { overflow-x: auto; border: 1px solid var(--line); }
.table { width: 100%; border-collapse: collapse; min-width: 640px; }
.table th {
  text-align: left;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 1rem 1.3rem;
  border-bottom: 2px solid var(--navy);
  background: var(--white);
}
.table td {
  padding: 1rem 1.3rem;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.table tr:last-child td { border-bottom: none; }
.table td:first-child { font-weight: 500; color: var(--navy); }
.table .freq {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border: 1px solid var(--gold);
  padding: 0.2rem 0.6rem;
  white-space: nowrap;
}

/* ---------- Readiness checklist ---------- */

.checklist-panel { border: 1px solid var(--line); }
.checklist-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 1.6rem;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.checklist-head h3 { margin: 0; font-size: 1.15rem; }
.checklist-progress {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.progress {
  height: 4px;
  background: var(--line);
  margin: 0 1.6rem 0;
}
.progress i { display: block; height: 100%; width: 0; background: var(--gold); transition: width 0.3s ease; }
.checklist { list-style: none; padding: 0.6rem 0; margin: 0; }
.checklist li { border-bottom: 1px solid var(--line); }
.checklist li:last-child { border-bottom: none; }
.checklist label {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.6rem;
  cursor: pointer;
  font-size: 0.95rem;
}
.checklist input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  flex: none;
  border: 1.5px solid var(--navy);
  margin: 0;
  cursor: pointer;
  position: relative;
}
.checklist input[type="checkbox"]:checked { background: var(--navy); }
.checklist input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--gold);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
.checklist input[type="checkbox"]:checked + span { color: var(--muted); text-decoration: line-through; }
.checklist-foot {
  display: flex;
  gap: 0.8rem;
  padding: 1.2rem 1.6rem;
  border-top: 1px solid var(--line);
}
.btn-text {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.btn-text:hover { color: var(--navy); }

/* ---------- Article cards ---------- */

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.article-card {
  border: 1px solid var(--line);
  padding: 1.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.article-card:hover { border-color: var(--navy); background: var(--paper); }
.article-card .tag {
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border: 1px solid var(--gold);
  padding: 0.25rem 0.7rem;
}
.article-card h3 { font-size: 1.3rem; margin: 0; }
.article-card p { font-size: 0.92rem; color: var(--muted); margin: 0; flex: 1; }
.article-card .meta {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.article-head { max-width: 46rem; }
.article-meta {
  display: flex;
  gap: 1.4rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-top: 1.4rem;
}

/* ---------- Forms ---------- */

.form-card { border: 1px solid var(--line); padding: clamp(1.6rem, 4vw, 2.6rem); background: var(--white); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}
.field label em { color: var(--gold-deep); font-style: normal; }
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 0;
  width: 100%;
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%2301264E' stroke-width='1.5'/%3E%3C/svg%3E"); background-position: calc(100% - 16px) center; background-size: 10px 6px; background-repeat: no-repeat; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.field textarea { min-height: 120px; resize: vertical; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 1rem; }
.form-note a { color: var(--navy); }

.notice {
  border: 1px solid var(--gold);
  border-left: 4px solid var(--gold);
  background: var(--paper);
  padding: 1rem 1.3rem;
  font-size: 0.92rem;
  margin-bottom: 1.4rem;
}
.notice strong { color: var(--navy); }

/* ---------- Contact page ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: start;
}
.contact-methods { border-top: 1px solid var(--line); }
.contact-method {
  display: grid;
  grid-template-columns: 2.8rem 1fr;
  gap: 1.2rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.cm-icon {
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
}
.cm-icon svg { width: 18px; height: 18px; color: var(--gold-deep); }
.contact-method h3 { font-size: 0.74rem; font-family: var(--font-sans); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin: 0 0 0.25rem; }
.contact-method a, .contact-method p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  margin: 0;
}
.contact-method a:hover { color: var(--gold-deep); }
.contact-method small { display: block; font-size: 0.82rem; font-weight: 400; color: var(--muted); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-deep);
  color: var(--muted-light);
  border-top: 3px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.6rem;
  padding: clamp(3rem, 6vw, 4.6rem) 0;
}
.brand-footer { height: auto; }
.brand-logo-footer {
  height: auto;
  max-height: 64px;
  background: var(--white);
  padding: 0.55rem 0.9rem;
}
.footer-tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  margin: 1.2rem 0 0.6rem;
}
.footer-blurb { font-size: 0.9rem; max-width: 22rem; }
.footer-icpak { font-size: 0.78rem; letter-spacing: 0.06em; color: var(--muted-light); border-left: 2px solid var(--gold); padding-left: 0.8rem; }

.footer-col h3 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 1.2rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.55rem; font-size: 0.9rem; }
.footer-col a { color: var(--muted-light); text-decoration: none; }
.footer-col a:hover { color: var(--gold); }

.newsletter-form label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.7rem;
}
.nl-row { display: flex; border: 1px solid var(--line-navy); }
.nl-row input {
  flex: 1;
  min-width: 0;
  font: inherit;
  font-size: 0.9rem;
  color: var(--white);
  background: transparent;
  border: none;
  padding: 0.8rem 1rem;
}
.nl-row input::placeholder { color: rgba(169, 186, 203, 0.6); }
.nl-row input:focus { outline: none; }
.nl-row button {
  flex: none;
  width: 3rem;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.nl-row button svg { width: 18px; height: 18px; color: var(--navy); }
.nl-row button:hover { background: #a3802f; }
.nl-done { font-size: 0.82rem; color: var(--gold); margin-top: 0.6rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line-navy);
  font-size: 0.8rem;
}
.footer-bottom p { margin: 0; }
.footer-tagline { font-family: var(--font-serif); font-style: italic; color: var(--gold); }

/* ---------- WhatsApp float ---------- */

.wa-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 70;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.wa-float::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1.5px solid #25D366;
  border-radius: 50%;
  opacity: 0.55;
  animation: wa-pulse 2.4s ease-out infinite;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.07); }
@keyframes wa-pulse {
  0% { transform: scale(0.9); opacity: 0.55; }
  70% { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* ---------- Mobile action bar ---------- */

/* ---------- 404 / thank you ---------- */
.center-panel {
  text-align: center;
  padding: clamp(4rem, 10vw, 7rem) 1rem;
  max-width: 40rem;
  margin: 0 auto;
}
.center-panel .big {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 12vw, 7rem);
  color: var(--navy);
  line-height: 1;
  margin-bottom: 1rem;
}
.center-panel h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.center-panel p { color: var(--muted); }
.center-panel .hero-actions { justify-content: center; margin-top: 2rem; }

/* ---------- Responsive ---------- */

@media (max-width: 1200px) {
  .header-tel { display: none; }
}

@media (max-width: 1080px) {
  :root { --header-h: 60px; }
  .site-nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .brand-logo { max-width: calc(100vw - 8.5rem); }
}

@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .hero-actions { flex-wrap: nowrap; }
  .hero-actions .btn { flex: 1; padding: 0.85rem 0.5rem; font-size: 0.66rem; letter-spacing: 0.08em; white-space: nowrap; }
  .hero-media img { min-height: 240px; max-height: 360px; }
  .stat-strip-inner { grid-template-columns: 1fr 1fr; }
  .stat-strip-item:nth-child(2) { border-right: none; }
  .stat-strip-item:nth-child(1), .stat-strip-item:nth-child(2) { border-bottom: 1px solid var(--line-navy); padding-bottom: 1.4rem; }
  .stat-strip-item:nth-child(3), .stat-strip-item:nth-child(4) { padding-top: 1.4rem; }
  .page-hero { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .split { grid-template-columns: 1fr; }
  .split-aside { position: static; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-side { position: static; }
  .card-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .brand-logo-footer { max-height: 52px; }
  .form-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 3rem 1fr; }
  .stat-strip-inner { grid-template-columns: 1fr 1fr; }
  .hero-media img { min-height: 200px; max-height: 280px; }
  .page-banner img { max-height: 260px; }
  .service-row .arrow { display: none; }
  .fact { grid-template-columns: 1fr !important; gap: 0.2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
}

@media (max-width: 860px) {
  .wa-float { bottom: 1.1rem; right: 1.1rem; width: 52px; height: 52px; }
  .wa-float svg { width: 27px; height: 27px; }
}

/* ---------- Motion preferences ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; }
  .wa-float::after { display: none; }
}
