.pre-logo,
body {
  font-weight: 400;
}
#preloader,
.section-label {
  display: flex;
  align-items: center;
}
.btn::before,
.nav-links a::after,
.pre-bar::after {
  position: absolute;
  content: "";
}
#hero,
.btn,
.nav-links a,
.pre-bar {
  position: relative;
}
.btn,
.hero-scroll,
.nav-toggle {
  cursor: pointer;
}
.about-grid,
.about-pillars,
.approach-grid,
.services-header {
  grid-template-columns: 1fr 1fr;
}
.services-header .section-body,
body,
html {
  max-width: 100%;
}
#blog-listing,
#cta-banner {
  padding: clamp(80px, 10vw, 120px) 0;
}
#accounting-approach,
#accounting-industries,
#accounting-services,
#accounting-why,
#consulting-approach,
#consulting-industries,
#consulting-services,
#consulting-why,
#contact,
#risk-approach,
#risk-industries,
#risk-services,
#risk-why,
#services,
#structuring-approach,
#structuring-industries,
#structuring-services,
#structuring-why,
#tax-approach,
#tax-industries,
#tax-services,
#tax-why,
#testimonials,
#why {
  padding: clamp(80px, 10vw, 140px) 0;
}
.about-img,
.approach-img,
.author-avatar,
.insight-img img,
.testi-avatar,
.why-img {
  object-fit: cover;
}
#cta-banner,
#hero,
#testimonials,
.btn,
.faq-answer,
.faq-item,
.insight-card,
.insight-img,
.pre-bar,
.service-card,
.testi-track-wrap {
  overflow: hidden;
}
:root {
  --obsidian: #f7f5f0;
  --obsidian-2: #ffffff;
  --obsidian-3: #f0ede6;
  --graphite: #e8e4dc;
  --graphite-2: #ddd9cf;
  --steel: #9a9488;
  --mist: #6b6459;
  --silver: #3d3830;
  --white: #1a1714;
  --gold: #1e5c3a;
  --gold-light: #2d7a52;
  --gold-dim: #a8c4b4;
  --emerald: #1e5c3a;
  --emerald-dim: #4a8f6e;
  --burgundy: #7c2d3e;
  --burgundy-light: #a3495b;
  --slate: #2c3e50;
  --slate-light: #445566;
  --danger: #c94c4c;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --mono: "Lato", sans-serif;
  --max-w: 1280px;
  --nav-h: 72px;
  --radius: 2px;
  --gold-line: 1px solid rgba(30, 92, 58, 0.25);
}
*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--obsidian);
  color: var(--mist);
  font-family: var(--sans);
  line-height: 1.7;
}
::selection {
  background: var(--gold);
  color: #fff;
}
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--graphite);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dim);
  border-radius: 2px;
}
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #1e5c3a;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
  transition: opacity 0.8s, visibility 0.8s;
}
#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.pre-logo {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.pre-tag,
.section-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
}
.pre-logo span {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}
.pre-bar {
  width: 200px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.pre-bar::after {
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  animation: 1.8s infinite preload-bar;
}
@keyframes preload-bar {
  to {
    left: 100%;
  }
}
.pre-tag {
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.3em;
}
.container {
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
  width: 90%;
}
.gold,
.nav-links a:hover,
.nav-mobile a:hover,
.service-card:hover .svc-icon {
  color: var(--gold);
}
.emerald {
  color: var(--emerald);
}
.section-label,
.section-title strong {
  font-weight: 700;
  color: var(--gold);
}
.section-label {
  letter-spacing: 0.4em;
  margin-bottom: 16px;
  gap: 16px;
}
.section-label::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}
.btn,
.nav-logo {
  font-weight: 600;
  text-decoration: none;
}
.section-body {
  font-size: 1rem;
  color: var(--mist);
  max-width: 560px;
  line-height: 1.85;
}
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(30, 92, 58, 0.2),
    transparent
  );
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  transition: 0.3s;
  border-radius: 40px;
}
#navbar,
#scrollTop,
.nav-mobile,
.nav-overlay {
  position: fixed;
}
.btn::before {
  inset: 0;
  background: rgba(0, 0, 0, 0.07);
  transform: translateX(-100%);
  transition: transform 0.3s;
}
.btn:hover::before {
  transform: translateX(0);
}
.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(30, 92, 58, 0.3);
}
.btn-outline {
  background: 0 0;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30, 92, 58, 0.2);
}
#scrollTop,
.nav-cta:hover {
  box-shadow: 0 4px 20px rgba(30, 92, 58, 0.3);
}
.btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
#navbar,
.nav-inner {
  align-items: center;
  display: flex;
  width: 100%;
}
#navbar {
  top: 0;
  left: 0;
  z-index: 999;
  height: var(--nav-h);
  transition: 0.4s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgb(21 46 32);
  border-bottom-color: rgba(30, 92, 58, 0.15);
  backdrop-filter: blur(20px);
  height: 60px;
  box-shadow: 0 2px 24px rgba(30, 92, 58, 0.08);
}
.nav-inner {
  justify-content: space-between;
}
#hero,
.nav-links {
  align-items: center;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: #cad3ce;
  letter-spacing: 0.04em;
}
.nav-logo strong {
  color: var(--burgundy);
  font-weight: 700;
}
.nav-logo span {
  display: block;
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  color: #cad3ce;
  text-transform: uppercase;
  margin-top: -2px;
  font-weight: 400;
}
.nav-cta,
.nav-links a {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 600;
  color: #cad3ce;
  transition: color 0.25s;
}
.nav-cta,
.nav-toggle span {
  background: var(--gold);
  transition: 0.3s;
}
.nav-links a::after {
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  padding: 9px 22px;
  font-size: 0.7rem;
  border: 2px solid var(--gold);
  color: #fff;
  font-weight: 700;
  border-radius: 40px;
}
.nav-cta:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: 0 0;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
}
.nav-toggle.active span:first-child {
  transform: rotate(45deg) translate(4px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}
.nav-mobile {
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: #fff;
  border-left: 2px solid var(--gold);
  z-index: 1000;
  padding: 100px 40px 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: -8px 0 40px rgba(30, 92, 58, 0.1);
}
.industries-header .section-label::before,
.nav-overlay,
.testimonials-header .section-label::before {
  display: none;
}
.nav-mobile.open {
  right: 0;
}
.nav-mobile a {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid rgba(30, 92, 58, 0.1);
  transition: color 0.25s;
}
.nav-overlay {
  inset: 0;
  z-index: 999;
  background: rgba(30, 92, 58, 0.15);
  backdrop-filter: blur(4px);
}
.hero-accent,
.hero-bg,
.hero-grid {
  position: absolute;
}
.nav-overlay.show {
  display: block;
}
#hero {
  min-height: 100vh;
  display: flex;
}
.hero-bg {
  inset: 0;
  background: linear-gradient(
      135deg,
      rgba(30, 92, 58, 0.92) 0,
      rgba(28, 44, 36, 0.88) 50%,
      rgba(20, 60, 40, 0.92) 100%
    ),
    url("https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?w=1600&q=80")
      center/cover no-repeat;
}
.hero-grid {
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 60% 50%,
    black 40%,
    transparent 100%
  );
}
.hero-accent {
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  right: clamp(60px, 8vw, 140px);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}
.hero-kicker {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.45em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  padding-top: 25px;
}
.hero-title,
.stat-num {
  font-weight: 600;
  font-family: var(--serif);
}
.hero-kicker::before {
  content: "";
  width: 48px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
}
#why::before,
.service-card::after {
  content: "";
  top: 0;
  right: 0;
  height: 3px;
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 3.5rem);
  line-height: 1.08;
  color: #fff;
  max-width: 720px;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 500px;
  line-height: 1.9;
  margin-bottom: 48px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 72px;
}
#cta-banner .btn-gold,
.hero-actions .btn-gold {
  background: #fff;
  color: var(--gold);
}
#cta-banner .btn-gold:hover,
.hero-actions .btn-gold:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.hero-actions .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.hero-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  padding-top: 30px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.stat-num {
  font-size: 2.8rem;
  color: #fff;
  line-height: 1;
  display: block;
}
.hero-scroll span,
.stat-label {
  font-family: var(--mono);
  font-weight: 700;
  text-transform: uppercase;
}
.stat-num sup {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.65);
}
.stat-label {
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
  display: block;
}
.svc-arrow,
.svc-num {
  letter-spacing: 0.2em;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.about-badge,
.approach-badge {
  bottom: -20px;
  text-align: center;
}
.hero-scroll span {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.5);
}
.pillar h4,
.service-card:hover .svc-title {
  color: var(--white);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent);
  animation: 2s ease-in-out infinite scroll-pulse;
}
@keyframes scroll-pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.1);
  }
}
#about,
#audit-approach,
#audit-industries,
#audit-services,
#audit-why,
#contact,
#industries,
#insights,
#testimonials {
  padding: clamp(80px, 10vw, 140px) 0;
  background: #fff;
}
.about-grid,
.approach-grid {
  display: grid;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.about-image-wrap,
.approach-img-wrap,
.why-image-area {
  position: relative;
}
.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  display: block;
  filter: none;
  border-radius: 40px;
}
.about-img-border {
  position: absolute;
  inset: -16px;
  border: 2px solid rgba(30, 92, 58, 0.2);
  pointer-events: none;
  z-index: -1;
  border-radius: 40px;
}
.about-badge {
  position: absolute;
  right: -20px;
  background: var(--gold);
  padding: 24px 28px;
  border-radius: 40px;
}
#services,
#why,
.pillar {
  background: var(--obsidian);
}
.about-badge .num {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: block;
}
.about-badge .lbl,
.svc-num {
  font-family: var(--mono);
  font-weight: 700;
}
.about-badge .lbl {
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}
.about-pillars {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}
.pillar {
  padding: 20px;
  border: 1px solid rgba(30, 92, 58, 0.12);
  border-top: 3px solid var(--gold);
  transition: 0.3s;
  border-radius: 40px;
}
.pillar:hover {
  border-color: var(--gold);
  background: rgba(30, 92, 58, 0.04);
  box-shadow: 0 4px 20px rgba(30, 92, 58, 0.1);
}
.pillar-icon {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.pillar h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}
.pillar p {
  font-size: 0.78rem;
  color: var(--mist);
  line-height: 1.6;
}
#services,
#why {
  position: relative;
}
#services::before,
#testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
#services::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(30, 92, 58, 0.2),
    transparent
  );
}
.services-header {
  display: grid;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(30, 92, 58, 0.12);
  border: 1px solid rgba(30, 92, 58, 0.12);
}
.service-card {
  background: #fff;
  padding: clamp(28px, 3vw, 44px);
  position: relative;
  transition: background 0.3s;
  cursor: default;
}
.svc-desc,
.svc-icon,
.svc-title {
  transition: color 0.3s;
}
.service-card::after {
  position: absolute;
  left: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
#accounting-industries,
#accounting-services,
#audit-industries,
#audit-services,
#consulting-industries,
#consulting-services,
#contact,
#risk-industries,
#risk-services,
#structuring-industries,
#structuring-services,
#tax-industries,
#tax-services,
#testimonials,
.service-card:hover {
  background: var(--obsidian);
}
#cta-banner,
#why::before,
.industry-card:hover,
.testi-dot.active {
  background: var(--gold);
}
.service-card:hover::after {
  transform: scaleX(1);
}
.service-card:hover .svc-desc {
  color: var(--mist);
}
.service-card:hover .svc-num {
  color: rgba(30, 92, 58, 0.4);
}
.svc-num {
  font-size: 0.9rem;
  color: var(--gold-dim);
  margin-bottom: 24px;
  display: block;
}
.svc-icon {
  font-size: 1.5rem;
  margin-bottom: 20px;
  display: block;
  color: var(--gold);
}
.svc-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.svc-desc {
  font-size: 0.82rem;
  color: var(--mist);
  line-height: 1.75;
}
.svc-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.9rem;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 24px;
  opacity: 0;
  transform: translateX(-8px);
  transition: 0.3s;
  font-weight: 700;
}
.industries-header .section-label,
.testi-controls,
.testimonials-header .section-label {
  justify-content: center;
}
.ind-name,
.why-item-text h4 {
  font-family: var(--sans);
  font-weight: 700;
}
.service-card:hover .svc-arrow {
  opacity: 1;
  transform: translateX(0);
}
.industries-header {
  text-align: center;
  margin-bottom: 64px;
}
.industries-header .section-body {
  margin: 0 auto;
  text-align: center;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(30, 92, 58, 0.1);
  border: 1px solid rgba(30, 92, 58, 0.1);
}
.industry-card {
  background: #fff;
  padding: 32px 20px;
  text-align: center;
  transition: background 0.3s;
  cursor: default;
}
.industry-card:hover .ind-icon {
  color: #fff;
  transform: translateY(-4px);
}
.industry-card:hover .ind-name {
  color: #fff;
}
.ind-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  transition: 0.3s;
}
.ind-name {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--mist);
  text-transform: uppercase;
  transition: color 0.3s;
}
#why::before {
  position: absolute;
  left: 0;
}
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 40px;
}
.why-counter {
  position: absolute;
  top: -24px;
  right: -24px;
  background: var(--burgundy);
  padding: 28px;
  text-align: center;
  border-radius: 40px;
}
.why-counter .n {
  font-family: var(--serif);
  font-size: 2.8rem;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.insight-cat,
.insight-meta,
.why-counter .l {
  font-family: var(--mono);
  text-transform: uppercase;
}
.why-counter .l {
  font-size: 0.5rem;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.75);
  display: block;
  margin-top: 4px;
  font-weight: 700;
}
.why-features {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(30, 92, 58, 0.1);
  transition: padding 0.3s;
}
.why-item:first-child {
  border-top: 1px solid rgba(30, 92, 58, 0.1);
}
.why-item:hover {
  padding-left: 8px;
}
.why-icon {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(30, 92, 58, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--gold);
  transition: background 0.3s, border-color 0.3s;
}
.share-btn:hover,
.testi-btn:hover,
.why-item:hover .why-icon {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.why-item-text h4 {
  font-size: 0.78rem;
  color: var(--white);
  margin-bottom: 4px;
}
.why-item-text p {
  font-size: 0.8rem;
  color: var(--mist);
  line-height: 1.7;
}
.insights-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.insight-cat {
  color: var(--gold);
}
.insight-meta {
  letter-spacing: 0.2em;
  color: var(--steel);
}
#testimonials {
  position: relative;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}
.testi-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.filter-btn,
.share-btn,
.social-btn,
.testi-btn,
.testi-dot {
  transition: 0.3s;
}
.testi-card {
  min-width: calc(33.333% - 16px);
  background: #fff;
  border: 1px solid rgba(30, 92, 58, 0.1);
  border-top: 3px solid var(--gold);
  padding: 40px;
  position: relative;
}
.testi-quote {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--mist);
  line-height: 1.85;
  margin-bottom: 32px;
  font-style: italic;
}
.testi-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  display: block;
  margin-bottom: -16px;
}
.testi-stars {
  color: var(--burgundy);
  margin-bottom: 20px;
  font-size: 0.75rem;
  letter-spacing: 4px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid var(--gold);
}
.testi-name {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.testi-role {
  font-family: var(--mono);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--mist);
  text-transform: uppercase;
  font-weight: 700;
}
.testi-controls {
  display: flex;
  gap: 12px;
  margin-top: 48px;
}
.testi-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: none;
  cursor: pointer;
}
#scrollTop,
.testi-btn {
  width: 44px;
  height: 44px;
  cursor: pointer;
}
.contact-icon,
.testi-btn {
  border: 2px solid rgba(30, 92, 58, 0.25);
}
.testi-dot.active {
  transform: scale(1.4);
}
.testi-arrows {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.testi-btn {
  background: 0 0;
  color: var(--gold);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#cta-banner {
  position: relative;
}
.cta-geo {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cta-line-h {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-50%);
}
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-inner .section-label {
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
}
.cta-inner .section-label::before {
  background: rgba(255, 255, 255, 0.6);
  display: none;
}
.cta-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 600;
  color: #fff;
  max-width: 700px;
  margin: 0 auto 16px;
  line-height: 1.2;
}
.cta-title em {
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
  font-weight: 400;
}
.cta-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto 40px;
}
#contact {
  background: #fff;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}
.contact-info h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}
.contact-item-text small,
.form-group label,
.map-placeholder span {
  font-family: var(--mono);
  letter-spacing: 0.3em;
}
.contact-item-text small,
.footer-cert p,
.footer-col h5,
.form-group label,
.map-placeholder span {
  font-weight: 700;
  text-transform: uppercase;
}
.contact-info p {
  font-size: 0.9rem;
  color: var(--mist);
  line-height: 1.85;
  margin-bottom: 40px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(30, 92, 58, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--gold);
}
.contact-item-text small {
  font-size: 0.55rem;
  color: var(--steel);
  display: block;
  margin-bottom: 4px;
}
.contact-item-text span {
  font-size: 0.78rem;
  color: var(--silver);
}
.map-placeholder {
  margin-top: 40px;
  aspect-ratio: 16/7;
  background: rgba(30, 92, 58, 0.05);
  border: 2px solid rgba(30, 92, 58, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(30, 92, 58, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 92, 58, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
}
.footer-cert,
.social-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}
.map-placeholder span {
  font-size: 0.65rem;
  color: var(--gold-dim);
  position: relative;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.78rem;
  color: var(--mist);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: #fff;
  border: 1px solid rgba(30, 92, 58, 0.2);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--white);
  outline: 0;
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none;
}
.footer-bottom p,
.footer-cert p,
.footer-col h5,
.form-disclaimer {
  font-family: var(--mono);
}
.footer-col a,
.footer-legal a {
  transition: color 0.25s;
  text-decoration: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--steel);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(30, 92, 58, 0.1);
}
.form-group select option {
  background: #fff;
  color: var(--white);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-disclaimer {
  font-size: 0.78rem;
  color: var(--steel);
  letter-spacing: 0.05em;
}
footer {
  background: var(--white);
  border-top: 3px solid var(--gold);
  padding: clamp(60px, 8vw, 100px) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-bottom,
.footer-socials {
  gap: 12px;
  display: flex;
}
.footer-brand .nav-logo {
  display: inline-block;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 28px;
}
.footer-col a:hover,
.footer-col h5,
.footer-legal a:hover,
.social-btn:hover {
  color: var(--gold-light);
}
.social-btn {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.85rem;
}
.social-btn:hover {
  border-color: var(--gold-light);
}
.footer-col h5 {
  font-size: 0.9rem;
  letter-spacing: 0.35em;
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-cert {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 2px solid var(--gold-light);
  padding: 20px;
  text-align: center;
}
.footer-cert p {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.45);
  line-height: 2;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.3);
}
.filter-btn,
.footer-legal a {
  font-family: var(--mono);
  letter-spacing: 0.1em;
  font-weight: 700;
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}
#scrollTop {
  bottom: 32px;
  right: 32px;
  z-index: 500;
  background: var(--gold);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: 0.4s;
  border-radius: 40px;
}
#scrollTop.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
#scrollTop:hover {
  background: var(--gold-light);
}
#scrollTop svg {
  width: 18px;
  height: 18px;
  color: #fff;
}
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .about-grid,
  .contact-layout,
  .insights-grid,
  .services-header,
  .why-layout {
    grid-template-columns: 1fr;
  }
  .about-badge,
  .why-image-area {
    display: none;
  }
  .testi-card {
    min-width: calc(85vw);
  }
  .testi-track-wrap {
    overflow: hidden;
  }
}
@media (max-width: 768px) {
  .nav-cta,
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .about-pillars,
  .footer-grid,
  .form-row,
  .services-grid {
    grid-template-columns: 1fr;
  }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-stats {
    gap: 28px;
  }
  .insights-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
body,
html {
  overflow-x: hidden;
}
#blog-listing {
  background: #fff;
}
.blog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
  justify-content: center;
}
.filter-btn {
  background: 0 0;
  border: 2px solid var(--gold-dim);
  padding: 8px 20px;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--mist);
  cursor: pointer;
  border-radius: 40px;
}
.article-content h2,
.insight-title {
  color: var(--white);
  font-family: var(--serif);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.insight-excerpt {
  font-size: 0.85rem;
  color: var(--mist);
  line-height: 1.7;
  margin-bottom: 16px;
}
.load-more {
  text-align: center;
  margin-top: 48px;
}
.article-content,
.faq-section,
.privacy-content,
.terms-content {
  padding: 80px 0;
  background: #fff;
}
.article-content blockquote,
.author-bio {
  background: var(--obsidian);
  border-radius: 40px;
}
.article-container {
  margin: 0 auto;
  padding: 0 24px;
}
.article-content h2 {
  font-size: 1.8rem;
  margin: 40px 0 16px;
  font-weight: 500;
}
.article-content h3,
.privacy-content h3,
.terms-content h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--white);
  margin: 32px 0 12px;
  font-weight: 500;
}
.article-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--mist);
  margin-bottom: 24px;
}
.article-content blockquote {
  margin: 40px 0;
  padding: 24px 32px;
  border-left: 4px solid var(--gold);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--white);
}
.article-content figure {
  margin: 40px 0;
}
.article-content img {
  width: 100%;
  border-radius: 40px;
}
.article-content figcaption {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--steel);
  margin-top: 8px;
  text-align: center;
}
.author-bio {
  display: flex;
  gap: 24px;
  align-items: center;
  margin: 48px 0 32px;
  padding: 32px;
}
#accounting-approach,
#accounting-why,
#audit-approach,
#audit-why,
#consulting-approach,
#consulting-why,
#risk-approach,
#risk-why,
#structuring-approach,
#structuring-why,
#tax-approach,
#tax-why,
.insight-card {
  background: #fff;
}
.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--gold);
}
.author-info h4 {
  font-family: var(--sans);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.author-info p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--mist);
}
.share-links {
  display: flex;
  gap: 12px;
  margin: 40px 0;
  justify-content: center;
}
.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
}
.related-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.related-header h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--white);
}
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.insight-card {
  border: 1px solid rgba(30, 92, 58, 0.1);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: default;
}
.insight-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 16px 48px rgba(30, 92, 58, 0.12);
}
.insight-img {
  aspect-ratio: 16/9;
}
.insight-img img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s;
  display: block;
}
.insight-card:hover .insight-img img {
  transform: scale(1.05);
}
.insight-body {
  padding: 28px;
}
.insight-cat {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
  font-weight: 700;
}
.insight-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 12px;
}
.insight-meta {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--steel);
  text-transform: uppercase;
  font-weight: 700;
}
.approach-img {
  width: 100%;
  aspect-ratio: 5/4;
  border-radius: 40px;
}
.approach-badge {
  position: absolute;
  right: -20px;
  background: var(--burgundy);
  padding: 24px;
  border-radius: 40px;
}
.approach-badge .num {
  font-family: var(--serif);
  font-size: 2rem;
  color: #fff;
  line-height: 1;
}
.approach-badge .lbl {
  font-family: var(--mono);
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.2em;
}
.faq-container,
.terms-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.privacy-content h2,
.terms-content h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--white);
  margin: 48px 0 16px;
  font-weight: 500;
}
.privacy-content h2:first-of-type,
.terms-content h2:first-of-type {
  margin-top: 0;
}
.privacy-content p,
.terms-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--mist);
  margin-bottom: 20px;
}
.privacy-content ul,
.terms-content ul {
  margin: 20px 0 30px;
  padding-left: 40px;
  color: var(--mist);
}
.privacy-content li,
.terms-content li {
  margin-bottom: 8px;
}
.privacy-content hr,
.terms-content hr {
  margin: 40px 0;
  border: none;
  border-top: 1px solid rgba(30, 92, 58, 0.15);
}
.privacy-content .last-updated,
.terms-content .last-updated {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--steel);
  margin-bottom: 32px;
  display: block;
}
.privacy-container {
  max-width: 1200;
  margin: 0 auto;
  padding: 0 24px;
}
.faq-item {
  margin-bottom: 16px;
  border: 1px solid rgba(30, 92, 58, 0.15);
  border-radius: 40px;
  transition: box-shadow 0.3s;
}
.faq-item:hover {
  box-shadow: 0 4px 20px rgba(30, 92, 58, 0.1);
}
.faq-question {
  padding: 20px 28px;
  background: var(--obsidian);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  transition: background 0.3s;
}
.faq-question:hover {
  background: var(--graphite);
}
.faq-question .icon {
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.3s;
}
.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  padding: 0 28px;
  background: #fff;
  transition: max-height 0.4s, padding 0.3s;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 20px 28px;
}
.faq-answer p {
  margin-bottom: 0;
  color: var(--mist);
  line-height: 1.8;
}
.faq-answer a {
  color: var(--gold);
  text-decoration: underline;
}