/* ============================================================
   BEQIRI PROFESSIONAL CORPORATION — STYLES
   Editorial luxury aesthetic for modern accounting
   ============================================================ */

/* ---- 1. RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  font-feature-settings: "ss01", "ss02";
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* ---- 2. TOKENS ---- */
:root {
  --navy: #0F2942;
  --navy-2: #1B3A5C;
  --navy-deep: #081B2D;
  --gold: #B8862F;
  --gold-2: #9F7224;
  --gold-soft: #D4B570;
  --cream: #FAF7F2;
  --ivory: #F4EFE6;
  --ivory-2: #ECE3D2;
  --ink: #1A1F2E;
  --ink-soft: #4A5163;
  --gray: #6B6F76;
  --line: #E8DFD0;
  --line-soft: #F0E9DD;
  --white: #FFFFFF;

  --serif: 'Fraunces', 'Times New Roman', Georgia, serif;
  --sans: 'DM Sans', system-ui, -apple-system, sans-serif;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;

  --shadow-xs: 0 1px 2px rgba(15,41,66,0.04);
  --shadow-sm: 0 4px 12px rgba(15,41,66,0.06);
  --shadow-md: 0 12px 32px rgba(15,41,66,0.10);
  --shadow-lg: 0 24px 60px rgba(15,41,66,0.16);

  --container: 1240px;
  --container-narrow: 920px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---- 3. TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 144;
}
h1 { font-size: clamp(2.6rem, 6.2vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 36; }
h4 { font-size: 1.15rem; font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 24; }
h1 em, h2 em { font-style: italic; font-weight: 400; color: var(--gold); }
p { color: var(--ink-soft); font-size: 1.025rem; line-height: 1.75; }
.lede { font-size: 1.15rem; line-height: 1.7; color: var(--ink); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--gold);
  display: inline-block;
}

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

/* ---- 4. LAYOUT ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 28px; }
.section { padding: 110px 0; }
.section--sm { padding: 70px 0; }
.section--alt { background: var(--ivory); }
.section--ink { background: var(--navy); color: var(--cream); }
.section--deep { background: var(--navy-deep); color: var(--cream); }
.section--ink h1, .section--ink h2, .section--ink h3,
.section--deep h1, .section--deep h2, .section--deep h3 { color: var(--cream); }
.section--ink p, .section--deep p { color: rgba(250, 247, 242, 0.80); }
.section--ink .eyebrow, .section--deep .eyebrow { color: var(--gold-soft); }
.section--ink .eyebrow::before, .section--deep .eyebrow::before { background: var(--gold-soft); }

/* ---- 5. BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 17px 30px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: 4px;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  min-height: 50px;
}
.btn--primary {
  background: var(--navy); color: var(--cream);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--navy-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--gold {
  background: var(--gold); color: var(--cream);
}
.btn--gold:hover, .btn--gold:focus-visible {
  background: var(--gold-2);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent; color: var(--navy);
  border: 1px solid var(--navy);
}
.btn--outline:hover, .btn--outline:focus-visible {
  background: var(--navy); color: var(--cream);
}
.btn--ghost {
  background: transparent; color: var(--cream);
  border: 1px solid rgba(250, 247, 242, 0.32);
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  background: rgba(250, 247, 242, 0.08); border-color: var(--cream);
}
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: var(--cream); padding: 12px 18px;
  z-index: 9999; font-size: 0.9rem;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ---- 6. HEADER ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .3s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-xs); }
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  height: 84px;
}
.brand {
  display: inline-flex; align-items: center;
  transition: opacity .2s ease;
}
.brand:hover { opacity: 0.85; }
.brand__logo {
  height: 56px;
  width: auto;
  display: block;
  border-radius: 2px;
}
.site-footer .brand__logo { height: 60px; }
@media (max-width: 720px) {
  .brand__logo { height: 44px; }
}

.main-nav { display: flex; align-items: center; gap: 38px; }
.main-nav a {
  font-family: var(--sans);
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.main-nav a:hover, .main-nav a.is-active {
  color: var(--gold);
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--gold);
  transition: width .25s var(--ease);
}
.main-nav a:hover::after, .main-nav a.is-active::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 14px; }
.phone-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.93rem;
  color: var(--navy);
  transition: color .2s ease;
}
.phone-link:hover { color: var(--gold); }
.phone-link svg { width: 16px; height: 16px; }

.nav-toggle {
  display: none; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 4px;
}
.nav-toggle:hover { background: var(--ivory); }
.nav-toggle svg { width: 24px; height: 24px; color: var(--navy); }

/* ---- 7. HERO (homepage) ---- */
.hero {
  position: relative;
  padding: 90px 0 130px;
  overflow: hidden;
  background: var(--cream);
}
.hero::before {
  content: "";
  position: absolute; right: -200px; top: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184, 134, 47, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 25%, var(--line) 75%, transparent);
}
.hero__grid {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 80px; align-items: center;
}
.hero__copy { position: relative; z-index: 2; }
.hero__title {
  font-size: clamp(2.6rem, 6.5vw, 5.6rem);
  margin-bottom: 28px;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
  display: inline-block;
  font-variation-settings: "SOFT" 50, "WONK" 1, "opsz" 144;
}
.hero__lede {
  font-size: 1.15rem; max-width: 540px;
  color: var(--ink); margin-bottom: 36px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 50px; }
.hero__meta {
  display: flex; gap: 36px;
  padding-top: 28px; border-top: 1px solid var(--line);
}
.hero__meta-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.hero__meta-item span {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
}

.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 640px;
}
.hero__img-main {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1deg);
}
.hero__img-main img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.02) saturate(0.95);
}
.hero__img-accent {
  position: absolute;
  width: 56%; aspect-ratio: 1 / 1.2;
  bottom: -40px; left: -32px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--cream);
  transform: rotate(2deg);
  z-index: 2;
}
.hero__img-accent img { width: 100%; height: 100%; object-fit: cover; }

.hero__quote-card {
  position: absolute;
  top: 50px; right: -40px;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 22px 26px;
  max-width: 240px;
  box-shadow: var(--shadow-md);
  border-radius: 4px;
  z-index: 3;
}
.hero__quote-card .stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 3px; margin-bottom: 8px; }
.hero__quote-card p { font-family: var(--serif); font-style: italic; font-size: 1rem; line-height: 1.5; color: var(--ink); margin: 0; }
.hero__quote-card cite { display: block; margin-top: 10px; font-style: normal; font-size: 0.78rem; color: var(--gray); letter-spacing: 0.05em; }

/* ---- 8. PAGE HEADER (inner pages) ---- */
.page-header {
  background: var(--navy);
  color: var(--cream);
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute; right: -150px; top: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184, 134, 47, 0.18) 0%, transparent 65%);
}
.page-header::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(8, 27, 45, 0.6));
  pointer-events: none;
}
.page-header__inner { position: relative; z-index: 2; max-width: 760px; }
.page-header h1 {
  color: var(--cream);
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  margin-bottom: 20px;
}
.page-header h1 em { color: var(--gold-soft); font-style: italic; }
.page-header p { color: rgba(250, 247, 242, 0.80); font-size: 1.1rem; max-width: 560px; }
.breadcrumb {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 24px;
}
.breadcrumb a { color: rgba(250, 247, 242, 0.7); transition: color .2s ease; }
.breadcrumb a:hover { color: var(--gold-soft); }
.breadcrumb svg { width: 12px; height: 12px; opacity: 0.4; }

/* ---- 9. TRUST STRIP ---- */
.trust-strip {
  background: var(--cream);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 32px 0;
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}
.trust-pill {
  display: flex; align-items: center; gap: 14px;
  padding: 4px 0;
}
.trust-pill__icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ivory);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-pill__icon svg { width: 20px; height: 20px; }
.trust-pill strong {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.2;
}
.trust-pill span {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.3;
}

/* ---- 10. SECTION INTRO ---- */
.section__head {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 60px; margin-bottom: 70px; align-items: end;
}
.section__head h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.section__head--centered {
  display: block;
  max-width: 720px; margin: 0 auto 70px;
  text-align: center;
}
.section__head--centered .eyebrow { justify-content: center; display: inline-flex; }

/* ---- 11. SERVICES GRID ---- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service {
  padding: 44px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
  position: relative;
  transition: background .3s var(--ease);
  display: flex; flex-direction: column;
}
.service:hover { background: var(--ivory); }
.service__num {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 500;
}
.service__icon {
  width: 56px; height: 56px;
  margin-bottom: 28px;
  color: var(--navy);
  transition: color .3s var(--ease);
}
.service__icon svg { width: 100%; height: 100%; }
.service:hover .service__icon { color: var(--gold); }
.service h3 {
  margin-bottom: 14px;
  font-size: 1.6rem;
}
.service p {
  font-size: 0.96rem;
  margin-bottom: 24px;
  flex: 1;
}
.service__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--navy);
  text-transform: uppercase;
  transition: color .2s ease, gap .25s var(--ease);
}
.service__link:hover { color: var(--gold); gap: 14px; }

/* ---- 12. EDITORIAL SPLIT (about preview / why us) ---- */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.editorial--reverse .editorial__media { order: 2; }
.editorial__media {
  position: relative;
  aspect-ratio: 5 / 6;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.editorial__media img { width: 100%; height: 100%; object-fit: cover; }
.editorial__media-tag {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--cream);
  padding: 14px 20px;
  border-radius: 4px;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--navy);
}
.editorial h2 { margin-bottom: 24px; }
.editorial__list {
  list-style: none; margin: 30px 0;
}
.editorial__list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  color: var(--ink);
}
.editorial__list li:last-child { border-bottom: 0; }
.editorial__list svg {
  width: 20px; height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ---- 13. PROCESS ---- */
.process__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
  position: relative;
}
.process__timeline::before {
  content: "";
  position: absolute;
  left: 7%; right: 7%; top: 30px;
  height: 1px;
  background: rgba(212, 181, 112, 0.4);
}
.step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.step__bullet {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--navy-deep);
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
}
.step h3 {
  color: var(--cream);
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.step p { color: rgba(250, 247, 242, 0.78); font-size: 0.96rem; line-height: 1.65; }

/* ---- 14. INDUSTRIES ---- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.industry {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 36px 30px;
  border-radius: 6px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.industry:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.industry__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ivory-2);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.industry__icon svg { width: 22px; height: 22px; }
.industry h4 {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1.1rem;
  font-family: var(--serif);
  font-variation-settings: "SOFT" 50, "opsz" 24;
}
.industry p { font-size: 0.9rem; color: var(--ink-soft); margin: 0; line-height: 1.55; }

/* ---- 15. STATS BAND ---- */
.stats-band {
  padding: 90px 0;
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: "";
  position: absolute; left: -150px; bottom: -150px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(184, 134, 47, 0.16) 0%, transparent 70%);
}
.stats-band__head {
  text-align: center;
  margin-bottom: 60px;
  position: relative; z-index: 2;
}
.stats-band__head h2 { color: var(--cream); }
.stats-band__head h2 em { color: var(--gold-soft); }
.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative; z-index: 2;
  text-align: center;
}
.stat__num {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: 12px;
  font-variation-settings: "SOFT" 50, "opsz" 144;
}
.stat__num em { font-style: italic; }
.stat__label {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.78);
}

/* ---- 16. TESTIMONIALS ---- */
.testimonials {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial {
  background: var(--cream);
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: 4px;
  position: relative;
  display: flex; flex-direction: column;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: 14px; right: 22px;
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
}
.testimonial__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 4px;
  margin-bottom: 18px;
}
.testimonial__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 24px;
  flex: 1;
}
.testimonial__author {
  display: flex; gap: 12px; align-items: center;
  padding-top: 20px; border-top: 1px solid var(--line);
}
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ivory-2);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
}
.testimonial__name { display: block; font-weight: 600; color: var(--navy); font-size: 0.96rem; }
.testimonial__role { font-size: 0.82rem; color: var(--gray); }

/* ---- 17. FAQ ---- */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 26px 4px;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--navy);
  transition: color .2s ease;
  font-variation-settings: "SOFT" 50, "opsz" 36;
}
.faq__q:hover { color: var(--gold); }
.faq__icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  position: relative;
  transition: transform .3s var(--ease);
}
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute;
  background: currentColor;
  transition: transform .3s var(--ease);
}
.faq__icon::before { top: 11px; left: 0; right: 0; height: 1.5px; }
.faq__icon::after { left: 11px; top: 0; bottom: 0; width: 1.5px; }
.faq__item.is-open .faq__icon::after { transform: scaleY(0); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease), padding .35s var(--ease);
  padding: 0 4px;
}
.faq__item.is-open .faq__a {
  max-height: 320px;
  padding: 0 4px 26px;
}
.faq__a p { color: var(--ink-soft); font-size: 1rem; line-height: 1.75; }

/* ---- 18. CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--cream);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  right: -100px; top: 50%;
  transform: translateY(-50%);
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(212, 181, 112, 0.15) 0%, transparent 70%);
}
.cta-banner__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px; align-items: center;
  position: relative; z-index: 2;
}
.cta-banner h2 {
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 18px;
}
.cta-banner h2 em { color: var(--gold-soft); }
.cta-banner p { color: rgba(250, 247, 242, 0.82); font-size: 1.1rem; max-width: 540px; margin: 0; }
.cta-banner__buttons {
  display: flex; flex-direction: column; gap: 12px;
  align-items: flex-start;
}

/* ---- 19. FORM ---- */
.form {
  background: var(--cream);
  padding: 56px 50px;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field {
  display: flex; flex-direction: column;
  margin-bottom: 18px;
}
.field label {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
  font-weight: 500;
}
.field label .req { color: var(--gold); }
.field input, .field textarea, .field select {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 14px 16px;
  border-radius: 4px;
  font-size: 0.98rem;
  color: var(--ink);
  font-family: var(--sans);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15, 41, 66, 0.1);
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.5; }
.form__submit { margin-top: 12px; }
.form__note {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 18px;
  text-align: center;
}

/* ---- 20. CONTACT BLOCK ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}
.contact-info {
  display: flex; flex-direction: column; gap: 28px;
}
.contact-card {
  display: flex; gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.contact-card:last-child { border-bottom: 0; }
.contact-card__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card__icon svg { width: 18px; height: 18px; }
.contact-card h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 500;
}
.contact-card a, .contact-card p {
  font-family: var(--serif);
  font-size: 1.18rem;
  color: var(--navy);
  font-variation-settings: "SOFT" 50, "opsz" 24;
  line-height: 1.4;
  margin: 0;
}
.contact-card a:hover { color: var(--gold); }

.map-frame {
  border-radius: 6px; overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 40px;
  box-shadow: var(--shadow-sm);
}

/* ---- 21. SERVICE DETAIL (services page) ---- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px; align-items: center;
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}
.service-detail--reverse .service-detail__media { order: 2; }
.service-detail:last-child { border-bottom: 0; }
.service-detail__media {
  aspect-ratio: 4 / 5;
  border-radius: 6px; overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}
.service-detail__media img { width: 100%; height: 100%; object-fit: cover; }
.service-detail__media-num {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--cream);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.service-detail h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  margin-bottom: 20px;
}
.service-detail__list {
  list-style: none;
  margin: 28px 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px;
}
.service-detail__list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.96rem; color: var(--ink); padding: 6px 0;
}
.service-detail__list svg {
  width: 16px; height: 16px;
  color: var(--gold); flex-shrink: 0; margin-top: 5px;
}

/* ---- 22. VALUES (about page) ---- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value {
  padding: 38px 32px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  text-align: left;
  position: relative;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.value:hover { transform: translateY(-3px); border-color: var(--gold); }
.value__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 18px;
  font-variation-settings: "SOFT" 50, "WONK" 1, "opsz" 144;
}
.value h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}
.value p { font-size: 0.96rem; margin: 0; }

/* ---- 23. EXPERTISE BARS (about) ---- */
.expertise {
  display: flex; flex-direction: column; gap: 24px;
  margin-top: 32px;
}
.expertise__item h4 {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--sans);
  font-size: 0.95rem; font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
}
.expertise__item h4 span {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
}
.expertise__bar {
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.expertise__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  border-radius: 2px;
  width: 0;
  transition: width 1.4s var(--ease);
}
.expertise__item.is-visible .expertise__fill { width: var(--w, 90%); }

/* ---- 23b. FOUNDER PROFILE ---- */
.founder {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.founder__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
}
.founder__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.02) saturate(0.97);
}
.founder__media-tag {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--cream);
  padding: 14px 20px;
  border-radius: 4px;
  display: flex; align-items: center; gap: 12px;
}
.founder__media-tag-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-soft);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic;
  font-size: 1rem;
  flex-shrink: 0;
}
.founder__media-tag strong { display: block; color: var(--navy); font-size: 0.92rem; line-height: 1.2; font-family: var(--sans); font-weight: 600; }
.founder__media-tag span { font-size: 0.78rem; color: var(--gray); letter-spacing: 0.06em; }

.founder h2 { margin-bottom: 16px; }
.founder__credentials {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.founder__credentials::before {
  content: ""; width: 28px; height: 1px; background: var(--gold);
}
.founder__role {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.founder__cta {
  display: flex; gap: 14px; flex-wrap: wrap; margin-top: 14px; align-items: center;
}
.linkedin-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  transition: border-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.linkedin-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}
.linkedin-pill svg {
  width: 18px; height: 18px;
}
@media (max-width: 1100px) {
  .founder { grid-template-columns: 1fr; gap: 50px; }
}

/* ---- 24b. FOOTER SOCIALS ---- */
.footer__socials {
  display: flex; gap: 10px;
  margin-top: 22px;
}
.footer__socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(250, 247, 242, 0.06);
  border: 1px solid rgba(250, 247, 242, 0.10);
  display: flex; align-items: center; justify-content: center;
  color: rgba(250, 247, 242, 0.78);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.footer__socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--cream);
}
.footer__socials svg { width: 16px; height: 16px; }

/* ---- 24. FOOTER ---- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(250, 247, 242, 0.78);
  padding: 80px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer__brand .brand { margin-bottom: 6px; }
.footer__brand p {
  color: rgba(250, 247, 242, 0.68);
  margin-top: 20px; font-size: 0.95rem;
  max-width: 320px;
}
.footer__col h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 24px;
  font-weight: 500;
}
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 12px; }
.footer__col a {
  color: rgba(250, 247, 242, 0.72);
  font-size: 0.96rem;
  transition: color .2s ease;
}
.footer__col a:hover { color: var(--gold-soft); }
.footer__contact li {
  display: flex; align-items: flex-start; gap: 12px;
}
.footer__contact svg {
  width: 16px; height: 16px;
  color: var(--gold);
  flex-shrink: 0; margin-top: 3px;
}
.footer__bottom {
  border-top: 1px solid rgba(250, 247, 242, 0.08);
  padding: 26px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 0.84rem;
  color: rgba(250, 247, 242, 0.5);
}
.footer__bottom a { color: rgba(250, 247, 242, 0.7); }
.footer__bottom a:hover { color: var(--gold-soft); }

/* ---- 25. ANIMATIONS ---- */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
  opacity: 1; transform: translateY(0);
}

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.is-visible > *:nth-child(2) { transition-delay: 0.13s; }
.stagger.is-visible > *:nth-child(3) { transition-delay: 0.21s; }
.stagger.is-visible > *:nth-child(4) { transition-delay: 0.29s; }
.stagger.is-visible > *:nth-child(5) { transition-delay: 0.37s; }
.stagger.is-visible > *:nth-child(6) { transition-delay: 0.45s; }

/* Focus visible */
a:focus-visible, button:focus-visible, .btn:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---- 26. RESPONSIVE ---- */
@media (max-width: 1100px) {
  .hero__grid, .editorial, .contact-grid, .service-detail { grid-template-columns: 1fr; gap: 60px; }
  .editorial--reverse .editorial__media, .service-detail--reverse .service-detail__media { order: -1; }
  .section__head { grid-template-columns: 1fr; gap: 24px; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .industries-grid, .values-grid, .testimonials { grid-template-columns: repeat(2, 1fr); }
  .stats-band__grid, .trust-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process__timeline { grid-template-columns: repeat(2, 1fr); gap: 50px 20px; }
  .process__timeline::before { display: none; }
  .cta-banner__inner { grid-template-columns: 1fr; }
  .cta-banner__buttons { flex-direction: row; }
  .hero__quote-card { display: none; }
}
@media (max-width: 720px) {
  .section { padding: 70px 0; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.is-open {
    display: flex; flex-direction: column;
    position: fixed; top: 84px; left: 0; right: 0;
    background: var(--cream);
    padding: 24px 28px;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    align-items: stretch;
  }
  .main-nav.is-open a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 1.05rem;
  }
  .main-nav.is-open a::after { display: none; }
  .header-cta .phone-link { display: none; }
  .services { grid-template-columns: 1fr; }
  .industries-grid, .values-grid, .testimonials { grid-template-columns: 1fr; }
  .stats-band__grid, .trust-strip__grid { grid-template-columns: 1fr; gap: 20px; }
  .footer__grid { grid-template-columns: 1fr; }
  .form { padding: 36px 26px; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .service-detail__list { grid-template-columns: 1fr; }
  .hero__visual { aspect-ratio: 1 / 1.1; max-height: none; }
  .hero__img-accent { width: 50%; left: -16px; bottom: -24px; }
  .hero__meta { flex-direction: column; gap: 18px; }
  .editorial { gap: 40px; }
  .cta-banner__buttons { flex-direction: column; align-items: stretch; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .stagger > * { opacity: 1; transform: none; }
}

/* Print */
@media print {
  .site-header, .site-footer, .cta-banner, .nav-toggle { display: none; }
  body { background: white; color: black; }
}
