:root {
  --home-burgundy: #922c43;
  --home-burgundy-dark: #6f1f31;
  --home-burgundy-light: #d7a3af;
  --home-navy: #173451;
  --home-navy-dark: #10263c;
  --home-blue: #dce8f2;
  --home-cream: #f4eee6;
  --home-gold: #c79a45;
  --home-gold-light: #ead7ae;
  --home-ink: #171719;
  --home-muted: #68686d;
  --home-line: rgba(23, 23, 25, .1);
  --home-white: #ffffff;
  --home-shell: 1180px;
  --home-shell-wide: 1380px;
}

.rouge-home {
  background: var(--home-white);
  color: var(--home-ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.rouge-home .page-wrapper {
  overflow: clip;
}

.rouge-home a {
  text-decoration: none;
}

.rouge-home .home-main {
  overflow: hidden;
}

.rouge-home .home-shell,
.rouge-home .home-shell-wide {
  width: min(calc(100% - 48px), var(--home-shell));
  margin: 0 auto;
}

.rouge-home .home-shell-wide {
  width: min(calc(100% - 32px), var(--home-shell-wide));
}

.rouge-home .home-eyebrow {
  margin: 0 0 18px;
  color: var(--home-burgundy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.rouge-home .home-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.rouge-home .home-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 650;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.rouge-home .home-button:hover {
  transform: translateY(-2px);
}

.rouge-home .home-button-primary {
  background: var(--home-burgundy);
  color: #fff;
  box-shadow: 0 14px 30px rgba(146, 44, 67, .18);
}

.rouge-home .home-button-primary:hover {
  background: var(--home-burgundy-dark);
  color: #fff;
}

.rouge-home .home-button-secondary,
.rouge-home .home-button-light {
  background: #fff;
  border-color: var(--home-line);
  color: var(--home-ink);
}

.rouge-home .home-button-secondary:hover,
.rouge-home .home-button-light:hover {
  background: #f8f8f9;
  color: var(--home-ink);
}

.rouge-home .home-button-dark {
  background: var(--home-ink);
  color: #fff;
}

.rouge-home .home-button-dark:hover {
  background: #000;
  color: #fff;
}

.rouge-home .home-button-outline-dark {
  border-color: rgba(23, 23, 25, .22);
  color: var(--home-ink);
}

.rouge-home .home-button-outline-dark:hover {
  background: rgba(23, 23, 25, .06);
  color: var(--home-ink);
}

.rouge-home .home-text-link {
  color: var(--home-ink);
  font-size: 15px;
  font-weight: 650;
}

.rouge-home .home-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.rouge-home .home-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero */

.rouge-home .home-hero {
  position: relative;
  overflow: hidden;
  background: #000;
  color: #fff;
}

.rouge-home .home-hero::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -290px;
  width: 760px;
  height: 500px;
  border-radius: 50%;
  background: rgba(146, 44, 67, .23);
  filter: blur(110px);
  transform: translateX(-50%);
  pointer-events: none;
}

.rouge-home .home-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 86px 0 58px;
  text-align: center;
}

.rouge-home .home-hero-copy {
  width: min(100%, 850px);
}

.rouge-home .home-hero-kicker {
  margin: 0 0 16px;
  color: #b9b9bf;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.rouge-home .home-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(52px, 5vw, 76px);
  font-weight: 650;
  letter-spacing: -.055em;
  line-height: .98;
}

.rouge-home .home-hero-tagline {
  margin: 18px 0 0;
  color: #f4f4f6;
  font-size: clamp(24px, 2.25vw, 34px);
  font-weight: 430;
  letter-spacing: -.035em;
  line-height: 1.15;
}

.rouge-home .home-lead {
  max-width: 760px;
  margin: 22px auto 0;
  color: #9e9ea5;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.6;
  letter-spacing: -.012em;
}

.rouge-home .home-hero-actions {
  justify-content: center;
  margin-top: 26px;
}

.rouge-home .home-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  color: #4aa3ff;
  font-size: 16px;
  font-weight: 550;
  transition: color .2s ease;
}

.rouge-home .home-hero-link:hover {
  color: #78bbff;
}

.rouge-home .home-hero-link span {
  font-size: 24px;
  line-height: 1;
}

.rouge-home .home-hero-services {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
  background: rgba(255, 255, 255, .1);
}

.rouge-home .home-hero-services a {
  min-width: 0;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 20px;
  background: rgba(15, 15, 17, .94);
  color: #fff;
  text-align: left;
  transition: background .2s ease;
}

.rouge-home .home-hero-services a:hover {
  background: #171719;
}

.rouge-home .home-service-dot {
  width: 9px;
  height: 9px;
  margin-bottom: 13px;
  border-radius: 50%;
}

.rouge-home .home-service-dot-blue {
  background: #7fa9d2;
}

.rouge-home .home-service-dot-burgundy {
  background: #b34761;
}

.rouge-home .home-service-dot-cream {
  background: #e7d7c5;
}

.rouge-home .home-service-dot-gold {
  background: #d2aa5d;
}

.rouge-home .home-service-dot-navy {
  background: #466b8f;
}

.rouge-home .home-hero-services strong,
.rouge-home .home-hero-services small {
  display: block;
}

.rouge-home .home-hero-services strong {
  color: #f6f6f7;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -.015em;
}

.rouge-home .home-hero-services small {
  margin-top: 4px;
  color: #77777f;
  font-size: 11px;
  line-height: 1.35;
}

.rouge-home .home-hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 26px;
  margin-top: 18px;
  color: #74747b;
  font-size: 11px;
}

.rouge-home .home-hero-proof strong {
  color: #a9a9af;
  font-weight: 650;
}

/* Brand promise */

.rouge-home .home-promises {
  padding: 28px 0 112px;
  background: #fff;
}

.rouge-home .home-promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.rouge-home .home-promise {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  padding: 42px 40px;
  border-radius: 34px;
  transition: transform .28s ease, box-shadow .28s ease;
}

.rouge-home .home-promise:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 58px rgba(23, 23, 25, .12);
}

.rouge-home .home-promise p {
  margin: 0 0 26px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
  opacity: .68;
}

.rouge-home .home-promise h2 {
  margin: 0;
  font-size: clamp(38px, 3.5vw, 57px);
  font-weight: 720;
  letter-spacing: -.035em;
  line-height: 1.10;
}

.rouge-home .home-promise span {
  max-width: 360px;
  margin-top: auto;
  font-size: 16px;
  line-height: 1.5;
  opacity: .8;
}

.rouge-home .home-promise-burgundy {
  background: var(--home-burgundy);
  color: #fff;
}

.rouge-home .home-promise-navy {
  background: #c8a45a;
  color: #171719;
}

.rouge-home .home-promise-cream {
  background: #5f7d67;
  color: #fff;
}

/* Service overview */

.rouge-home .home-overview {
  padding: 126px 0;
  background: #f7f7f8;
}

.rouge-home .home-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
  gap: 90px;
  align-items: start;
}

.rouge-home .home-overview-copy h2,
.rouge-home .home-section-heading h2,
.rouge-home .home-experience-copy h2,
.rouge-home .home-bundle-heading h2,
.rouge-home .home-review-heading h2,
.rouge-home .home-local-copy h2,
.rouge-home .home-final h2 {
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(42px, 4.1vw, 66px);
  font-weight: 720;
  letter-spacing: -.035em;
  line-height: 1.10;
  text-wrap: balance;
}

.rouge-home .home-overview-copy > p:not(.home-eyebrow) {
  margin: 24px 0 0;
  color: var(--home-muted);
  font-size: 17px;
  line-height: 1.7;
}

.rouge-home .home-overview-links {
  border-top: 1px solid var(--home-line);
}

.rouge-home .home-overview-links a {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--home-line);
  color: var(--home-ink);
  transition: padding .2s ease, color .2s ease;
}

.rouge-home .home-overview-links a:hover {
  padding-left: 10px;
  color: var(--home-burgundy);
}

.rouge-home .home-overview-links strong,
.rouge-home .home-overview-links small {
  display: block;
}

.rouge-home .home-overview-links strong {
  font-size: 20px;
  letter-spacing: -.025em;
}

.rouge-home .home-overview-links small {
  margin-top: 4px;
  color: #8a8a90;
  font-size: 13px;
}

.rouge-home .home-overview-links i {
  font-style: normal;
  font-size: 22px;
}

/* Mobile office */

.rouge-home .home-mobile-office {
  padding: 132px 0;
  background: #f4eee6;
}

.rouge-home .home-mobile-office-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  gap: 88px;
  align-items: center;
}

.rouge-home .home-mobile-office-copy h2 {
  margin: 0;
  max-width: 640px;
  color: var(--home-ink);
  font-size: clamp(42px, 4.1vw, 66px);
  font-weight: 720;
  letter-spacing: -.035em;
  line-height: 1.10;
  text-wrap: balance;
}

.rouge-home .home-mobile-office-copy > p:not(.home-eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: #635c55;
  font-size: 18px;
  line-height: 1.68;
}

.rouge-home .home-mobile-office-copy .home-mobile-office-note {
  max-width: 580px;
  color: #857b72;
  font-size: 13px;
}

.rouge-home .home-mobile-office-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 26px;
  color: var(--home-burgundy);
}

.rouge-home .home-office-console {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 34px;
  background: #111113;
  color: #fff;
  box-shadow: 0 34px 90px rgba(34, 27, 23, .18);
}

.rouge-home .home-office-console::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(146, 44, 67, .26);
  filter: blur(54px);
  pointer-events: none;
}

.rouge-home .home-office-console-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: #a3a3aa;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rouge-home .home-office-console-top strong {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: #f1d6dc;
  font-size: 9px;
  letter-spacing: .1em;
}

.rouge-home .home-office-console-title {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 34px 0 28px;
  color: #fff;
  font-size: clamp(34px, 3.4vw, 54px);
  font-weight: 650;
  letter-spacing: -.05em;
  line-height: 1;
}

.rouge-home .home-office-console-list {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.rouge-home .home-office-console-list > div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 22px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  transition: padding .2s ease, background .2s ease;
}

.rouge-home .home-office-console-list > div:hover {
  padding-left: 10px;
}

.rouge-home .home-office-console-list span {
  color: #f0cad2;
  font-size: 13px;
  font-weight: 700;
}

.rouge-home .home-office-console-list p {
  margin: 0;
  color: #a7a7ad;
  font-size: 14px;
  line-height: 1.5;
}

/* Services */

.rouge-home .home-services {
  padding: 132px 0;
  background: #fff;
}

.rouge-home .home-section-heading {
  margin-bottom: 54px;
}

.rouge-home .home-section-heading > p:not(.home-eyebrow) {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--home-muted);
  font-size: 18px;
  line-height: 1.55;
}

.rouge-home .home-service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.rouge-home .home-service-tile {
  position: relative;
  min-height: 560px;
  grid-column: span 3;
  overflow: hidden;
  border-radius: 34px;
  padding: 46px;
  color: var(--home-ink);
  transition: transform .26s ease, box-shadow .26s ease;
}

.rouge-home .home-service-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 70px rgba(23, 23, 25, .13);
}

.rouge-home .home-service-small {
  min-height: 440px;
  grid-column: span 2;
}

.rouge-home .home-service-copy {
  position: relative;
  z-index: 2;
  max-width: 540px;
}

.rouge-home .home-service-copy span {
  display: block;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  opacity: .66;
}


.rouge-home .home-service-copy h3 {
  margin: 0;
  font-size: clamp(34px, 3.2vw, 52px);
  font-weight: 720;
  letter-spacing: -.05em;
  line-height: 1;
  text-wrap: balance;
}

.rouge-home .home-service-copy p {
  max-width: 480px;
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.55;
  opacity: .76;
}

.rouge-home .home-service-copy strong {
  display: inline-block;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 700;
}

.rouge-home .home-service-estate {
  background: var(--home-burgundy);
  color: #fff;
}

.rouge-home .home-service-estate img {
  position: absolute;
  right: -3%;
  bottom: -4%;
  width: min(56%, 450px);
  max-height: 72%;
  object-fit: contain;
  object-position: right bottom;
  filter: grayscale(1);
  transition: transform .45s cubic-bezier(.2, .8, .2, 1);
}

.rouge-home .home-service-estate:hover img {
  transform: scale(1.035);
}

.rouge-home .home-service-tax {
  background: var(--home-navy);
  color: #fff;
}

.rouge-home .home-tax-graphic {
  position: absolute;
  right: 38px;
  bottom: 26px;
  width: 46%;
  min-width: 260px;
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .14);
}

.rouge-home .home-tax-graphic b {
  display: block;
  color: var(--home-gold-light);
  font-size: clamp(80px, 10vw, 150px);
  font-weight: 720;
  line-height: .8;
  letter-spacing: -.08em;
}

.rouge-home .home-tax-graphic i {
  display: block;
  width: 100%;
  height: 6px;
  margin-top: 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .25);
}

.rouge-home .home-tax-graphic i:nth-of-type(2) {
  width: 76%;
}

.rouge-home .home-tax-graphic i:nth-of-type(3) {
  width: 52%;
}

.rouge-home .home-service-succession {
  background: var(--home-cream);
}

.rouge-home .home-service-property {
  background: var(--home-gold-light);
  color: #342a1b;
}

.rouge-home .home-service-notary {
  background: var(--home-blue);
  color: var(--home-navy-dark);
}

/* Tax services */

.rouge-home .home-tax-focus {
  padding: 126px 0;
  background: var(--home-navy-dark);
  color: #fff;
}

.rouge-home .home-tax-focus .home-eyebrow {
  color: var(--home-gold-light);
}

.rouge-home .home-tax-focus-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  gap: 80px;
  align-items: end;
}

.rouge-home .home-tax-focus-head h2 {
  margin: 0;
  max-width: 760px;
  color: #fff;
  font-size: clamp(42px, 4.1vw, 66px);
  font-weight: 720;
  letter-spacing: -.035em;
  line-height: 1.10;
  text-wrap: balance;
}

.rouge-home .home-tax-focus-head > p {
  margin: 0 0 4px;
  color: #c8d1da;
  font-size: 17px;
  line-height: 1.65;
}

.rouge-home .home-tax-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 54px;
}

.rouge-home .home-tax-focus-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 30px;
  background: rgba(255, 255, 255, .055);
  transition: transform .24s ease, background .24s ease, border-color .24s ease;
}

.rouge-home .home-tax-focus-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(234, 215, 174, .35);
}

.rouge-home .home-tax-focus-card > span {
  margin-bottom: auto;
  color: var(--home-gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.rouge-home .home-tax-focus-card h3 {
  margin: 48px 0 0;
  color: #fff;
  font-size: clamp(29px, 2.4vw, 39px);
  font-weight: 650;
  letter-spacing: -.045em;
  line-height: 1.05;
}

.rouge-home .home-tax-focus-card p {
  margin: 16px 0 0;
  color: #aebbc7;
  font-size: 15px;
  line-height: 1.55;
}

.rouge-home .home-tax-focus-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  color: #8698a8;
  font-size: 13px;
}

.rouge-home .home-tax-focus-footer a {
  color: var(--home-gold-light);
  font-weight: 700;
}

/* Bundles */

.rouge-home .home-bundles {
  padding: 128px 0;
  background: #f7f7f8;
}

.rouge-home .home-bundle-heading,
.rouge-home .home-review-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 48px;
}

.rouge-home .home-bundle-heading > a {
  flex: none;
  padding-bottom: 8px;
  color: var(--home-burgundy);
  font-size: 15px;
  font-weight: 700;
}

.rouge-home .home-bundle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.rouge-home .home-bundle {
  position: relative;
  min-height: 650px;
  display: block;
  overflow: hidden;
  border-radius: 36px;
  padding: 52px;
  color: var(--home-ink);
  transition: transform .26s ease, box-shadow .26s ease;
}

.rouge-home .home-bundle:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 72px rgba(23, 23, 25, .14);
}

.rouge-home .home-bundle-single {
  background: #fff;
}

.rouge-home .home-bundle-couple {
  background: var(--home-burgundy);
  color: #fff;
}

.rouge-home .home-bundle > div {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.rouge-home .home-bundle span {
  display: block;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  opacity: .65;
}

.rouge-home .home-bundle h3 {
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 720;
  letter-spacing: -.055em;
  line-height: 1;
}

.rouge-home .home-bundle p {
  max-width: 480px;
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.5;
  opacity: .74;
}

.rouge-home .home-bundle strong {
  display: block;
  margin-top: 22px;
  font-size: 31px;
  font-weight: 720;
  letter-spacing: -.04em;
}

.rouge-home .home-bundle strong small {
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0;
  opacity: .62;
}

.rouge-home .home-bundle img {
  position: absolute;
  left: 50%;
  bottom: -1%;
  width: 70%;
  max-height: 61%;
  transform: translateX(-50%);
  object-fit: contain;
  object-position: center bottom;
  filter: grayscale(1);
  transition: transform .42s cubic-bezier(.2, .8, .2, 1);
}

.rouge-home .home-bundle:hover img {
  transform: translateX(-50%) scale(1.025);
}

/* Reviews */

.rouge-home .home-reviews {
  padding: 132px 0;
  background: #fff;
}

.rouge-home .home-review-controls {
  display: flex;
  gap: 8px;
}

.rouge-home .home-review-controls button {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #f1f1f3;
  color: var(--home-ink);
  font-size: 20px;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.rouge-home .home-review-controls button:hover {
  background: #e8e8eb;
  transform: translateY(-1px);
}

.rouge-home .home-review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(390px, 31vw);
  gap: 14px;
  overflow-x: auto;
  padding: 0 max(16px, calc((100vw - var(--home-shell-wide)) / 2)) 22px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.rouge-home .home-review-track::-webkit-scrollbar {
  display: none;
}

.rouge-home .home-review {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 42px;
  border-radius: 34px;
  scroll-snap-align: start;
}

.rouge-home .home-stars {
  font-size: 16px;
  letter-spacing: .08em;
}

.rouge-home .home-review blockquote {
  margin: auto 0;
  font-family: "Source Serif 4", "Times New Roman", serif;
  font-size: clamp(29px, 2.4vw, 39px);
  line-height: 1.13;
  letter-spacing: -.032em;
}

.rouge-home .home-review p {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}

.rouge-home .home-review-cream {
  background: var(--home-cream);
  color: var(--home-ink);
}

.rouge-home .home-review-navy {
  background: var(--home-navy);
  color: #fff;
}

.rouge-home .home-review-burgundy {
  background: var(--home-burgundy);
  color: #fff;
}

/* Service area */

.rouge-home .home-local {
  padding: 136px 0;
  background: var(--home-navy-dark);
  color: #fff;
}

.rouge-home .home-local-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.rouge-home .home-local .home-eyebrow {
  color: var(--home-gold-light);
}

.rouge-home .home-local-copy h2 {
  color: #fff;
}

.rouge-home .home-local-copy > p:not(.home-eyebrow) {
  max-width: 610px;
  margin: 24px 0 0;
  color: #cbd3db;
  font-size: 18px;
  line-height: 1.65;
}

.rouge-home .home-local .home-text-link {
  color: #fff;
}

.rouge-home .home-place-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.rouge-home .place {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: transform .2s ease;
}

.rouge-home .place:hover {
  transform: translateY(-2px);
}

.rouge-home .place-burgundy {
  background: var(--home-burgundy);
  color: #fff;
}

.rouge-home .place-burgundy-light {
  background: var(--home-burgundy-light);
  color: #3c1720;
}

.rouge-home .place-cream {
  background: var(--home-cream);
  color: var(--home-ink);
}

.rouge-home .place-gold {
  background: var(--home-gold-light);
  color: #342a1b;
}

.rouge-home .place-blue,
.rouge-home .place-light {
  background: var(--home-blue);
  color: var(--home-navy-dark);
}

.rouge-home .place-light {
  background: #fff;
  color: var(--home-ink);
}

.rouge-home .place-navy {
  background: #294d70;
  color: #fff;
}

/* Call to action */

.rouge-home .home-final {
  padding: 150px 0;
  background: var(--home-gold-light);
}

.rouge-home .home-final-inner {
  text-align: center;
}

.rouge-home .home-final-inner .home-eyebrow {
  color: #6f592c;
}

.rouge-home .home-final-inner h2 {
  max-width: 850px;
  margin: 0 auto;
}

.rouge-home .home-final-line {
  display: block;
}

.rouge-home .home-final-inner > p:not(.home-eyebrow) {
  max-width: 680px;
  margin: 24px auto 0;
  color: #665a47;
  font-size: 18px;
  line-height: 1.6;
}

.rouge-home .home-final .home-actions {
  justify-content: center;
}

/* Footer */

.rouge-home .site-footer {
  background: #111113;
}

.rouge-home .site-footer__bottom {
  background: #0b0b0c;
}

/* Responsive */

@media (max-width: 1180px) {
  .rouge-home .home-mobile-office-grid,
  .rouge-home .home-tax-focus-head {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .rouge-home .home-tax-focus-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rouge-home .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 90px;
  }

  .rouge-home .home-hero-copy {
    max-width: 880px;
  }

  .rouge-home .home-deck {
    width: min(720px, 100%);
    height: 560px;
    margin: 0 auto;
  }

  .rouge-home .home-overview-grid,
  .rouge-home .home-experience-grid,
  .rouge-home .home-local-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .rouge-home .home-service-tile,
  .rouge-home .home-service-small {
    grid-column: span 3;
  }

  .rouge-home .home-promise {
    min-height: 430px;
  }
}

@media (max-width: 900px) {
  .rouge-home .home-mobile-office,
  .rouge-home .home-tax-focus {
    padding: 92px 0;
  }

  .rouge-home .home-tax-focus-grid {
    grid-template-columns: 1fr;
  }

  .rouge-home .home-office-console-list > div {
    grid-template-columns: 92px 1fr;
  }

  .rouge-home .home-shell,
  .rouge-home .home-shell-wide {
    width: min(calc(100% - 32px), var(--home-shell));
  }

  .rouge-home .home-hero {
    min-height: auto;
  }

  .rouge-home .home-hero-grid {
    min-height: auto;
    padding: 72px 0 58px;
  }

  .rouge-home .home-hero h1 {
    font-size: clamp(48px, 11vw, 72px);
  }

  .rouge-home .home-proof {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .rouge-home .home-proof div {
    padding-right: 0;
  }

  .rouge-home .home-deck {
    height: auto;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 82vw);
    gap: 12px;
    overflow-x: auto;
    margin-top: 18px;
    padding: 12px 2px 26px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .rouge-home .home-deck::-webkit-scrollbar {
    display: none;
  }

  .rouge-home .home-deck-glow,
  .rouge-home .home-deck-mark {
    display: none;
  }

  .rouge-home .home-deck-card {
    position: relative;
    inset: auto !important;
    width: auto;
    min-height: 230px;
    scroll-snap-align: center;
    transform: none !important;
  }

  .rouge-home .home-promise-grid {
    grid-template-columns: 1fr;
  }

  .rouge-home .home-promise {
    min-height: 360px;
  }

  .rouge-home .home-overview,
  .rouge-home .home-experience,
  .rouge-home .home-services,
  .rouge-home .home-bundles,
  .rouge-home .home-reviews,
  .rouge-home .home-local,
  .rouge-home .home-final {
    padding: 92px 0;
  }

  .rouge-home .home-overview-grid {
    gap: 48px;
  }

  .rouge-home .home-process-stage {
    min-height: 360px;
    padding: 38px 30px;
  }

  .rouge-home .home-process-card {
    inset: 38px 30px 76px;
  }

  .rouge-home .home-process-progress {
    left: 30px;
    right: 30px;
    bottom: 34px;
  }

  .rouge-home .home-service-grid {
    grid-template-columns: 1fr;
  }

  .rouge-home .home-service-tile,
  .rouge-home .home-service-small {
    min-height: 470px;
    grid-column: auto;
  }

  .rouge-home .home-service-estate img {
    width: min(65%, 400px);
  }

  .rouge-home .home-bundle-grid {
    grid-template-columns: 1fr;
  }

  .rouge-home .home-bundle {
    min-height: 600px;
  }

  .rouge-home .home-bundle-heading,
  .rouge-home .home-review-heading {
    align-items: start;
    flex-direction: column;
  }

  .rouge-home .home-review-track {
    grid-auto-columns: minmax(320px, 84vw);
  }
}

@media (max-width: 600px) {
  .rouge-home .home-mobile-office-copy h2,
  .rouge-home .home-tax-focus-head h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .rouge-home .home-office-console {
    padding: 26px 24px;
    border-radius: 28px;
  }

  .rouge-home .home-office-console-list > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .rouge-home .home-tax-focus-card {
    min-height: 300px;
    padding: 30px;
    border-radius: 26px;
  }

  .rouge-home .home-tax-focus-footer {
    flex-direction: column;
  }

  .rouge-home .home-shell,
  .rouge-home .home-shell-wide {
    width: min(calc(100% - 24px), var(--home-shell));
  }

  .rouge-home .home-eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
    line-height: 1.45;
  }

  .rouge-home .home-hero-grid {
    padding-top: 54px;
  }

  .rouge-home .home-hero h1 {
    font-size: clamp(43px, 13vw, 61px);
    letter-spacing: -.058em;
  }

  .rouge-home .home-lead {
    margin-top: 22px;
    font-size: 17px;
  }

  .rouge-home .home-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .rouge-home .home-button {
    width: 100%;
  }

  .rouge-home .home-deck {
    grid-auto-columns: 86vw;
  }

  .rouge-home .home-deck-card {
    min-height: 220px;
    padding: 26px;
    border-radius: 28px;
  }

  .rouge-home .home-promise {
    min-height: 320px;
    padding: 34px 30px;
    border-radius: 28px;
  }

  .rouge-home .home-overview-copy h2,
  .rouge-home .home-section-heading h2,
  .rouge-home .home-experience-copy h2,
  .rouge-home .home-bundle-heading h2,
  .rouge-home .home-review-heading h2,
  .rouge-home .home-local-copy h2,
  .rouge-home .home-final h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .rouge-home .home-overview-copy > p:not(.home-eyebrow),
  .rouge-home .home-experience-copy > p:not(.home-eyebrow),
  .rouge-home .home-section-heading > p:not(.home-eyebrow),
  .rouge-home .home-local-copy > p:not(.home-eyebrow),
  .rouge-home .home-final-line {
  display: block;
}

.rouge-home .home-final-inner > p:not(.home-eyebrow) {
    font-size: 16px;
  }

  .rouge-home .home-overview-links a {
    min-height: 82px;
  }

  .rouge-home .home-overview-links small {
    max-width: 230px;
  }

  .rouge-home .home-process {
    border-radius: 28px;
  }

  .rouge-home .home-process-stage {
    min-height: 390px;
  }

  .rouge-home .home-process-card h3 {
    font-size: clamp(35px, 10vw, 48px);
  }

  .rouge-home .home-process-card p {
    font-size: 16px;
  }

  .rouge-home .home-service-tile,
  .rouge-home .home-service-small {
    min-height: 440px;
    padding: 34px 30px;
    border-radius: 28px;
  }

  .rouge-home .home-service-copy h3 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .rouge-home .home-service-estate img {
    right: -10%;
    width: 76%;
    max-height: 58%;
  }

  .rouge-home .home-tax-graphic {
    right: 22px;
    bottom: 22px;
    width: 64%;
    min-width: 0;
  }

  .rouge-home .home-bundle {
    min-height: 570px;
    padding: 36px 30px;
    border-radius: 28px;
  }

  .rouge-home .home-bundle img {
    width: 88%;
    max-height: 55%;
  }

  .rouge-home .home-review-track {
    grid-auto-columns: 88vw;
    padding-left: 12px;
    padding-right: 12px;
  }

  .rouge-home .home-review {
    min-height: 390px;
    padding: 32px;
    border-radius: 28px;
  }

  .rouge-home .home-place-cloud {
    justify-content: flex-start;
  }

  .rouge-home .place {
    min-height: 48px;
    padding: 0 16px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rouge-home *,
  .rouge-home *::before,
  .rouge-home *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .rouge-home .home-reveal {
    opacity: 1;
    transform: none;
  }
}

/* Homepage display typography */
.rouge-home .home-office-console-title {
  max-width: none;
  font-size: clamp(32px, 2.65vw, 44px);
  font-weight: 650;
  letter-spacing: -0.018em;
  line-height: 1.09;
  text-wrap: balance;
}

.rouge-home .home-office-console-list > div {
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.rouge-home .home-office-console-list span {
  line-height: 1.45;
}

.rouge-home .home-office-console-list p {
  max-width: 100%;
  font-size: 14px;
  line-height: 1.58;
  text-wrap: pretty;
}

/* Homepage Source Serif 4 display spacing */
.rouge-home .home-overview-copy h2,
.rouge-home .home-section-heading h2,
.rouge-home .home-experience-copy h2,
.rouge-home .home-bundle-heading h2,
.rouge-home .home-review-heading h2,
.rouge-home .home-local-copy h2,
.rouge-home .home-final h2 {
  letter-spacing: -0.012em;
  line-height: 1.14;
}

.rouge-home .home-local-copy h2,
.rouge-home .home-final-inner h2 {
  text-wrap: balance;
}

@media (max-width: 1180px) {
  .rouge-home .home-office-console-title {
    font-size: clamp(31px, 3.1vw, 40px);
  }

  .rouge-home .home-office-console-list > div {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 22px;
  }
}

@media (max-width: 767px) {
  .rouge-home .home-office-console-title {
    font-size: clamp(30px, 8.8vw, 38px);
    line-height: 1.10;
  }

  .rouge-home .home-office-console-list > div {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 18px;
  }

  .rouge-home .home-overview-copy h2,
  .rouge-home .home-section-heading h2,
  .rouge-home .home-experience-copy h2,
  .rouge-home .home-bundle-heading h2,
  .rouge-home .home-review-heading h2,
  .rouge-home .home-local-copy h2,
  .rouge-home .home-final h2 {
    letter-spacing: -0.008em;
    line-height: 1.15;
  }
}

/* Homepage responsive refinement */
@media (max-width: 900px) {
  .rouge-home .home-hero-services {
    display: none;
  }

  .rouge-home .home-hero-proof {
    margin-top: 24px;
  }

  .rouge-home .home-hero-inner {
    min-height: auto;
    padding-bottom: 50px;
  }

  .rouge-home .home-hero-actions {
    width: 100%;
  }

  .rouge-home .home-hero-actions .home-hero-link {
    justify-content: center;
  }

  .rouge-home .home-hero-services {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    margin-top: 30px;
  }

  .rouge-home .home-hero-services a {
    grid-column: span 2;
    min-height: 104px;
    padding: 17px 18px;
  }

  .rouge-home .home-hero-services a:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .rouge-home .home-hero-services a:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .rouge-home .home-hero-services strong {
    line-height: 1.22;
  }

  .rouge-home .home-service-estate,
  .rouge-home .home-service-tax {
    min-height: 610px;
    padding-bottom: 245px;
  }

  .rouge-home .home-service-estate img {
    right: 0;
    bottom: -2%;
    width: min(52%, 360px);
    max-height: 42%;
  }

  .rouge-home .home-tax-graphic {
    right: 32px;
    bottom: 30px;
    width: min(50%, 360px);
    min-width: 0;
  }

  .rouge-home .home-bundle {
    min-height: 660px;
    padding-bottom: 285px;
  }

  .rouge-home .home-bundle img {
    bottom: 0;
    width: min(70%, 420px);
    max-height: 43%;
  }
}

@media (max-width: 600px) {
  .rouge-home .home-hero-inner {
    padding: 54px 0 42px;
  }

  .rouge-home .home-hero-actions {
    gap: 12px;
    margin-top: 28px;
  }

  .rouge-home .home-hero-actions .home-hero-link {
    width: 100%;
    padding: 5px 0 1px;
    text-align: center;
  }

  .rouge-home .home-hero-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 26px;
    border-radius: 22px;
  }

  .rouge-home .home-hero-services a,
  .rouge-home .home-hero-services a:nth-child(4),
  .rouge-home .home-hero-services a:nth-child(5) {
    grid-column: auto;
    min-height: 108px;
    padding: 17px 16px;
  }

  .rouge-home .home-hero-services a:nth-child(5) {
    grid-column: 1 / -1;
    min-height: 88px;
  }

  .rouge-home .home-hero-services strong {
    font-size: 14px;
    line-height: 1.22;
  }

  .rouge-home .home-hero-services small {
    margin-top: 5px;
    font-size: 10.5px;
    line-height: 1.42;
  }

  .rouge-home .home-service-dot {
    margin-bottom: 10px;
  }

  .rouge-home .home-hero-proof {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    margin-top: 17px;
    text-align: center;
  }

  .rouge-home .home-service-estate,
  .rouge-home .home-service-tax {
    min-height: 630px;
    padding: 34px 30px 270px;
  }

  .rouge-home .home-service-copy {
    max-width: none;
  }

  .rouge-home .home-service-copy h3 {
    line-height: 1.06;
  }

  .rouge-home .home-service-estate img {
    right: -2%;
    bottom: -1%;
    width: min(72%, 300px);
    max-height: 37%;
  }

  .rouge-home .home-tax-graphic {
    right: 30px;
    bottom: 28px;
    width: calc(100% - 60px);
    padding: 22px;
    border-radius: 24px;
  }

  .rouge-home .home-tax-graphic b {
    font-size: clamp(66px, 21vw, 88px);
    line-height: .84;
  }

  .rouge-home .home-tax-graphic i {
    height: 5px;
    margin-top: 11px;
  }

  .rouge-home .home-bundle {
    min-height: 690px;
    padding: 36px 30px 310px;
  }

  .rouge-home .home-bundle > div {
    max-width: none;
  }

  .rouge-home .home-bundle h3 {
    line-height: 1.05;
  }

  .rouge-home .home-bundle img {
    bottom: 0;
    width: min(72%, 300px);
    max-height: 40%;
  }
}

@media (max-width: 420px) {
  .rouge-home .home-hero-services a,
  .rouge-home .home-hero-services a:nth-child(4),
  .rouge-home .home-hero-services a:nth-child(5) {
    padding-left: 14px;
    padding-right: 14px;
  }

  .rouge-home .home-service-estate,
  .rouge-home .home-service-tax {
    min-height: 650px;
  }

  .rouge-home .home-bundle {
    min-height: 710px;
  }
}

/* Mobile home layout */
@media (max-width: 600px) {
  .rouge-home .home-hero-services {
    display: none;
  }

  .rouge-home .home-hero-proof {
    margin-top: 24px;
  }

  .rouge-home .home-bundle {
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 36px 30px 0;
  }

  .rouge-home .home-bundle > div {
    flex: 0 0 auto;
  }

  .rouge-home .home-bundle img {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(62%, 230px);
    max-height: none;
    margin: 18px auto 0;
    transform: none;
    object-fit: contain;
    object-position: center bottom;
  }

  .rouge-home .home-bundle:hover img {
    transform: none;
  }
}
.mobile-tagline-break {
    display: none;
}

@media (max-width: 560px) {
    .mobile-tagline-break {
        display: block;
    }
}
