:root {
  --ink: #171d24;
  --wix-ink: #171200;
  --muted: #59636f;
  --line: #dbe4e4;
  --cream: #e9fbf8;
  --paper: #ffffff;
  --warm-cream: #fffeed;
  --olive: #958735;
  --olive-dark: #746923;
  --wix-olive: #847539;
  --wix-olive-dark: #584e26;
  --green: #233f3b;
  --clay: #d78468;
  --blue: #536b77;
  --shadow: 0 20px 52px rgba(23, 29, 36, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Work Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  transition: opacity 160ms ease;
}

body.page-changing {
  opacity: 0.82;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(20px, 3vw, 38px);
  align-items: center;
  width: 100%;
  min-height: 86px;
  margin: 0 auto;
  padding: 24px clamp(18px, 4vw, 48px);
  color: #fff;
  background: transparent;
  border-bottom: 0;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.inner-page .site-header {
  width: 100%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 32px rgba(23, 29, 36, 0.08);
  backdrop-filter: blur(16px);
}

.home-page.site-scrolled .site-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 32px rgba(23, 29, 36, 0.08);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  color: currentColor;
  font-size: 1.4rem;
  font-weight: 400;
  text-decoration: none;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(18px, 2.4vw, 34px);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a,
.nav-group > a {
  position: relative;
  color: currentColor;
  text-decoration: none;
}

.site-nav a::after,
.nav-group > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after,
.nav-group:hover > a::after {
  transform: scaleX(1);
}

.nav-group {
  position: relative;
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: -18px;
  display: grid;
  min-width: 190px;
  padding: 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-menu a {
  padding: 10px 12px;
}

.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.quote-link,
.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: var(--olive);
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.quote-link:hover,
.button:hover {
  background: var(--olive-dark);
  box-shadow: 0 12px 28px rgba(116, 105, 35, 0.24);
  transform: translateY(-2px);
}

.button.secondary {
  color: var(--green);
  background: #fff;
  border: 1px solid var(--line);
}

.inner-page .button.secondary {
  color: var(--green);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(780px, calc(100vh - 76px));
  display: flex;
  align-items: flex-end;
  padding: clamp(72px, 11vw, 148px) clamp(20px, 6vw, 120px);
  color: #fff;
  overflow: hidden;
}

.video-hero {
  position: relative;
  height: clamp(720px, 95vh, 911px);
  min-height: 0;
  display: flex;
  align-items: flex-end;
  padding: clamp(130px, 14vw, 260px) clamp(50px, 6vw, 120px) clamp(88px, 10vw, 124px);
  color: #fff;
  background: #111821;
  overflow: hidden;
}

.video-hero video,
.video-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-hero video {
  object-fit: cover;
}

.video-shade {
  background: linear-gradient(90deg, rgba(6, 10, 15, 0.58), rgba(6, 10, 15, 0.25) 52%, rgba(6, 10, 15, 0.2));
}

.video-hero-content {
  position: relative;
  max-width: 1120px;
  z-index: 2;
}

.video-hero h1 {
  max-width: 1120px;
  font-size: clamp(3.8rem, 5.2vw, 6.2rem);
  font-weight: 400;
  line-height: 1.2;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.24);
}

.video-hero .lead {
  max-width: 650px;
  margin-bottom: 42px;
  color: #fff;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 400;
}

.video-hero .button {
  color: var(--ink);
  background: #fff;
}

.video-hero .button:hover {
  color: #fff;
  background: var(--olive);
}

.featured-services-intro {
  height: 395px;
  padding: 80px 50px 98px;
  background: #fff;
  color: var(--wix-ink);
}

.featured-services-intro > div {
  max-width: 1574px;
}

.featured-services-intro .eyebrow {
  margin-bottom: 20px;
  color: var(--wix-ink);
}

.featured-services-intro .lead {
  width: min(100%, 1543px);
  margin-bottom: 39px;
  color: var(--wix-ink);
  font-size: clamp(2.75rem, 3.78vw, 4.5rem);
  line-height: 1.2;
  font-weight: 400;
}

.featured-services-intro .button {
  min-width: 202px;
  min-height: 50px;
  color: #fff;
  background: var(--wix-ink);
  border-radius: 10px;
  font-weight: 400;
}

.featured-gallery {
  height: 775px;
  padding: 0 0 76px 50px;
  overflow: hidden;
  background: #fff;
}

.gallery-marquee {
  --gallery-cycle-width: 2886px;
  display: flex;
  gap: 30px;
  width: max-content;
  animation: gallery-scroll 34s linear infinite;
}

.featured-gallery:hover .gallery-marquee {
  animation-play-state: paused;
}

.gallery-tile {
  display: block;
  flex: 0 0 932px;
  width: 932px;
  height: 699px;
  overflow: hidden;
  border-radius: 10px;
  background: #847539;
  text-decoration: none;
}

.gallery-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms ease, filter 260ms ease;
}

.gallery-tile:hover img {
  filter: contrast(1.04) saturate(1.08);
  transform: scale(1.07);
}

@keyframes gallery-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(var(--gallery-cycle-width) * -1));
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 24, 17, 0.76), rgba(13, 24, 17, 0.34) 48%, rgba(13, 24, 17, 0.18)), url("/assets/hero-living-room.avif") center/cover no-repeat;
}

.hero-content {
  position: relative;
  max-width: 850px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--olive);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1eebd;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.3rem, 8vw, 7.6rem);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 400;
}

.page-hero h1,
.article-header h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 2.4vw, 2.8125rem);
  line-height: 1.4;
  letter-spacing: 0;
  font-weight: 400;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.18;
  font-weight: 400;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero .lead {
  max-width: 850px;
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.section {
  padding: clamp(56px, 8vw, 108px) clamp(20px, 6vw, 120px);
}

.section.alt {
  background: #fff;
}

.home-page .section.alt {
  background: var(--cream);
}

.about-home {
  padding: 50px clamp(24px, 2.7vw, 50px);
  color: var(--wix-ink);
  background: var(--cream);
}

.about-home .split {
  grid-template-columns: minmax(420px, 903px) minmax(420px, 817px);
  gap: clamp(48px, 4.5vw, 85px);
  align-items: center;
}

.about-home .split > div:first-child {
  max-width: 632px;
  padding-left: clamp(40px, 7.1vw, 135px);
}

.about-home .eyebrow {
  color: var(--wix-ink);
}

.about-home h2 {
  max-width: 580px;
}

.about-home .lead {
  max-width: 548px;
  color: var(--wix-ink);
  font-size: 18px;
  line-height: 25.2px;
}

.about-home .button {
  min-width: 166px;
  min-height: 50px;
  color: #fff;
  background: var(--wix-ink);
  border-radius: 10px;
  font-weight: 400;
}

.about-home .button:hover {
  color: var(--wix-ink);
  background: #fff;
}

.section.dark {
  color: #fff;
  background: var(--green);
}

.section.dark .lead,
.section.dark p {
  color: rgba(255, 255, 255, 0.78);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}

.image-panel {
  min-height: min(831px, 58vw);
  border-radius: 0;
  background: url("/assets/technician-handshake.avif") center/cover no-repeat;
  box-shadow: none;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.stat {
  min-height: 160px;
  padding: 28px;
  background: #fff;
}

.stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.home-stats {
  min-height: 706px;
  padding: 80px 50px 99px;
  background: #d6cead;
  color: var(--wix-ink);
}

.home-stats .eyebrow {
  margin-bottom: 41px;
  color: var(--wix-ink);
  line-height: 22.4px;
}

.home-stats .stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  background: transparent;
  border: 0;
}

.home-stats .stat {
  min-height: 464px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  color: #fff;
  background: #2c2713;
  border: 2px solid rgba(23, 18, 0, 0);
  border-radius: 15px;
}

.home-stats .stat strong {
  margin-bottom: 0;
  color: #fffeed;
  font-size: 90px;
  line-height: 108px;
}

.home-stats .stat span {
  margin-top: 0;
  color: #fffeed;
  font-size: 16px;
  line-height: 22.4px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: border-color 180ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.card.service-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.service-card figure {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0 0 18px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--cream);
}

.service-card img,
.detail-image img,
.before-after img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card .text-link {
  margin-top: auto;
}

.service-card:hover {
  border-color: var(--olive);
  box-shadow: 0 14px 34px rgba(24, 32, 27, 0.12);
  transform: translateY(-2px);
}

.service-card:hover .service-icon {
  background: var(--olive);
  transform: rotate(-3deg) scale(1.04);
}

.card.featured {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.card h3 {
  margin-bottom: 12px;
}

.card p,
.card li {
  color: var(--muted);
}

.card.featured p,
.card.featured li {
  color: rgba(255, 255, 255, 0.82);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--clay);
  font-weight: 400;
  transition: background 180ms ease, transform 220ms ease;
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
}

.services-overview-page {
  background: #fff;
}

.services-overview-page .site-header {
  min-height: 111px;
  color: var(--warm-cream);
  background: var(--wix-ink);
  box-shadow: none;
}

.category-detail-page .site-header {
  min-height: 111px;
  color: var(--warm-cream);
  background: var(--wix-ink);
  box-shadow: none;
}

.service-item-page .site-header {
  min-height: 111px;
  color: var(--warm-cream);
  background: var(--wix-ink);
  box-shadow: none;
}

.pricing-page {
  background: #fff;
}

.pricing-page .site-header {
  min-height: 111px;
  color: var(--warm-cream);
  background: var(--wix-ink);
  box-shadow: none;
}

.pricing-hero {
  position: relative;
  height: 738px;
  padding-top: 111px;
  background: #fff;
  color: #fff;
}

.pricing-hero > img {
  display: block;
  width: min(83.99vw, 1600px);
  height: 627px;
  margin: 0 auto;
  object-fit: cover;
}

.pricing-hero-copy {
  position: absolute;
  top: 463px;
  left: calc(50% - 556px);
  width: 1112px;
  text-align: center;
}

.pricing-hero-copy h1 {
  margin: 0 auto 1px;
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  line-height: 72px;
}

.pricing-hero-copy p {
  width: 916px;
  margin: 0 auto 42px;
  color: #fff;
  font-size: 21px;
  font-weight: 400;
  line-height: 33.6px;
}

.pricing-hero-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 329px;
  min-height: 49px;
  color: #fff;
  background: var(--wix-olive);
  font-size: 17.6px;
  font-weight: 300;
  line-height: 24.6px;
  text-decoration: none;
}

.pricing-methods {
  height: 389px;
  padding: 70px 20px 0;
  background: #fff;
}

.pricing-method-grid {
  display: grid;
  grid-template-columns: repeat(3, 288px);
  gap: 20px;
  justify-content: center;
}

.pricing-method-card {
  width: 288px;
  height: 249px;
  padding: 34px 32px 28px;
  border-radius: 10px;
  background: #d6cead;
  color: var(--wix-olive-dark);
  text-align: center;
}

.pricing-method-card img {
  display: block;
  width: 123px;
  height: 82px;
  margin: 0 auto 22px;
  object-fit: contain;
}

.pricing-method-card h2 {
  margin: 0 0 19px;
  color: var(--wix-olive-dark);
  font-size: clamp(24px, 1.58vw, 27.6px);
  font-weight: 500;
  line-height: 33.1px;
  white-space: nowrap;
}

.pricing-method-card p {
  width: 201px;
  margin: 0 auto;
  color: var(--wix-olive-dark);
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
}

.pricing-choice {
  height: 876px;
  padding: 70px 20px 0;
  background: var(--warm-cream);
  color: #000;
}

.pricing-choice h2 {
  width: 998px;
  max-width: 100%;
  margin: 0 auto 52px;
  color: #000;
  font-size: 60.24px;
  font-weight: 500;
  line-height: 72.3px;
  text-align: center;
}

.pricing-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 474px);
  gap: 40px;
  justify-content: center;
}

.pricing-choice-grid article {
  width: 474px;
  color: #000;
}

.pricing-choice-grid img {
  display: block;
  width: 474px;
  height: 449px;
  margin: 0 0 30px;
  border-radius: 10px;
  object-fit: cover;
}

.pricing-choice-grid h3 {
  margin: 0 0 13px;
  color: #000;
  font-size: 32px;
  font-weight: 500;
  line-height: normal;
}

.pricing-choice-grid p {
  width: 438px;
  margin: 0 0 0 36px;
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

.pricing-copy {
  min-height: 619px;
  padding: 31px 20px 0;
  background: #fff;
  color: var(--wix-ink);
}

.pricing-copy article {
  width: 983px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}

.pricing-copy p,
.pricing-copy li {
  margin: 0 0 25.6px;
  color: var(--wix-ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
}

.pricing-copy ul {
  margin: 0 0 25.6px;
  padding-left: 29px;
}

.pricing-copy li {
  margin-bottom: 0;
}

.pricing-copy strong {
  font-weight: 700;
}

.pricing-copy a {
  color: inherit;
}

.pricing-bottom-form {
  min-height: 642px;
  background: var(--warm-cream);
}

.pricing-page .site-footer {
  min-height: 827px;
}

.pricing-page .site-footer > div:not(.footer-legal) {
  min-height: 652px;
}

.realtors-page {
  color: var(--wix-ink);
  background: #fff;
}

.realtors-page .site-header {
  min-height: 111px;
  color: var(--warm-cream);
  background: var(--wix-ink);
  box-shadow: none;
}

.realtor-hero {
  position: relative;
  height: 738px;
  padding-top: 111px;
  color: #fff;
  background: #fff;
}

.realtor-hero > img {
  display: block;
  width: min(83.99vw, 1600px);
  height: 627px;
  margin: 0 auto;
  object-fit: cover;
}

.realtor-hero-copy {
  position: absolute;
  top: 464px;
  left: calc(50% - 556px);
  width: 1112px;
  text-align: center;
}

.realtor-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  line-height: 72px;
}

.realtor-hero-copy p {
  width: 990px;
  margin: 0 auto 46px;
  color: #fff;
  font-size: 21px;
  font-weight: 400;
  line-height: 33.6px;
}

.realtor-hero-copy > div {
  display: flex;
  justify-content: center;
  gap: 34px;
}

.realtor-hero-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  padding: 0 26px;
  font-size: 17.6px;
  font-weight: 300;
  line-height: 24.6px;
  white-space: nowrap;
  text-decoration: none;
}

.realtor-primary-cta {
  width: 329px;
  color: #fff;
  background: var(--wix-olive);
}

.realtor-secondary-cta {
  width: 257px;
  padding: 0 20px;
  color: var(--wix-ink);
  background: var(--warm-cream);
}

.realtor-services {
  height: 919px;
  padding: 70px 20px 0;
  background: #fff;
}

.realtor-services h2,
.realtor-handle h2,
.realtor-process h2 {
  width: 998px;
  max-width: 100%;
  margin: 0 auto 52px;
  color: var(--wix-ink);
  font-size: 68px;
  font-weight: 400;
  line-height: 81.6px;
  text-align: center;
}

.realtor-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 374px);
  gap: 40px;
  justify-content: center;
}

.realtor-service-card {
  width: 374px;
  color: var(--wix-ink);
}

.realtor-service-card img {
  display: block;
  width: 374px;
  height: 487px;
  margin: 0 0 29px;
  border-radius: 10px;
  object-fit: cover;
}

.realtor-service-card h3 {
  margin: 0 0 13px;
  color: var(--wix-ink);
  font-size: 28px;
  font-weight: 500;
  line-height: 33.6px;
}

.realtor-service-card p {
  margin: 0;
  color: var(--wix-ink);
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}

.realtor-handle {
  height: 2400px;
  padding: 45px 20px 0;
  background: var(--warm-cream);
}

.realtor-handle-list {
  width: 1200px;
  max-width: 100%;
  margin: 52px auto 0;
}

.realtor-handle-item {
  display: grid;
  grid-template-columns: 204px 1fr;
  gap: 74px;
  min-height: 204px;
  margin: 0 0 42px;
  color: var(--wix-ink);
}

.realtor-handle-item img {
  display: block;
  width: 204px;
  height: 204px;
  border-radius: 10px;
  object-fit: cover;
}

.realtor-handle-item h3 {
  margin: 29px 0 19px;
  color: var(--wix-ink);
  font-size: 28px;
  font-weight: 500;
  line-height: 33.6px;
}

.realtor-handle-item p {
  width: 793px;
  max-width: 100%;
  margin: 0;
  color: var(--wix-ink);
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}

.realtor-process {
  height: 814px;
  padding: 70px 20px 0;
  background: #fff;
}

.realtor-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 270px);
  gap: 40px;
  justify-content: center;
}

.realtor-process-grid article {
  width: 270px;
  color: var(--wix-ink);
}

.realtor-process-grid img {
  display: block;
  width: 270px;
  height: 352px;
  margin: 0 0 30px;
  border-radius: 10px;
  object-fit: cover;
}

.realtor-process-grid h3 {
  margin: 0 0 13px;
  color: var(--wix-ink);
  font-size: 26.4px;
  font-weight: 500;
  line-height: 31.6px;
}

.realtor-process-grid p {
  margin: 0;
  color: var(--wix-ink);
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}

.realtor-contact {
  height: 619px;
  padding: 0 20px;
  background: #fff;
}

.realtor-contact-form {
  width: 640px;
  height: 583px;
  margin: 0 auto;
  padding: 0 24px 24px;
  color: var(--wix-ink);
  background: #dce3e8;
  border-radius: 14px;
}

.realtor-contact-form h2 {
  height: 133px;
  margin: 0;
  color: var(--wix-ink);
  font-size: 66px;
  font-weight: 400;
  line-height: 99px;
}

.realtor-contact-form label {
  display: block;
  margin: 0 0 23px;
  color: var(--wix-ink);
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
}

.realtor-contact-form input,
.realtor-contact-form textarea {
  display: block;
  width: 100%;
  height: 38px;
  margin: 5px 0 0;
  padding: 6px 10px;
  color: var(--wix-ink);
  font: inherit;
  background: transparent;
  border: 1px solid var(--wix-ink);
}

.realtor-contact-form textarea {
  height: 83px;
  resize: vertical;
}

.realtor-contact-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 284px;
  height: 41px;
  margin: 1px 0 0 auto;
  color: #fff;
  background: var(--wix-olive);
  border: 0;
  border-radius: 22px;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
}

.realtor-faq {
  min-height: 890px;
  padding: 0 20px 180px;
  background: var(--warm-cream);
  color: var(--wix-ink);
}

.realtor-faq h2 {
  width: 998px;
  max-width: 100%;
  margin: 0 auto 41px;
  color: var(--wix-ink);
  font-size: 50.2px;
  font-weight: 400;
  line-height: 60.2px;
  text-align: center;
}

.realtor-faq-list {
  width: 730px;
  max-width: 100%;
  margin: 0 auto;
}

.realtor-faq-item {
  border-top: 1px solid var(--wix-ink);
}

.realtor-faq-item:last-child {
  border-bottom: 1px solid var(--wix-ink);
}

.realtor-faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 61px;
  padding: 0 39px 0 40px;
  color: var(--wix-ink);
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: 22px;
  font-weight: 400;
  line-height: 26.4px;
  text-align: left;
  cursor: pointer;
  list-style: none;
}

.realtor-faq-list summary::-webkit-details-marker {
  display: none;
}

.realtor-faq-item[open] {
  border-bottom: 1px solid var(--wix-ink);
}

.realtor-faq-panel {
  padding: 20px 0 23px 56px;
  background: #f7f7f7;
}

.realtor-faq-item:not([open]) .realtor-faq-panel {
  display: none;
}

.realtor-faq-panel p {
  width: 602px;
  max-width: 100%;
  margin: 0 0 16px;
  color: var(--wix-ink);
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
}

.realtor-faq-panel p:last-child {
  margin-bottom: 0;
}

.realtor-faq-list span {
  flex: 0 0 auto;
  margin-left: 24px;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}

.realtor-faq-list span::before {
  content: "+";
}

.realtor-faq-item[open] span::before {
  content: "-";
}

.realtors-page .site-footer {
  min-height: 827px;
}

.realtors-page .site-footer > div:not(.footer-legal) {
  min-height: 652px;
}

.about-page {
  color: var(--wix-ink);
  background: #fff;
}

.about-page .site-header {
  min-height: 111px;
  color: var(--warm-cream);
  background: var(--wix-ink);
  box-shadow: none;
}

.about-hero {
  position: relative;
  height: 738px;
  padding-top: 111px;
  color: #fff;
  background: #fff;
}

.about-hero > img {
  display: block;
  width: min(83.99vw, 1600px);
  height: 627px;
  margin: 0 auto;
  object-fit: cover;
}

.about-hero-copy {
  position: absolute;
  top: 464px;
  left: calc(50% - 602px);
  width: 1204px;
  text-align: center;
}

.about-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  line-height: 72px;
}

.about-hero-copy p {
  width: 990px;
  margin: 0 auto 42px;
  color: #fff;
  font-size: 21px;
  font-weight: 400;
  line-height: 33.6px;
}

.about-hero-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 329px;
  min-height: 49px;
  color: #fff;
  background: var(--wix-olive);
  font-size: 17.6px;
  font-weight: 300;
  line-height: 24.6px;
  text-decoration: none;
}

.about-stats {
  height: 462px;
  padding: 35px 20px 0;
  background: #fff;
}

.about-stats > div {
  display: grid;
  grid-template-columns: repeat(3, 214px);
  gap: 15px 76px;
  justify-content: center;
}

.about-stats article {
  min-height: 126px;
  color: var(--wix-ink);
  text-align: center;
}

.about-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 8px;
  color: var(--wix-olive);
}

.about-stat-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.about-stat-icon-star,
.about-stat-icon-dollar {
  width: 79px;
  height: 79px;
}

.about-stat-icon-placeholder {
  visibility: hidden;
}

.about-stats article:nth-child(4) {
  grid-column: 2;
}

.about-stats strong {
  display: block;
  color: #7d96dd;
  font-size: 60px;
  font-weight: 500;
  line-height: 72px;
}

.about-stats span {
  display: block;
  margin: 0 auto;
  color: var(--wix-ink);
  font-size: 22.6px;
  font-weight: 400;
  line-height: 27.1px;
  text-transform: uppercase;
}

.about-story {
  height: 501px;
  padding: 30px 20px 0;
  background: var(--warm-cream);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 354px 354px;
  gap: 229px;
  justify-content: center;
}

.about-story h2 {
  margin: 0 0 18px;
  color: #1a0dab;
  font-size: 30.1px;
  font-weight: 500;
  line-height: 36.1px;
}

.about-mission h3 {
  margin: 0 0 16px;
  color: #2c2713;
  font-size: 37.65px;
  font-weight: 600;
  line-height: 45.18px;
}

.about-mission p,
.about-started p {
  margin: 0;
  color: var(--wix-ink);
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
}

.about-mission ul {
  margin: 24px 0 0;
  padding: 0;
  color: var(--wix-ink);
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
  list-style: none;
}

.about-mission li {
  margin: 0 0 17px;
}

.about-started img {
  display: block;
  width: 100px;
  height: 102px;
  margin: 1px 0 8px 88px;
  object-fit: contain;
}

.about-values {
  height: 479px;
  padding: 0 20px;
  background: #fff;
}

.about-values > h2,
.about-team > h2 {
  width: 468px;
  margin: 0 auto;
  color: #1a0dab;
  font-size: 62.75px;
  font-weight: 500;
  line-height: 75.3px;
  text-align: center;
}

.about-values > div {
  display: grid;
  grid-template-columns: repeat(4, 239px);
  gap: 27px;
  justify-content: center;
  margin-top: 167px;
}

.about-values article {
  position: relative;
  color: var(--wix-ink);
  text-align: center;
}

.about-value-icon {
  position: absolute;
  top: -123px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 101px;
  height: 101px;
  color: #000;
  transform: translateX(-50%);
}

.about-value-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.about-value-icon-house svg,
.about-value-icon-recycle svg {
  width: 63px;
  height: 63px;
}

.about-values h3 {
  margin: 0 0 28px;
  color: #1a0dab;
  font-size: 40.16px;
  font-weight: 500;
  line-height: 48.2px;
}

.about-values p {
  margin: 0;
  color: var(--wix-ink);
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
}

.about-team {
  height: 813px;
  padding: 30px 20px 0;
  background: #fff;
  text-align: center;
}

.about-team img {
  display: block;
  width: 757px;
  height: 504px;
  margin: 37px auto 11px;
  object-fit: cover;
}

.about-team p {
  width: 757px;
  max-width: 100%;
  margin: 0 auto;
  color: var(--wix-ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 28.8px;
}

.about-cta {
  position: relative;
  height: 275px;
  color: var(--warm-cream);
  background: var(--wix-ink);
  text-align: center;
  overflow: hidden;
}

.about-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 275px;
  object-fit: cover;
}

.about-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 18, 0, 0.28);
}

.about-cta > div {
  position: relative;
  z-index: 1;
  padding-top: 39px;
}

.about-cta h2 {
  width: 1109px;
  max-width: calc(100% - 40px);
  margin: 0 auto 28px;
  color: var(--warm-cream);
  font-size: 50.2px;
  font-weight: 400;
  line-height: 60.24px;
}

.about-cta p {
  width: 877px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
  color: var(--warm-cream);
  font-size: 28px;
  font-weight: 500;
  line-height: 44.8px;
}

.about-contact {
  height: 619px;
  padding: 24px 20px 0;
  background: #fff;
}

.about-contact .realtor-contact-form {
  margin-top: 0;
}

.about-faq {
  min-height: 276px;
  padding: 24px 20px 75px;
  background: var(--warm-cream);
  color: var(--wix-ink);
}

.about-faq h2 {
  width: 998px;
  max-width: 100%;
  margin: 0 auto 41px;
  color: #000;
  font-size: 50.2px;
  font-weight: 400;
  line-height: 60.2px;
  text-align: center;
}

.about-faq-list {
  width: 730px;
  max-width: 100%;
  margin: 0 auto;
}

.about-faq-item {
  border-top: 1px solid var(--wix-ink);
}

.about-faq-item:last-child {
  border-bottom: 1px solid var(--wix-ink);
}

.about-faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 44px;
  padding: 0;
  color: #000;
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  list-style: none;
  cursor: pointer;
}

.about-faq-list summary::-webkit-details-marker {
  display: none;
}

.about-faq-panel {
  display: block;
  padding: 18px 0 21px 56px;
  background: #f7f7f7;
}

.about-faq-item:not([open]) .about-faq-panel {
  display: none;
}

.about-faq-panel p {
  width: 602px;
  max-width: 100%;
  margin: 0;
  color: var(--wix-ink);
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
}

.about-faq-list span {
  flex: 0 0 auto;
  margin-left: 24px;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}

.about-faq-list span::before {
  content: "+";
}

.about-faq-item[open] span::before {
  content: "-";
}

.about-page .site-footer {
  min-height: 827px;
}

.about-page .site-footer > div:not(.footer-legal) {
  min-height: 652px;
}

.blog-page {
  color: var(--wix-ink);
  background: #fff;
}

.blog-page .site-header {
  min-height: 111px;
  color: var(--warm-cream);
  background: var(--wix-ink);
  box-shadow: none;
}

.blog-listing {
  min-height: 1628px;
  padding: 158px 0 0;
  background: #fff;
  color: var(--wix-ink);
}

.blog-tabs {
  width: 1400px;
  height: 25px;
  margin: 0 auto;
}

.blog-tabs a {
  display: inline-block;
  color: var(--wix-olive);
  font-size: 18px;
  font-weight: 700;
  line-height: 25.2px;
  text-decoration: none;
}

.blog-filter-title {
  width: 1400px;
  height: 135px;
  margin: 48px auto 0;
  color: var(--wix-ink);
  font-size: 0;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 326px);
  gap: 32px;
  width: 1400px;
  margin: 0 auto;
}

.blog-card {
  width: 326px;
  min-height: 650px;
  color: var(--wix-ink);
}

.blog-card-image,
.blog-card-image img {
  display: block;
  width: 326px;
  height: 245px;
}

.blog-card-image img {
  object-fit: cover;
}

.blog-card-meta {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: start;
  margin: 28px 25px 0;
  color: var(--wix-ink);
}

.blog-card-meta > img {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-card-meta p {
  margin: 0 0 5px;
  color: var(--wix-ink);
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
}

.blog-card-title {
  display: block;
  margin: 8px 25px 0;
  color: var(--wix-ink);
  text-decoration: none;
}

.blog-card-title h2 {
  display: -webkit-box;
  height: 92px;
  margin: 0;
  overflow: hidden;
  color: var(--wix-ink);
  font-size: 22px;
  font-weight: 400;
  line-height: 30.8px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.blog-card-summary {
  display: -webkit-box;
  height: 72px;
  margin: 11px 25px 0;
  overflow: hidden;
  color: var(--wix-ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.blog-card-stats {
  display: flex;
  gap: 22px;
  margin: 36px 25px 0;
  padding-top: 14px;
  color: var(--wix-ink);
  border-top: 1px solid rgba(23, 18, 0, 0.2);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.blog-card-liked {
  margin: 8px 25px 0;
  color: var(--wix-ink);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.blog-detail-page {
  color: var(--wix-ink);
  background: #fff;
}

.blog-detail-page .site-header {
  min-height: 111px;
  color: var(--warm-cream);
  background: var(--wix-ink);
  box-shadow: none;
}

.blog-post-detail {
  position: relative;
  min-height: 1200px;
  padding: 158px 0 96px;
  background: #fff;
  color: var(--wix-ink);
}

.blog-post-back {
  display: block;
  width: 740px;
  margin: 0 auto 104px;
  color: var(--wix-olive);
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  text-decoration: none;
}

.blog-post-shell {
  width: 740px;
  margin: 0 auto;
}

.blog-post-meta {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--wix-ink);
}

.blog-post-meta img {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-post-meta p {
  margin: 0 0 5px;
  color: var(--wix-ink);
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
}

.blog-post-meta p:first-child {
  font-weight: 700;
}

.blog-post-shell h1 {
  margin: 11px 0 0;
  color: var(--wix-ink);
  font-size: 40px;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: 0;
}

.blog-post-image {
  margin: 44px auto;
}

.blog-post-shell > .blog-post-image {
  margin-top: 73px;
}

.blog-post-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.blog-post-image.wide {
  width: 740px;
}

.blog-post-image.small {
  width: 350px;
}

.blog-post-body {
  margin-top: 66px;
}

.blog-post-shell > .blog-post-image + .blog-post-body {
  margin-top: 72px;
}

.blog-post-body h2 {
  margin: 38px 0 16px;
  color: var(--wix-ink);
  font-size: 25px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0;
}

.blog-post-body p {
  margin: 0 0 18px;
  color: var(--wix-ink);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0;
}

.blog-post-stats {
  display: flex;
  gap: 24px;
  margin-top: 58px;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 18, 0, 0.22);
  color: var(--wix-ink);
  font-size: 12px;
  line-height: 18px;
}

.blog-post-liked {
  margin: 12px 0 0;
  color: var(--wix-ink);
  font-size: 12px;
  line-height: 18px;
}

.blog-recent {
  width: 940px;
  margin: 96px auto 0;
  color: var(--wix-ink);
}

.blog-recent > div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 34px;
}

.blog-recent h2 {
  margin: 0;
  color: var(--wix-ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
}

.blog-recent > div:first-child a {
  color: var(--wix-olive);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

.blog-recent-grid {
  display: grid;
  grid-template-columns: repeat(3, 289px);
  gap: 35px;
}

.blog-recent-card {
  width: 289px;
  min-height: 250px;
  color: var(--wix-ink);
}

.blog-recent-image,
.blog-recent-image img {
  display: block;
  width: 289px;
  height: 162px;
}

.blog-recent-image img {
  object-fit: cover;
}

.blog-recent-title {
  display: block;
  min-height: 54px;
  margin-top: 17px;
  overflow: hidden;
  color: var(--wix-ink);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
}

.blog-recent-stats {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  padding-top: 10px;
  border-top: 1px solid rgba(23, 18, 0, 0.2);
  color: var(--wix-ink);
  font-size: 12px;
  line-height: 18px;
}

.blog-recent-card p {
  margin: 8px 0 0;
  color: var(--wix-ink);
  font-size: 12px;
  line-height: 18px;
}

.training-page {
  color: var(--wix-ink);
  background: #fff;
}

.training-page .site-header {
  min-height: 111px;
  color: var(--warm-cream);
  background: var(--wix-ink);
  box-shadow: none;
}

.course-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 42px;
  min-height: 832px;
  padding: 170px clamp(32px, 8vw, 150px) 72px;
  background: #fff;
  color: var(--wix-ink);
}

.course-hero-image img {
  display: block;
  width: 100%;
  height: min(48vw, 786px);
  min-height: 520px;
  object-fit: cover;
}

.course-hero-copy {
  align-self: center;
}

.course-hero-copy h1 {
  margin: 0 0 24px;
  color: var(--wix-ink);
  font-size: 46px;
  font-weight: 400;
  line-height: 1.16;
}

.course-hero-copy > p {
  margin: 0 0 28px;
  color: var(--wix-ink);
  font-size: 18px;
  line-height: 30px;
}

.course-hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 28px;
}

.course-hero-meta span {
  padding: 14px 16px;
  color: var(--wix-ink);
  background: #d7cfa9;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.course-primary,
.course-player-actions button,
.course-certificate button,
.course-gate button {
  min-height: 48px;
  padding: 0 24px;
  color: #fff;
  background: var(--wix-olive);
  border: 0;
  border-radius: 4px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.course-player-actions button:not(.course-primary),
.course-certificate button {
  color: var(--wix-ink);
  background: #f2eed9;
}

.course-primary:disabled,
.course-player-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.course-shell {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 38px;
  padding: 72px clamp(32px, 8vw, 150px) 110px;
  background: #fffeed;
  color: var(--wix-ink);
}

.course-sidebar {
  position: sticky;
  top: 132px;
  align-self: start;
  max-height: calc(100vh - 156px);
  overflow: auto;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(23, 18, 0, 0.16);
  border-radius: 6px;
}

.course-progress {
  margin-bottom: 26px;
}

.course-progress span {
  display: block;
  margin-bottom: 10px;
  font-size: 34px;
  font-weight: 700;
}

.course-progress div {
  height: 8px;
  overflow: hidden;
  background: #eee8ce;
  border-radius: 999px;
}

.course-progress i {
  display: block;
  height: 100%;
  background: var(--wix-olive);
}

.course-progress p {
  margin: 10px 0 0;
  font-size: 13px;
}

.course-sidebar details {
  border-top: 1px solid rgba(23, 18, 0, 0.12);
}

.course-sidebar summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 0;
  color: var(--wix-ink);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.course-sidebar summary span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.course-sidebar ol {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.course-sidebar li + li {
  margin-top: 6px;
}

.course-sidebar li button {
  width: 100%;
  padding: 10px 12px;
  color: var(--wix-ink);
  background: transparent;
  border: 0;
  border-radius: 4px;
  font: inherit;
  font-size: 13px;
  line-height: 18px;
  text-align: left;
  cursor: pointer;
}

.course-sidebar li button.is-active {
  background: #d7cfa9;
  font-weight: 700;
}

.course-sidebar li button.is-complete::before {
  content: "✓ ";
  color: var(--wix-olive-dark);
  font-weight: 700;
}

.course-sidebar li button:disabled {
  color: rgba(23, 18, 0, 0.35);
  cursor: not-allowed;
}

.course-main {
  min-width: 0;
}

.course-player-card,
.course-gate,
.course-certificate {
  padding: clamp(28px, 5vw, 56px);
  background: #fff;
  border: 1px solid rgba(23, 18, 0, 0.16);
  border-radius: 6px;
}

.course-step-kicker,
.course-step-type {
  margin: 0 0 10px;
  color: var(--wix-olive-dark);
  font-size: 14px;
  font-weight: 700;
}

.course-player-card h2,
.course-gate h2 {
  margin: 0 0 18px;
  color: var(--wix-ink);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.15;
}

.course-player-card p,
.course-player-card li,
.course-gate p,
.course-gate label {
  color: var(--wix-ink);
  font-size: 18px;
  line-height: 30px;
}

.course-player-card ul {
  margin: 24px 0;
  padding-left: 24px;
}

.course-rich-lesson {
  max-width: 920px;
}

.course-rich-lesson h3 {
  margin: 44px 0 18px;
  color: var(--wix-ink);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.24;
}

.course-rich-lesson .lesson-body-title {
  margin-top: 6px;
}

.course-rich-lesson p {
  margin: 0 0 22px;
}

.course-rich-lesson strong {
  font-weight: 700;
}

.course-rich-lesson img {
  display: block;
  max-width: 100%;
  height: auto;
}

.lesson-cover-media,
.lesson-wide-media {
  margin: 8px 0 34px;
}

.lesson-cover-media img,
.lesson-wide-media img {
  width: 100%;
}

.lesson-inline-media {
  width: min(350px, 100%);
  margin: 6px 0 26px;
}

.lesson-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 26px 0 34px;
}

.lesson-media-grid article {
  padding: 0;
}

.lesson-media-grid h4 {
  margin: 16px 0 10px;
  color: var(--wix-ink);
  font-size: 20px;
  font-weight: 700;
}

.lesson-nozzle-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin: 22px 0 28px;
}

.lesson-nozzle-strip img {
  width: auto;
  max-width: 148px;
  max-height: 148px;
  object-fit: contain;
  border: 1px solid rgba(23, 18, 0, 0.12);
}

.lesson-callout {
  margin: 32px 0;
  padding: 22px 26px;
  background: #f2eed9;
  border-left: 4px solid var(--wix-olive);
}

.lesson-callout p:last-child {
  margin-bottom: 0;
}

.lesson-check-list {
  list-style: none;
  padding-left: 0;
}

.lesson-video {
  position: relative;
  width: 100%;
  margin: 26px 0 42px;
  aspect-ratio: 16 / 9;
  background: #171200;
}

.lesson-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.lesson-table-wrap {
  width: 100%;
  margin: 18px 0 28px;
  overflow-x: auto;
}

.lesson-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  color: var(--wix-ink);
  font-size: 17px;
  line-height: 1.5;
}

.lesson-table-wrap th,
.lesson-table-wrap td {
  padding: 16px 18px;
  border: 1px solid rgba(23, 18, 0, 0.2);
  text-align: left;
  vertical-align: top;
}

.lesson-table-wrap th {
  background: #d9d1aa;
  font-weight: 700;
}

.lesson-table-wrap tr:nth-child(even) td {
  background: #fffeed;
}

.course-note {
  margin: 32px 0;
  padding: 22px 24px;
  background: #f2eed9;
  border-left: 4px solid var(--wix-olive);
  font-size: 17px;
  line-height: 28px;
}

.course-player-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.course-quiz fieldset {
  margin: 0 0 24px;
  padding: 22px 24px 24px;
  border: 1px solid rgba(23, 18, 0, 0.18);
  border-radius: 6px;
  background: #fff;
}

.course-quiz legend {
  padding: 0 8px;
  color: var(--wix-ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.course-quiz label {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  width: 100%;
  min-height: 52px;
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(23, 18, 0, 0.12);
  border-radius: 4px;
  color: var(--wix-ink);
  background: #fffeed;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  text-transform: none;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.course-quiz label:hover,
.course-quiz label:focus-within {
  border-color: rgba(145, 133, 51, 0.55);
  background: #f8f4df;
  box-shadow: 0 8px 18px rgba(23, 18, 0, 0.06);
}

.course-quiz input[type="radio"] {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  accent-color: var(--wix-olive);
}

.course-quiz label span {
  display: block;
  overflow-wrap: anywhere;
}

.course-quiz input[type="radio"]:checked + span {
  font-weight: 700;
}

.course-reflection textarea {
  display: block;
  width: 100%;
  min-height: 132px;
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(23, 18, 0, 0.28);
  border-radius: 4px;
  color: var(--wix-ink);
  font: inherit;
  line-height: 1.5;
  resize: vertical;
}

.course-score {
  margin: 16px 0 0;
  font-weight: 700;
}

.course-gate label {
  display: block;
  margin: 26px 0;
}

.course-gate input {
  display: block;
  width: min(100%, 420px);
  height: 48px;
  margin-top: 10px;
  padding: 0 14px;
  border: 1px solid rgba(23, 18, 0, 0.32);
  border-radius: 4px;
  font: inherit;
}

.course-certificate {
  margin-top: 30px;
  text-align: center;
  background: #fffeed;
}

.course-certificate p {
  margin: 0;
  color: var(--wix-olive-dark);
  font-weight: 700;
  text-transform: uppercase;
}

.course-certificate h2 {
  margin: 12px 0;
  color: var(--wix-ink);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 400;
}

.course-certificate span {
  display: block;
  margin-bottom: 28px;
  font-size: 18px;
}

.overview-hero {
  position: relative;
  height: 754px;
  padding-top: 111px;
  color: #fff;
  background: #fff;
}

.overview-hero > img {
  display: block;
  width: min(83.99vw, 1600px);
  height: 643px;
  margin: 0 auto;
  object-fit: cover;
}

.overview-hero-copy {
  position: absolute;
  top: 326px;
  left: max(50px, calc(50% - 750px));
  width: 800px;
  text-align: center;
}

.overview-hero-copy h1 {
  margin-bottom: 21px;
  font-size: 60px;
  line-height: 72px;
  color: #fff;
}

.overview-hero-copy p {
  margin-bottom: 45px;
  font-size: 22.6px;
  line-height: 27.1px;
  color: #fff;
}

.overview-hero-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  min-height: 69px;
  padding: 10px 18px;
  color: #fff;
  background: var(--wix-olive);
  font-size: 17.6px;
  font-weight: 700;
  line-height: 24.6px;
  text-align: center;
  text-decoration: none;
}

.overview-form {
  width: 592px;
  color: var(--wix-ink);
}

.overview-hero-form {
  position: absolute;
  top: 205px;
  left: calc(50% + 182px);
  box-sizing: border-box;
  width: 512px;
  min-height: 514px;
  padding: 19px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.75);
}

.overview-form h2 {
  width: 100%;
  margin-bottom: 14px;
  color: var(--wix-ink);
  font-size: 66px;
  font-weight: 400;
  line-height: 99px;
  text-transform: uppercase;
}

.overview-hero-form h2 {
  margin-bottom: 43px;
  font-size: 52px;
  line-height: 66px;
}

.overview-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.overview-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 17px;
  color: var(--wix-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 19.6px;
  text-transform: none;
}

.overview-form input,
.overview-form textarea {
  min-height: 32px;
  padding: 4px 8px;
  border: 1px solid rgba(23, 18, 0, 0.6);
  border-radius: 0;
  background: #fff;
  color: var(--wix-ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.overview-form textarea {
  min-height: 76px;
  resize: vertical;
}

.overview-form button {
  width: 227px;
  min-height: 33px;
  border: 0;
  color: #fff;
  background: var(--wix-olive);
  font: inherit;
  cursor: pointer;
}

.overview-feature-strip {
  min-height: 209px;
  padding: 19px 20px 35px;
  color: var(--wix-ink);
  background: #fff;
  text-align: center;
}

.overview-feature-row {
  display: grid;
  grid-template-columns: 256px 285px 350px;
  gap: 102px;
  justify-content: center;
  margin-bottom: 43px;
}

.overview-feature-row p {
  margin: 0;
  font-size: 18px;
  line-height: 28.8px;
}

.overview-feature-strip > p {
  margin: 0;
  font-size: 20px;
  line-height: 32px;
}

.overview-services {
  min-height: 1794px;
  padding: 50px 0;
  background: var(--warm-cream);
}

.overview-services h2 {
  width: min(100%, 998px);
  margin: 0 auto 51px;
  color: #000;
  font-size: 68px;
  line-height: 81.6px;
  text-align: center;
}

.overview-service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 41px 40px;
  justify-content: center;
  width: 1202px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}

.overview-service-card {
  position: relative;
  display: block;
  width: 374px;
  height: 487px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: var(--wix-olive-dark);
}

.overview-service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, filter 240ms ease;
}

.overview-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 18, 0, 0.08), rgba(23, 18, 0, 0.46) 38%, rgba(23, 18, 0, 0.68));
}

.overview-service-card:hover img {
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.05);
}

.overview-card-copy {
  position: absolute;
  left: 8px;
  right: 8px;
  top: 220px;
  z-index: 1;
  display: grid;
  gap: 42px;
  color: #fff;
  text-align: center;
}

.overview-card-copy strong {
  min-height: 33px;
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  line-height: normal;
}

.overview-card-copy span {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}

.overview-why {
  position: relative;
  min-height: 878px;
  padding: 133px 0 120px;
  overflow: hidden;
  color: #2c2713;
}

.overview-why > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overview-why > div {
  position: relative;
  width: min(100% - 40px, 973px);
  margin: 0 auto;
}

.overview-why h2 {
  margin-bottom: 23px;
  color: #2c2713;
  font-size: 60px;
  font-weight: 800;
  line-height: 72px;
}

.overview-why p {
  margin-bottom: 28px;
  color: #2c2713;
  font-size: 18px;
  font-weight: 500;
  line-height: 28.8px;
}

.overview-process {
  min-height: 619px;
  padding: 77px 20px 70px;
  background: #fff;
  color: var(--wix-ink);
}

.overview-process h2 {
  width: min(100%, 717px);
  margin: 0 auto 124px;
  color: var(--wix-ink);
  font-size: 60px;
  font-weight: 800;
  line-height: 72px;
}

.overview-process h2 span {
  color: rgb(102, 101, 88);
}

.overview-process-grid {
  display: grid;
  grid-template-columns: 355px 343px 438px;
  gap: 52px;
  justify-content: center;
  text-align: center;
}

.overview-process-grid article {
  position: relative;
}

.overview-process-icon {
  display: block;
  width: 63px;
  height: 63px;
  margin: 0 auto 61px;
  color: #000;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.overview-process-grid h3 {
  margin-bottom: 18px;
  font-size: 37.65px;
  font-weight: 600;
  line-height: 45.2px;
}

.overview-process-grid p {
  margin: 0;
  font-size: 18px;
  line-height: 28.8px;
}

.overview-testimonials {
  min-height: 654px;
  padding: 83px 20px 72px;
  color: #fff;
  background: #847539;
  text-align: center;
}

.overview-testimonials h2 {
  width: min(100%, 973px);
  margin: 0 auto 17px;
  color: #fff;
  font-size: 60px;
  font-weight: 800;
  line-height: 72px;
}

.overview-testimonials > p {
  width: min(100%, 1140px);
  margin: 0 auto 68px;
  color: #fff;
  font-size: 32.6px;
  font-weight: 500;
  line-height: 39.2px;
}

.overview-testimonials > div {
  display: grid;
  grid-template-columns: repeat(3, 291px);
  gap: 37px;
  justify-content: center;
}

.overview-testimonials article {
  min-height: 250px;
  padding: 24px 24px 28px;
  color: var(--wix-ink);
  background: #fff;
  text-align: left;
}

.overview-testimonials article h3 {
  display: block;
}

.overview-testimonials article h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  line-height: 28.8px;
}

.testimonial-label {
  margin: 0 0 20px;
  color: #847539;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  text-transform: uppercase;
}

.testimonial-service {
  margin: 0 0 24px;
  color: rgb(102, 101, 88);
  font-size: 14px;
  line-height: 22.4px;
}

.testimonial-text {
  margin: 0;
  color: var(--wix-ink);
  font-size: 15px;
  line-height: 24px;
}

.overview-bottom-form {
  min-height: 642px;
  padding: 0;
  background: var(--warm-cream);
}

.overview-bottom-form .overview-form {
  box-sizing: border-box;
  width: 640px;
  min-height: 642px;
  margin-left: calc(50% - 320px);
  padding: 24px;
  background: var(--warm-cream);
}

.overview-bottom-form .overview-form input {
  min-height: 40px;
}

.overview-bottom-form .overview-form button {
  width: 284px;
  min-height: 41px;
}

.category-hero {
  position: relative;
  height: 754px;
  padding-top: 111px;
  color: #fff;
  background: #fff;
}

.category-hero > img {
  display: block;
  width: min(83.99vw, 1600px);
  height: 643px;
  margin: 0 auto;
  object-fit: cover;
  filter: brightness(0.58);
}

.category-hero-copy {
  position: absolute;
  top: 248px;
  left: calc(50% - 716px);
  width: 799px;
}

.category-hero-copy h1 {
  margin-bottom: 135px;
  color: #fff;
  font-size: 68px;
  font-weight: 400;
  line-height: 81.6px;
}

.category-hero-copy p {
  margin: 0 0 90px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 35.2px;
}

.category-hero-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  min-height: 69px;
  margin-left: 302px;
  padding: 10px 18px;
  color: #fff;
  background: var(--wix-olive);
  font-size: 17.6px;
  font-weight: 400;
  line-height: 24.6px;
  text-align: center;
  text-decoration: none;
}

.category-hero-form {
  left: calc(50% + 210px);
}

.category-services {
  min-height: 1721px;
  padding: 140px 20px 50px;
  background: #fff;
}

.category-service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  width: 1202px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}

.category-service-card {
  position: relative;
  display: block;
  width: 374px;
  height: 487px;
  overflow: hidden;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  background: var(--wix-olive-dark);
}

.category-service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, filter 240ms ease;
}

.category-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
}

.category-service-card span {
  position: absolute;
  z-index: 1;
  top: 210px;
  left: 15px;
  right: 15px;
  display: block;
  text-align: center;
}

.category-service-card h3 {
  margin: 0 0 55px;
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  line-height: normal;
}

.category-service-card p {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}

.category-service-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.05);
}

.item-hero {
  position: relative;
  min-height: 1114px;
  padding-top: 209px;
  color: #fff;
  background: #fff;
}

.item-hero::before {
  content: "";
  position: absolute;
  top: 111px;
  left: 50%;
  width: min(83.99vw, 1600px);
  height: 300px;
  background: var(--wix-ink);
  transform: translateX(-50%);
}

.item-hero-copy {
  position: relative;
  z-index: 1;
  width: min(46.15vw, 879px);
  margin-left: calc(50% - 677px);
}

.item-hero-copy h1 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 42px;
  font-weight: 400;
  line-height: 50.4px;
}

.item-hero-copy p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
}

.item-hero-image {
  position: relative;
  z-index: 1;
  display: block;
  width: min(70.55vw, 1344px);
  height: 775px;
  margin: 36px auto 0;
  object-fit: cover;
}

.item-detail-copy {
  padding: 49px 20px 0;
  background: #fff;
  color: var(--wix-ink);
}

.item-detail-copy article {
  width: min(100% - 40px, 1129px);
  margin: 0 auto;
}

.item-detail-copy p,
.item-detail-copy li {
  margin: 0 0 25.6px;
  color: var(--wix-ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
}

.item-detail-copy em {
  font-style: italic;
}

.item-before-after {
  padding: 74px 20px 154px;
  background: #fff;
}

.item-before-after img {
  display: block;
  width: 1000px;
  max-width: 100%;
  height: 562px;
  margin: 0 auto;
  object-fit: contain;
}

.item-bottom-form {
  position: relative;
  min-height: 619px;
  padding: 66px 0 67px;
  background: #fff;
}

.item-bottom-form::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  width: min(83.99vw, 1600px);
  background: var(--warm-cream);
  transform: translateX(-50%);
}

.item-bottom-form .overview-form {
  position: relative;
  width: 640px;
  min-height: 486px;
  margin-left: calc(50% - 320px);
  padding: 24px;
  background: transparent;
}

.item-bottom-form .overview-form h2 {
  height: 42px;
  margin-bottom: 24px;
  font-size: 24px;
  line-height: 36px;
  white-space: nowrap;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  padding: clamp(110px, 12vw, 154px) clamp(20px, 6vw, 120px) clamp(64px, 9vw, 110px);
  background: #fff;
}

.service-hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.4rem);
}

.detail-image,
.before-after {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.detail-image {
  aspect-ratio: 1 / 1;
}

.before-after {
  aspect-ratio: 16 / 9;
}

.rich-copy {
  max-width: 780px;
}

.rich-copy p,
.rich-copy li {
  color: var(--muted);
  font-size: 1.05rem;
}

.rich-copy ul,
.rich-copy ol {
  padding-left: 1.25rem;
}

.card.compact {
  min-height: 120px;
}

.home-highlights {
  min-height: 1017px;
  padding: 80px 50px;
  background: var(--warm-cream);
  color: var(--wix-ink);
}

.home-highlights .eyebrow {
  margin-bottom: 30px;
  color: var(--wix-ink);
  line-height: 22.4px;
}

.home-highlights h2 {
  width: min(100%, 799px);
  max-width: 799px;
  margin-bottom: 40px;
  font-size: 45px;
  line-height: 63px;
  font-weight: 400;
}

.home-highlights .grid {
  width: min(100%, 1781px);
  gap: 30px;
}

.service-summary {
  position: relative;
  min-height: 509px;
  padding: 239px 61px 48px;
  color: var(--warm-cream);
  background: var(--wix-olive-dark);
}

.service-icon-svg {
  position: absolute;
  top: 37px;
  left: 61px;
  width: 97px;
  height: 125px;
  color: var(--warm-cream);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-summary h3 {
  margin-bottom: 39px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 22.4px;
  text-transform: uppercase;
  color: var(--warm-cream);
}

.service-summary p {
  color: var(--warm-cream);
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.home-highlights .button {
  width: 176px;
  min-height: 50px;
  margin-top: 80px;
  color: #fff;
  background: var(--wix-ink);
  border-radius: 10px;
  font-weight: 400;
}

.cta-band {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: clamp(32px, 5vw, 56px) clamp(20px, 6vw, 120px);
  color: #fff;
  background: var(--green);
}

.cta-band h2 {
  margin-bottom: 8px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.82rem;
  font-weight: 400;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.notice {
  margin-top: 18px;
  padding: 16px;
  border-left: 4px solid var(--olive);
  background: #fff;
  color: var(--muted);
}

.article-list {
  display: grid;
  gap: 16px;
}

.article-list a {
  display: block;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
}

.article-list h2 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 3vw, 2.15rem);
}

.meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.page-hero {
  padding: clamp(120px, 12vw, 158px) clamp(20px, 6vw, 120px) clamp(42px, 7vw, 86px);
  background: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 620ms ease var(--reveal-delay, 0ms), transform 620ms ease var(--reveal-delay, 0ms);
}

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

.training-page .course-hero.reveal,
.training-page .course-shell.reveal {
  opacity: 1;
  transform: none;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  min-height: 669px;
  padding: 0;
  color: var(--warm-cream);
  background: var(--wix-olive);
}

.site-footer > div:not(.footer-legal) {
  min-height: 494px;
  padding: 80px 48px 48px;
  background: var(--wix-olive);
}

.site-footer::after {
  content: none;
}

.site-footer h2 {
  margin-bottom: 10px;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  color: var(--warm-cream);
}

.site-footer a {
  text-decoration: none;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 65px;
  color: #fff;
}

.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  gap: 88px;
  align-items: end;
  min-height: 175px;
  padding: 0 50px 72px;
  background: var(--wix-ink);
}

.footer-legal p {
  margin: 0;
}

.footer-legal p:last-child {
  margin-left: auto;
}

@media (max-width: 980px) {
  .site-header {
    width: 100%;
    grid-template-columns: auto auto;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 32px rgba(23, 29, 36, 0.08);
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .quote-link {
    display: none;
  }

  .site-header.open .site-nav,
  .site-header.open .quote-link {
    display: flex;
    grid-column: 1 / -1;
  }

  .site-header.open .site-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .site-header.open .quote-link {
    justify-self: start;
  }

  .split,
  .grid,
  .grid.two,
  .service-hero,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .about-home .split {
    grid-template-columns: 1fr;
  }

  .about-home .split > div:first-child {
    padding-left: 0;
  }

  .about-home .image-panel {
    min-height: 520px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .home-stats {
    padding: 64px 24px;
  }

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

  .home-stats .stat {
    min-height: 280px;
  }

  .home-highlights {
    min-height: auto;
    padding: 64px 24px;
  }

  .services-overview-page .site-header,
  .pricing-page .site-header,
  .realtors-page .site-header,
  .about-page .site-header,
  .blog-page .site-header,
  .blog-detail-page .site-header,
  .training-page .site-header,
  .service-item-page .site-header {
    min-height: 86px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
  }

  .overview-hero {
    height: auto;
    padding: 86px 24px 48px;
  }

  .category-hero {
    height: auto;
    padding: 86px 24px 48px;
  }

  .overview-hero > img {
    width: 100%;
    height: min(460px, 62vw);
  }

  .category-hero > img {
    width: 100%;
    height: min(460px, 62vw);
  }

  .overview-hero-copy,
  .overview-hero-form {
    position: static;
    width: 100%;
    max-width: 620px;
    margin: 32px auto 0;
  }

  .overview-hero-copy h1,
  .overview-form h2,
  .overview-services h2,
  .overview-why h2,
  .overview-process h2,
  .overview-testimonials h2 {
    font-size: clamp(2.5rem, 9vw, 4rem);
    line-height: 1.15;
  }

  .overview-feature-row,
  .overview-process-grid,
  .overview-testimonials > div {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .overview-feature-strip,
  .overview-services,
  .overview-why,
  .overview-process,
  .overview-testimonials,
  .overview-bottom-form {
    min-height: auto;
  }

  .category-hero-copy {
    position: static;
    width: 100%;
    max-width: 620px;
    margin: 32px auto 0;
  }

  .category-hero-copy h1 {
    margin-bottom: 24px;
    font-size: clamp(2.5rem, 9vw, 4rem);
    line-height: 1.15;
  }

  .category-hero-copy p {
    margin-bottom: 28px;
    font-size: 1.1rem;
    line-height: 1.55;
  }

  .category-hero-copy a {
    margin-left: 0;
  }

  .category-services {
    min-height: auto;
    padding: 56px 24px;
  }

  .category-service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    max-width: 100%;
  }

  .category-service-card {
    width: min(100%, 374px);
    margin: 0 auto;
  }

  .item-hero {
    min-height: auto;
    padding: 132px 24px 48px;
    background: var(--wix-ink);
  }

  .item-hero::before,
  .item-bottom-form::before {
    content: none;
  }

  .item-hero-copy {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
  }

  .item-hero-copy h1 {
    font-size: clamp(2.4rem, 9vw, 4rem);
    line-height: 1.15;
  }

  .item-hero-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1024 / 590;
    margin-top: 34px;
  }

  .item-detail-copy {
    padding: 56px 24px 0;
  }

  .item-detail-copy article {
    width: 100%;
  }

  .item-before-after {
    padding: 64px 24px 72px;
  }

  .item-before-after img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .item-bottom-form {
    min-height: auto;
    padding: 56px 24px;
    background: var(--warm-cream);
  }

  .item-bottom-form .overview-form {
    width: 100%;
    min-height: auto;
    margin: 0 auto;
    padding: 0;
  }

  .item-bottom-form .overview-form h2 {
    height: auto;
    white-space: normal;
  }

  .overview-services {
    padding: 56px 24px;
  }

  .overview-service-grid {
    width: 100%;
  }

  .overview-service-card {
    width: min(100%, 374px);
  }

  .overview-why {
    padding: 72px 24px;
  }

  .overview-process h2 {
    margin-bottom: 56px;
  }

  .overview-bottom-form {
    padding: 56px 24px;
  }

  .overview-bottom-form .overview-form {
    width: 100%;
    max-width: 640px;
    min-height: auto;
    margin: 0 auto;
    padding: 0;
  }

  .pricing-hero,
  .pricing-methods,
  .pricing-choice,
  .pricing-copy {
    height: auto;
    min-height: auto;
    padding: 86px 24px 56px;
  }

  .pricing-hero {
    color: #fff;
    background: var(--wix-ink);
  }

  .pricing-hero > img {
    width: 100%;
    height: min(460px, 62vw);
  }

  .pricing-hero-copy {
    position: static;
    width: 100%;
    max-width: 620px;
    margin: 32px auto 0;
  }

  .pricing-hero-copy h1,
  .pricing-choice h2 {
    font-size: clamp(2.5rem, 9vw, 4rem);
    line-height: 1.15;
  }

  .pricing-hero-copy p {
    width: 100%;
    font-size: 1.1rem;
    line-height: 1.55;
  }

  .pricing-method-grid,
  .pricing-choice-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-method-card,
  .pricing-choice-grid article,
  .pricing-choice-grid img {
    width: 100%;
    max-width: 474px;
    margin-right: auto;
    margin-left: auto;
  }

  .pricing-choice-grid p {
    width: auto;
    margin-left: 0;
  }

  .pricing-copy article {
    width: 100%;
    max-width: 100%;
  }

  .realtor-hero,
  .realtor-services,
  .realtor-handle,
  .realtor-process,
  .realtor-contact,
  .realtor-faq {
    height: auto;
    min-height: auto;
    padding: 86px 24px 56px;
  }

  .realtor-hero {
    color: #fff;
    background: var(--wix-ink);
  }

  .realtor-hero > img {
    width: 100%;
    height: min(460px, 62vw);
  }

  .realtor-hero-copy {
    position: static;
    width: 100%;
    max-width: 720px;
    margin: 32px auto 0;
  }

  .realtor-hero-copy h1,
  .realtor-services h2,
  .realtor-handle h2,
  .realtor-process h2 {
    font-size: clamp(2.5rem, 9vw, 4rem);
    line-height: 1.15;
  }

  .realtor-hero-copy p {
    width: 100%;
    font-size: 1.1rem;
    line-height: 1.55;
  }

  .realtor-hero-copy > div,
  .realtor-service-grid,
  .realtor-process-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .realtor-service-grid,
  .realtor-process-grid {
    display: grid;
  }

  .realtor-service-card,
  .realtor-service-card img,
  .realtor-process-grid article,
  .realtor-process-grid img {
    width: 100%;
    max-width: 374px;
    margin-right: auto;
    margin-left: auto;
  }

  .realtor-service-card img,
  .realtor-process-grid img {
    height: auto;
    aspect-ratio: 374 / 487;
  }

  .realtor-process-grid img {
    max-width: 270px;
    aspect-ratio: 270 / 352;
  }

  .realtor-handle-list {
    width: 100%;
  }

  .realtor-handle-item {
    grid-template-columns: 140px 1fr;
    gap: 24px;
    min-height: auto;
    margin-bottom: 32px;
    width: 100%;
    min-width: 0;
  }

  .realtor-handle-item > div,
  .realtor-handle-item p {
    width: auto;
    min-width: 0;
    max-width: 100%;
  }

  .realtor-handle-item img {
    width: 140px;
    height: 140px;
  }

  .realtor-handle-item h3 {
    margin-top: 0;
  }

  .realtor-contact {
    background: #fff;
  }

  .realtor-contact-form {
    width: 100%;
    max-width: 640px;
    height: auto;
  }

  .realtor-contact-form h2,
  .realtor-faq h2 {
    height: auto;
    font-size: clamp(2.5rem, 9vw, 4rem);
    line-height: 1.15;
  }

  .realtor-faq-list summary {
    padding-right: 18px;
    padding-left: 18px;
    font-size: 19px;
    line-height: 24px;
  }

  .realtor-faq-panel p {
    width: 100%;
    font-size: 16px;
    line-height: 25.6px;
  }

  .realtor-faq-panel {
    padding: 18px;
  }

  .about-hero,
  .about-stats,
  .about-story,
  .about-values,
  .about-team,
  .about-cta,
  .about-contact,
  .about-faq {
    height: auto;
    min-height: auto;
    padding: 86px 24px 56px;
  }

  .about-hero {
    color: #fff;
    background: var(--wix-ink);
  }

  .about-hero > img {
    width: 100%;
    height: min(460px, 62vw);
  }

  .about-hero-copy {
    position: static;
    width: 100%;
    max-width: 760px;
    margin: 32px auto 0;
  }

  .about-hero-copy h1,
  .about-values > h2,
  .about-team > h2,
  .about-cta h2,
  .about-faq h2 {
    width: 100%;
    font-size: clamp(2.5rem, 9vw, 4rem);
    line-height: 1.15;
  }

  .about-hero-copy p {
    width: 100%;
    font-size: 1.1rem;
    line-height: 1.55;
  }

  .about-stats > div,
  .about-story-grid,
  .about-values > div {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-stats article:nth-child(4) {
    grid-column: auto;
  }

  .about-story-grid {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
  }

  .about-started img {
    margin-left: 0;
  }

  .about-values > div {
    margin-top: 42px;
  }

  .about-value-icon {
    position: static;
    margin: 0 auto 18px;
    transform: none;
  }

  .about-team img {
    width: 100%;
    max-width: 757px;
    height: auto;
    aspect-ratio: 757 / 504;
  }

  .about-cta {
    min-height: 275px;
  }

  .about-cta > div {
    padding-top: 0;
  }

  .about-contact .realtor-contact-form {
    width: 100%;
    max-width: 640px;
    height: auto;
  }

  .about-faq-list summary {
    padding-right: 18px;
    padding-left: 18px;
    font-size: 19px;
    line-height: 24px;
  }

  .about-faq-panel {
    padding: 18px;
  }

  .about-faq-panel p {
    width: 100%;
    font-size: 16px;
    line-height: 25.6px;
  }

  .blog-listing {
    min-height: auto;
    padding: 118px 24px 72px;
  }

  .blog-tabs,
  .blog-filter-title,
  .blog-card-grid {
    width: 100%;
  }

  .blog-filter-title {
    height: 56px;
    margin-top: 32px;
  }

  .blog-card-grid {
    grid-template-columns: repeat(2, minmax(0, 326px));
    justify-content: center;
    gap: 42px 32px;
  }

  .blog-card {
    width: 100%;
    max-width: 326px;
  }

  .blog-card-image,
  .blog-card-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 326 / 245;
  }

  .blog-post-detail {
    min-height: auto;
    padding: 118px 24px 72px;
  }

  .blog-post-back,
  .blog-post-shell,
  .blog-recent {
    width: 100%;
    max-width: 740px;
  }

  .blog-post-back {
    margin-bottom: 48px;
  }

  .blog-post-shell h1 {
    font-size: clamp(2.3rem, 9vw, 3.25rem);
    line-height: 1.18;
  }

  .blog-post-image.wide,
  .blog-post-image.small {
    width: 100%;
    max-width: 740px;
  }

  .blog-post-image.small {
    max-width: 350px;
  }

  .blog-post-body {
    margin-top: 42px;
  }

  .blog-post-body p {
    font-size: 16px;
    line-height: 27px;
  }

  .blog-post-body h2 {
    font-size: 22px;
    line-height: 29px;
  }

  .blog-recent-grid {
    grid-template-columns: repeat(2, minmax(0, 289px));
    justify-content: center;
  }

  .course-hero,
  .course-shell {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .course-hero {
    min-height: auto;
    padding-top: 118px;
  }

  .course-hero-image img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1280 / 500;
  }

  .course-hero-copy h1 {
    font-size: clamp(2.4rem, 9vw, 3.4rem);
  }

  .course-sidebar {
    position: static;
    max-height: none;
  }

  .course-shell {
    padding-top: 48px;
    padding-bottom: 72px;
  }

  .home-highlights h2 {
    width: 100%;
    font-size: clamp(2.25rem, 7vw, 3rem);
    line-height: 1.2;
  }

  .service-summary {
    min-height: 300px;
    padding: 210px 32px 40px;
  }

  .service-icon-svg {
    left: 32px;
  }

  .cta-band {
    display: grid;
  }

  .video-hero {
    height: 760px;
    padding: 132px 24px 70px;
  }

  .video-hero-content,
  .video-hero h1,
  .video-hero .lead {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .video-hero h1 {
    font-size: clamp(2.75rem, 12vw, 3.4rem);
    line-height: 1.16;
    overflow-wrap: break-word;
  }

  .video-hero .lead {
    font-size: clamp(1.1rem, 5vw, 1.35rem);
  }

  .featured-services-intro {
    height: auto;
    padding: 64px 24px;
  }

  .featured-gallery {
    height: 430px;
    padding-left: 24px;
    padding-bottom: 48px;
  }

  .gallery-marquee {
    --gallery-cycle-width: 1620px;
    gap: 20px;
    animation-duration: 26s;
  }

  .gallery-tile {
    flex-basis: 520px;
    width: 520px;
    height: 360px;
  }

  .site-footer > div {
    min-height: auto;
    padding: 44px 24px;
  }

  .footer-legal {
    display: grid;
    gap: 12px;
    align-items: start;
    padding: 32px 24px 44px;
  }

  .footer-legal p:last-child {
    margin-left: 0;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 2.65rem;
  }

  .hero {
    min-height: 680px;
    align-items: center;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .hero .lead {
    font-size: 1.15rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .realtor-hero-copy a,
  .realtor-primary-cta,
  .realtor-secondary-cta,
  .about-hero-copy a,
  .realtor-contact-form button {
    width: 100%;
  }

  .realtor-handle-item {
    grid-template-columns: 1fr;
  }

  .realtor-handle-item img {
    width: 204px;
    height: 204px;
  }

  .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .blog-recent-grid {
    grid-template-columns: 1fr;
  }

  .blog-recent-card,
  .blog-recent-image,
  .blog-recent-image img {
    width: 100%;
    max-width: 289px;
  }

  .course-hero-meta {
    grid-template-columns: 1fr;
  }

  .course-player-actions,
  .course-player-actions button,
  .course-primary,
  .course-certificate button {
    width: 100%;
  }
}

@media print {
  .site-header,
  .site-footer,
  .course-hero,
  .course-sidebar,
  .course-player-card,
  .course-gate {
    display: none !important;
  }

  .course-shell {
    display: block;
    padding: 0;
    background: #fff;
  }

  .course-certificate {
    margin: 0;
    min-height: 90vh;
    border: 2px solid var(--wix-olive);
  }
}

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