/*
Theme Name: PCG Property Consulting Group
Theme URI: https://propertyconsultinggroup.ca
Author: Property Consulting Group
Author URI: https://propertyconsultinggroup.ca
Description: Custom WordPress theme for Property Consulting Group — Multifamily Real Estate Advisory. Built for high-conversion performance with AEO/GEO/SEO alignment.
Version: 1.0.0
License: Proprietary
Text Domain: pcg
*/

/* ============================================================
   CSS RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #8F1D23;
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: #6d161b;
}

ul, ol {
  list-style: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: #191919;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.625rem, 3vw, 2.5rem);
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
}

h4 {
  font-size: 1.125rem;
}

p {
  margin-bottom: 1.25rem;
}

p:last-child {
  margin-bottom: 0;
}

strong, b {
  font-weight: 700;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 900px;
}

.container--wide {
  max-width: 1400px;
}

.section {
  padding: 80px 0;
}

.section--sm {
  padding: 48px 0;
}

.section--lg {
  padding: 120px 0;
}

.section--dark {
  background: #191919;
  color: #fff;
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #fff;
}

.section--dark p {
  color: #ccc;
}

.section--light {
  background: #F8F9FA;
}

.section--white {
  background: #fff;
}

/* Flexbox utilities */
.flex {
  display: flex;
}

.flex--center {
  align-items: center;
}

.flex--between {
  justify-content: space-between;
}

.flex--wrap {
  flex-wrap: wrap;
}

.flex--col {
  flex-direction: column;
}

/* Grid utilities */
.grid {
  display: grid;
  gap: 32px;
}

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

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Center orphaned last card in 3-column grid */
.grid--3 > .card:last-child:nth-child(3n+1) {
  grid-column: 2;
}


.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Split layouts */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split--60-40 {
  grid-template-columns: 3fr 2fr;
}

.split--40-60 {
  grid-template-columns: 2fr 3fr;
}

/* ============================================================
   RED ACCENT LINE
   ============================================================ */
.accent-line {
  display: block;
  width: 60px;
  height: 4px;
  background: #8F1D23;
  margin-bottom: 24px;
}

.accent-line--top::before {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #8F1D23;
  margin-bottom: 16px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  line-height: 1.4;
}

.btn--primary {
  background: #8F1D23;
  color: #fff;
}

.btn--primary:hover {
  background: #6d161b;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(143, 29, 35, 0.3);
}

.btn--secondary {
  background: transparent;
  color: #8F1D23;
  border: 2px solid #8F1D23;
}

.btn--secondary:hover {
  background: #8F1D23;
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: #8F1D23;
  padding: 8px 0;
  font-weight: 600;
}

.btn--ghost:hover {
  color: #6d161b;
}

.btn--ghost::after {
  content: ' \2192';
  transition: transform 0.25s ease;
  display: inline-block;
}

.btn--ghost:hover::after {
  transform: translateX(4px);
}

.btn--white {
  background: #fff;
  color: #8F1D23;
}

.btn--white:hover {
  background: #F8F9FA;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn--lg {
  padding: 18px 40px;
  font-size: 1rem;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-logo img {
  height: 44px;
  width: auto;
}

.site-logo__text {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #191919;
  line-height: 1.2;
}

.site-logo__text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: #8F8A7D;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Main nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: #191919;
  padding: 8px 16px;
  border-radius: 4px;
  transition: color 0.25s ease, background 0.25s ease;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a.active {
  color: #8F1D23;
  background: rgba(143, 29, 35, 0.05);
}

/* Services dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown__trigger {
  cursor: pointer;
}

.nav-dropdown__trigger::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 6px;
  vertical-align: middle;
  transition: transform 0.25s ease;
}

.nav-dropdown:hover .nav-dropdown__trigger::after {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.875rem;
  border-radius: 0;
}

.nav-dropdown__menu a:hover {
  background: #F8F9FA;
}

/* Header CTA */
.header-cta {
  margin-left: 16px;
}

/* Mobile hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #191919;
  transition: all 0.3s ease;
}

/* Mobile nav open state */
.mobile-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero--home {
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero--dark {
  background: #191919;
  text-align: center;
  padding: 80px 0 72px;
}

.hero--dark .hero__content {
  max-width: 900px;
  margin: 0 auto;
}

.hero--dark .accent-line {
  margin: 0 auto 24px;
}

.hero--dark .hero__title {
  color: #FFFFFF;
}

.hero--dark .hero__subtitle {
  color: #A89F91;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero--dark .hero__eyebrow {
  color: #8F1D23;
}

.hero--dark .hero__ctas {
  justify-content: center;
}

.hero--dark .btn--primary {
  background: #8F1D23;
  border-color: #8F1D23;
}

.hero--dark .btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}

.hero--dark .btn--ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.05);
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #8F1D23;
  margin-bottom: 16px;
}

.hero__title {
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  color: #555;
  max-width: 620px;
  margin-bottom: 12px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
}

.hero__visual-bg {
  position: absolute;
  top: -40px;
  right: -60px;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(143, 29, 35,0.06) 0%, rgba(143, 29, 35,0.02) 100%);
  border-radius: 50%;
  z-index: 0;
}

/* ============================================================
   SOCIAL PROOF BAR
   ============================================================ */
.proof-bar {
  background: #191919;
  padding: 40px 0;
}

.proof-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.proof-bar__item {
  text-align: center;
}

.proof-bar__number {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #fff;
  line-height: 1.1;
}

.proof-bar__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #A89F91;
  margin-top: 4px;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: #fff;
  padding: 32px;
  border-radius: 4px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #8F1D23;
  border-radius: 4px 4px 0 0;
}

.card__title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.card__text {
  color: #555;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: #8F1D23;
  margin-top: auto;
  padding-top: 16px;
  transition: gap 0.25s ease;
}

.card__link:hover {
  gap: 10px;
}

.card__link::after {
  content: '\2192';
}

/* Outcome cards (metric cards) */
.card--outcome {
  padding: 28px 32px;
}

.card--outcome .card__metric {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #191919;
  margin-bottom: 8px;
  line-height: 1.3;
}

.card--outcome .card__text {
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* Persona cards (who we work with) */
.card--persona .card__title {
  font-size: 1.125rem;
  color: #8F1D23;
}

/* Service cards */
.card--service {
  padding: 28px 32px;
}

.card--service .card__title {
  font-size: 1.0625rem;
  margin-bottom: 10px;
}

/* ============================================================
   SPLIT CONTENT (Text + Visual)
   ============================================================ */
.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-content--reverse {
  direction: rtl;
}

.split-content--reverse > * {
  direction: ltr;
}

.split-content__visual {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #F8F9FA;
  min-height: 300px;
}

.split-content__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dashboard placeholder */
.dashboard-placeholder {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1215 100%);
  border-radius: 8px;
  padding: 32px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.dashboard-placeholder::after {
  content: 'Dashboard Preview';
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
   PRE-FOOTER CTA
   ============================================================ */
.prefooter-cta {
  background: #191919;
  padding: 80px 0;
  text-align: center;
}

.prefooter-cta h2 {
  color: #fff;
  max-width: 800px;
  margin: 0 auto 20px;
}

.prefooter-cta p {
  color: #A89F91;
  max-width: 700px;
  margin: 0 auto 32px;
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #111;
  color: #A0A0A0;
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col__title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #A89F91;
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #A0A0A0;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: #A0A0A0;
  padding: 4px 0;
  transition: color 0.25s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-brand {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
}

.footer-bottom a {
  color: #A0A0A0;
}

.footer-bottom a:hover {
  color: #fff;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: #191919;
  margin-bottom: 6px;
}

.form-group label .required {
  color: #8F1D23;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  color: #333;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-control:focus {
  outline: none;
  border-color: #8F1D23;
  box-shadow: 0 0 0 3px rgba(143, 29, 35, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: #fff;
  border: 1px solid #E2E5EB;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.blog-card__image {
  display: block;
  aspect-ratio: 16/9;
  background: #191919;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__body {
  padding: 24px;
}

.blog-card__category {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8F1D23;
  margin-bottom: 8px;
}

.blog-card__title {
  font-size: 1.125rem;
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-card__title a {
  color: #191919;
}

.blog-card__title a:hover {
  color: #8F1D23;
}

.blog-card__excerpt {
  font-size: 0.875rem;
  color: #A89F91;
  line-height: 1.6;
  margin-bottom: 12px;
}

.blog-card__meta {
  font-size: 0.8125rem;
  color: #A89F91;
}

/* Featured post */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
  padding: 40px;
  background: #FFFFFF;
  border-radius: 8px;
}

.blog-featured__image {
  border-radius: 4px;
  overflow: hidden;
  height: 300px;
  background: #191919;
}

.blog-featured__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Single post */
.single-post__header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.single-post__category {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8F1D23;
  margin-bottom: 16px;
}

.single-post__content {
  max-width: 760px;
  margin: 0 auto;
}

.single-post__content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
}

.single-post__content h3 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.single-post__content p {
  font-size: 1.0625rem;
  line-height: 1.8;
}

.single-post__content ul,
.single-post__content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.single-post__content li {
  margin-bottom: 8px;
  list-style: disc;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.single-post__content ol li {
  list-style: decimal;
}

/* ============================================================
   COMPARISON TABLE (Command Center page)
   ============================================================ */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.comparison-table th,
.comparison-table td {
  padding: 20px 24px;
  text-align: left;
  font-size: 0.9375rem;
}

.comparison-table thead th {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #666;
  border-bottom: 2px solid #eee;
}

.comparison-table thead th:last-child {
  color: #8F1D23;
}

.comparison-table tbody tr {
  border-bottom: 1px solid #eee;
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table tbody td:first-child {
  font-weight: 600;
  color: #191919;
}

.comparison-table tbody td:nth-child(2) {
  color: #888;
}

.comparison-table tbody td:last-child {
  color: #333;
  border-left: 3px solid #8F1D23;
  background: rgba(143, 29, 35, 0.02);
}

/* ============================================================
   AI AGENT CARDS (Command Center page)
   ============================================================ */
.agent-card {
  background: #fff;
  border-radius: 8px;
  padding: 32px;
  position: relative;
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.agent-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.agent-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #8F1D23;
  border-radius: 8px 8px 0 0;
}

.agent-card__name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #191919;
  margin-bottom: 12px;
}

.agent-card__text {
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.7;
}

/* Feature tags */
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.feature-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  background: rgba(143, 29, 35, 0.08);
  color: #8F1D23;
  border-radius: 100px;
  white-space: nowrap;
}

.feature-tag:hover {
  background: rgba(143, 29, 35, 0.15);
  color: #8F1D23;
  cursor: pointer;
}

.feature-tag.active {
  background: #8F1D23 !important;
  color: #ffffff !important;
}

.blog-card__cta {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #8F1D23;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.blog-card__cta:hover {
  text-decoration: underline;
}

/* ============================================================
   MODULE LIST (Command Center page)
   ============================================================ */
.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.module-card {
  padding: 28px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  transition: border-color 0.3s ease;
}

.module-card:hover {
  border-color: #8F1D23;
}

.module-card__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #191919;
  margin-bottom: 10px;
}

.module-card__text {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.6;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-bio {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}

.about-bio__photo {
  border-radius: 8px;
  overflow: hidden;
  background: #F8F9FA;
}

.about-bio__photo img {
  width: 100%;
  height: auto;
}

.about-bio__name {
  font-size: 1.75rem;
  margin-bottom: 4px;
}

.about-bio__role {
  font-size: 0.9375rem;
  color: #8F1D23;
  font-weight: 600;
  margin-bottom: 24px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 28px 20px;
  position: relative;
}

.value-card::before {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background: #8F1D23;
  margin: 0 auto 20px;
}

.value-card__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #191919;
  margin-bottom: 8px;
}

.value-card__text {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.6;
}

/* ============================================================
   PAIN / PATTERN / CALLOUT BLOCKS
   ============================================================ */
.callout-block {
  background: #F8F9FA;
  border-left: 4px solid #8F1D23;
  padding: 28px 32px;
  margin: 32px 0;
  border-radius: 0 4px 4px 0;
}

.callout-block__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #8F1D23;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.callout-block p {
  font-size: 0.9375rem;
  color: #444;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.5s; }
.stagger.visible > *:nth-child(7) { transition-delay: 0.6s; }

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — TABLET (1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .split,
  .split--60-40,
  .split--40-60,
  .split-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split-content--reverse {
    direction: ltr;
  }

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

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

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .about-bio__photo {
    max-width: 300px;
  }

  .comparison-table {
    display: block;
    overflow-x: auto;
  }

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

/* ============================================================
   RESPONSIVE — MOBILE (768px)
   ============================================================ */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section--lg {
    padding: 80px 0;
  }

  .hero {
    padding: 120px 0 60px;
  }

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

  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }

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

  .proof-bar__inner {
    flex-direction: column;
    gap: 24px;
  }

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

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

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

  /* Mobile nav */
  .main-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    padding: 32px 24px;
    gap: 0;
    overflow-y: auto;
    z-index: 999;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-dropdown__menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 0 16px;
    display: none;
  }

  .nav-dropdown.open .nav-dropdown__menu {
    display: block;
  }

  .mobile-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (480px)
   ============================================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 100px 0 48px;
  }

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

  .proof-bar__number {
    font-size: 2rem;
  }

  .btn--lg {
    padding: 14px 28px;
    font-size: 0.9375rem;
  }
}


/* ============================================================
   NEW PRODUCTION COMPONENTS
   ============================================================ */

/* ─── ENGAGEMENT TIMELINE ───────────────────────────────── */
.engagement-timeline {
	margin-top: 32px;
}
.engagement-phase {
	padding: 20px 0 20px 28px;
	border-left: 3px solid #E0DDD9;
	position: relative;
	margin-bottom: 0;
}
.engagement-phase:last-child {
	border-left-color: transparent;
}
.engagement-phase::before {
	content: '';
	position: absolute;
	left: -7px;
	top: 24px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #8F1D23;
	border: 2px solid #fff;
}
.engagement-phase__label {
	font-family: 'Inter', sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #8F1D23;
	margin-bottom: 4px;
}
.engagement-phase__title {
	font-family: 'Inter', sans-serif;
	font-size: 1.125rem;
	font-weight: 700;
	color: #191919;
	margin-bottom: 8px;
}
.engagement-phase p {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: #4A5068;
}

/* ─── FIELD STUDY / CASE STUDY CALLOUT ──────────────────── */
.field-study {
	border-left: 4px solid #8F1D23;
	padding: 28px 32px;
	background: #F8F9FA;
	border-radius: 0 8px 8px 0;
}
.field-study__label {
	font-family: 'Inter', sans-serif;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #8F1D23;
	margin-bottom: 8px;
}
.field-study__title {
	font-family: 'Inter', sans-serif;
	font-size: 1.125rem;
	font-weight: 700;
	color: #191919;
	margin-bottom: 16px;
}
.field-study p {
	font-size: 0.9375rem;
	line-height: 1.7;
	color: #4A5068;
	margin-bottom: 12px;
}
.field-study p:last-child {
	margin-bottom: 0;
}

/* ─── RELATED PILLAR CARDS ──────────────────────────────── */
.card--related {
	border-top: 3px solid #8F1D23;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card--related:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* ─── FEATURE SERVICE CARD (Full-width lead) ────────────── */
.card--feature {
	background: #F8F9FA;
	border-left: 4px solid #8F1D23;
	padding: 36px 40px;
}
.card--feature .card__title {
	font-size: 1.25rem;
}
.card--feature .card__text {
	font-size: 1rem;
	line-height: 1.7;
}

/* ─── SERVICE COMPARISON MATRIX ─────────────────────────── */
.service-matrix {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	font-size: 0.9375rem;
	margin-top: 24px;
}
.service-matrix th {
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 0.8125rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #fff;
	background: #191919;
	padding: 14px 16px;
	text-align: left;
	border-bottom: 3px solid #8F1D23;
}
.service-matrix th:first-child {
	border-radius: 8px 0 0 0;
}
.service-matrix th:last-child {
	border-radius: 0 8px 0 0;
}
.service-matrix td {
	padding: 14px 16px;
	border-bottom: 1px solid #E0DDD9;
	vertical-align: top;
	line-height: 1.5;
}
.service-matrix tr:nth-child(even) td {
	background: #F8F9FA;
}
.service-matrix td:first-child {
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	color: #191919;
	white-space: nowrap;
}
@media (max-width: 768px) {
	.service-matrix {
		font-size: 0.8125rem;
	}
	.service-matrix td:first-child {
		white-space: normal;
	}
}

/* ─── TRUST SIGNALS (Homepage 6B) ───────────────────────── */
.trust-signals {
	padding: 64px 0;
	background: #F5F5F0;
}
.trust-signals__heading {
	font-family: 'Inter', sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #8F8A7D;
	text-align: center;
	margin-bottom: 48px;
}
.trust-signals__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}
.trust-signal {
	text-align: center;
}
.trust-signal__title {
	font-family: 'Inter', sans-serif;
	font-size: 0.875rem;
	font-weight: 700;
	color: #191919;
	margin-bottom: 8px;
}
.trust-signal__text {
	font-size: 0.875rem;
	line-height: 1.6;
	color: #4A5068;
}
@media (max-width: 768px) {
	.trust-signals__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
}
@media (max-width: 480px) {
	.trust-signals__grid {
		grid-template-columns: 1fr;
	}
}

/* ─── RESOURCE CTA (Not ready to talk?) ─────────────────── */
.resource-cta {
	padding: 64px 0;
	background: #fff;
	text-align: center;
}
.resource-cta__inner {
	max-width: 640px;
	margin: 0 auto;
}
.resource-cta h2 {
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	margin-bottom: 16px;
}
.resource-cta p {
	font-size: 1rem;
	line-height: 1.7;
	color: #4A5068;
	margin-bottom: 24px;
}
.resource-cta .btn {
	margin: 0 8px 12px;
}

/* ─── CREDENTIAL BAR ────────────────────────────────────── */
.credential-bar {
	text-align: center;
	padding: 12px 0;
	background: #F5F5F0;
	font-family: 'Inter', sans-serif;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: #8F8A7D;
	text-transform: uppercase;
}

/* ─── TOOLS IN PRODUCTION ───────────────────────────────── */
.tool-showcase {
	border: 1px solid #E0DDD9;
	border-radius: 10px;
	padding: 36px;
	background: #fff;
	margin-bottom: 32px;
}
.tool-showcase__badge {
	display: inline-block;
	font-family: 'Inter', sans-serif;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 4px 10px;
	border-radius: 3px;
	background: #8F1D23;
	color: #fff;
	margin-bottom: 16px;
}
.tool-showcase__name {
	font-family: 'Inter', sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	color: #191919;
	margin-bottom: 12px;
}
.tool-showcase__desc {
	font-size: 0.9375rem;
	line-height: 1.7;
	color: #4A5068;
	margin-bottom: 20px;
}
.tool-showcase__features {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}
.tool-showcase__feature-tag {
	font-family: 'Inter', sans-serif;
	font-size: 0.6875rem;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 3px;
	border: 1px solid #E0DDD9;
	color: #4A5068;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

/* ─── NEWSLETTER SIGNUP ─────────────────────────────────── */
.newsletter-signup {
	background: #191919;
	border-radius: 10px;
	padding: 40px;
	text-align: center;
	margin-top: 48px;
}
.newsletter-signup h3 {
	color: #fff;
	font-size: 1.25rem;
	margin-bottom: 8px;
}
.newsletter-signup p {
	color: #A89F91;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 24px;
	max-width: 540px;
	margin-left: auto;
	margin-right: auto;
}
.newsletter-signup__inner {
	max-width: 600px;
	margin: 0 auto;
}
.newsletter-signup__content {
	margin-bottom: 24px;
}
.newsletter-signup__field {
	display: flex;
	gap: 12px;
	max-width: 480px;
	margin: 0 auto;
}
.newsletter-signup__field input[type="email"] {
	flex: 1;
	padding: 12px 16px;
	border: 1px solid #333;
	border-radius: 6px;
	background: #2a2a2a;
	color: #fff;
	font-size: 0.9375rem;
	font-family: 'Inter', sans-serif;
}
.newsletter-signup__field input[type="email"]::placeholder {
	color: #888;
}
.newsletter-signup__field input[type="email"]:focus {
	outline: none;
	border-color: #8F1D23;
}
.newsletter-signup__field .btn {
	white-space: nowrap;
	margin-top: 0;
}
.newsletter-signup__note {
	font-size: 0.8125rem !important;
	color: #666 !important;
	margin-top: 12px !important;
	margin-bottom: 0 !important;
}
@media (max-width: 480px) {
	.newsletter-signup__field {
		flex-direction: column;
	}
	.newsletter-signup {
		padding: 28px 20px;
	}
}

/* ============================================================
   SKIP LINK (Accessibility)
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: #8F1D23;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0 0 4px 4px;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  color: #fff;
}

/* ============================================================
   MOBILE CTA (Visible only in mobile nav)
   ============================================================ */
.mobile-cta {
  display: none;
}
@media (max-width: 768px) {
  .main-nav.open .mobile-cta {
    display: inline-flex;
    margin-top: 16px;
    text-align: center;
    justify-content: center;
  }
}

/* ============================================================
   KEYBOARD-OPEN DROPDOWN STATE
   ============================================================ */
.nav-dropdown.keyboard-open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ============================================================
   RESOURCES PAGE
   ============================================================ */

/* Resource Hero */
.resource-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Journey Stages (Tenant Journey Blueprint) */
.journey-stages {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.journey-stage {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #E0DDD9;
  align-items: start;
}
.journey-stage:last-child {
  border-bottom: none;
}
.journey-stage__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #8F1D23;
  white-space: nowrap;
}
.journey-stage__content {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #555;
}
@media (max-width: 768px) {
  .resource-hero {
    padding: 120px 0 60px;
  }
  .journey-stage {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* Cross-Link Bar */
.cross-link-bar {
  background: #F8F9FA;
  border-left: 3px solid #8F1D23;
  padding: 20px 24px;
  border-radius: 0 4px 4px 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #555;
}
.cross-link-bar a {
  font-weight: 600;
}

/* Resource Grid */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .resource-grid {
    grid-template-columns: 1fr;
  }
}

/* Resource Cards */
.resource-card {
  background: #fff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #E0DDD9;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.resource-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.resource-card__type {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8F1D23;
  margin-bottom: 12px;
}
.resource-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #191919;
  margin-bottom: 10px;
}
.resource-card__text {
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.7;
}

/* Featured Resource Cards (Interactive Tools) */
.resource-card--featured {
  display: block;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #E0DDD9;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.resource-card--featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  color: inherit;
  text-decoration: none;
}
.resource-card--featured__accent {
  height: 4px;
  background: #8F1D23;
}
.resource-card--featured__content {
  padding: 32px;
}
.resource-card--featured__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
  margin-bottom: 20px;
}
.resource-card--featured__link {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #8F1D23;
  transition: opacity 0.2s ease;
}
.resource-card--featured:hover .resource-card--featured__link {
  opacity: 0.8;
}

/* ============================================================
   PROCESS BAR (Services page)
   ============================================================ */
.process-bar {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  margin-top: 40px;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 24px 16px;
  background: #F8F9FA;
  position: relative;
}
.process-step:first-child {
  border-radius: 8px 0 0 8px;
}
.process-step:last-child {
  border-radius: 0 8px 8px 0;
}
.process-step__number {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8F1D23;
  margin-bottom: 6px;
}
.process-step__title {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #191919;
  margin-bottom: 4px;
}
.process-step__text {
  font-size: 0.8125rem;
  color: #666;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .process-bar {
    flex-direction: column;
    gap: 8px;
  }
  .process-step {
    border-radius: 4px;
  }
  .process-step:first-child,
  .process-step:last-child {
    border-radius: 4px;
  }
}

/* ============================================================
   WHY PCG WORKS (Pillar pages)
   ============================================================ */
.why-pcg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-pcg-card {
  text-align: center;
  padding: 28px 20px;
  border-top: 3px solid #8F1D23;
  background: #fff;
}
.why-pcg-card__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: #191919;
  margin-bottom: 8px;
}
.why-pcg-card__text {
  font-size: 0.8125rem;
  color: #666;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .why-pcg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .why-pcg-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PCG IN ONE MINUTE (About Page)
   ============================================================ */
.pcg-minute-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.pcg-minute-card {
  padding: 24px 20px;
  background: #fff;
  border-radius: 8px;
  border-top: 3px solid #8F1D23;
  text-align: center;
}
.pcg-minute-card__number {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #8F1D23;
  margin-bottom: 8px;
  opacity: 0.3;
}
.pcg-minute-card__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #191919;
  margin-bottom: 8px;
}
.pcg-minute-card__text {
  font-size: 0.8125rem;
  color: #666;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .pcg-minute-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .pcg-minute-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .pcg-minute-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   FORM FEEDBACK
   ============================================================ */
.form-feedback {
  display: none;
  padding: 16px 20px;
  border-radius: 4px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-top: 16px;
}
.form-feedback--success {
  display: block;
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.form-feedback--error {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ============================================================
   LEASING STANDARDS PROGRAM PAGE
   ============================================================ */

/* Video embed container */
.video-embed {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #191919;
}

.video-embed iframe,
.video-embed video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: none;
}

.video-embed__placeholder {
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #A89F91;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  gap: 8px;
}

/* Before / After shift columns */
.shift-column {
  padding: 32px;
  border-radius: 4px;
  position: relative;
}

.shift-column--before {
  background: #FEF2F2;
  border-left: 4px solid #DC2626;
}

.shift-column--after {
  background: #F0FDF4;
  border-left: 4px solid #16A34A;
}

.shift-column__title {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.shift-column--before .shift-column__title {
  color: #DC2626;
}

.shift-column--after .shift-column__title {
  color: #16A34A;
}

.shift-column__list {
  list-style: none;
  padding: 0;
}

.shift-column__list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 0.9375rem;
  color: #333;
  line-height: 1.6;
}

.shift-column__list li:last-child {
  margin-bottom: 0;
}

.shift-column--before .shift-column__list li::before {
  content: '\2715';
  position: absolute;
  left: 0;
  color: #DC2626;
  font-weight: 700;
}

.shift-column--after .shift-column__list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #16A34A;
  font-weight: 700;
}

/* Installation blocks (What Gets Installed) */
.install-block {
  padding: 32px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #eee;
  margin-top: 24px;
}

.install-block__title {
  font-size: 1.125rem;
  margin-bottom: 12px;
  color: #191919;
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .site-header,
  .site-footer,
  .prefooter-cta,
  .mobile-toggle {
    display: none;
  }

  body {
    font-size: 12pt;
    color: #000;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}

/* ============================================================
   COMPLIANCE TOOLKIT PAGE
   ============================================================ */

/* ─── Chat Gate ────────────────────────────────────────────── */
.compliance-chat-gate {
	margin-top: 32px;
}
.compliance-chat-gate__inner {
	max-width: 480px;
	margin: 0 auto;
	background: #F8F9FA;
	border: 1px solid #E0DDD9;
	border-radius: 8px;
	padding: 36px;
}
.compliance-chat-gate__form .form-group {
	margin-bottom: 16px;
}

/* ─── Chat Launch Panel ────────────────────────────────────── */
.compliance-chat-launch {
	max-width: 520px;
	margin: 24px auto 0;
	background: #fff;
	border: 1px solid #E0DDD9;
	border-radius: 8px;
	padding: 40px 36px;
	text-align: center;
	position: relative;
}
.compliance-chat-launch::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: #8F1D23;
	border-radius: 8px 8px 0 0;
}
.compliance-chat-launch__icon {
	margin-bottom: 20px;
}
.compliance-chat-launch__title {
	font-family: 'Inter', sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	color: #191919;
	margin-bottom: 12px;
}
.compliance-chat-launch__desc {
	font-size: 0.9375rem;
	line-height: 1.65;
	color: #555;
	margin-bottom: 20px;
}
.compliance-chat-launch__features {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px;
	margin-bottom: 28px;
}
.compliance-chat-launch__note {
	margin-top: 12px;
	font-size: 0.8125rem;
	color: #999;
}

/* ─── Search Bar ───────────────────────────────────────────── */
.compliance-search input {
	border: 2px solid #E0DDD9;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.compliance-search input:focus {
	border-color: #8F1D23;
	box-shadow: 0 0 0 3px rgba(143, 29, 35, 0.1);
}

/* ─── Category Filters ─────────────────────────────────────── */
.compliance-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.compliance-cat-btn {
	font-family: 'Inter', sans-serif;
	font-size: 0.8125rem;
	font-weight: 600;
	padding: 8px 18px;
	border-radius: 100px;
	border: 1px solid #E0DDD9;
	background: #fff;
	color: #4A5068;
	cursor: pointer;
	transition: all 0.25s ease;
}
.compliance-cat-btn:hover {
	border-color: #8F1D23;
	color: #8F1D23;
}
.compliance-cat-btn.active {
	background: #8F1D23;
	color: #fff;
	border-color: #8F1D23;
}

/* ─── FAQ Accordion ────────────────────────────────────────── */
.compliance-faq-item {
	border: 1px solid #E0DDD9;
	border-radius: 8px;
	background: #fff;
	margin-bottom: 12px;
	overflow: hidden;
	transition: box-shadow 0.25s ease;
}
.compliance-faq-item:hover {
	box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.compliance-faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 20px 24px;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	color: #191919;
	line-height: 1.4;
}
.compliance-faq-question__text {
	flex: 1;
}
.compliance-faq-risk {
	flex-shrink: 0;
	font-family: 'Inter', sans-serif;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 4px 10px;
	border-radius: 3px;
	white-space: nowrap;
}
.compliance-faq-risk--moderate {
	background: #FEF3C7;
	color: #92400E;
}
.compliance-faq-risk--high {
	background: #FEE2E2;
	color: #991B1B;
}
.compliance-faq-toggle {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	position: relative;
	transition: transform 0.3s ease;
}
.compliance-faq-toggle::before,
.compliance-faq-toggle::after {
	content: '';
	position: absolute;
	background: #8F1D23;
	border-radius: 1px;
}
.compliance-faq-toggle::before {
	width: 14px;
	height: 2px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.compliance-faq-toggle::after {
	width: 2px;
	height: 14px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: transform 0.3s ease, opacity 0.3s ease;
}
.compliance-faq-question[aria-expanded="true"] .compliance-faq-toggle::after {
	transform: translate(-50%, -50%) rotate(90deg);
	opacity: 0;
}
.compliance-faq-answer {
	padding: 0 24px 24px;
}
.compliance-faq-answer p {
	font-size: 0.9375rem;
	line-height: 1.7;
	color: #444;
}
.compliance-faq-answer ul {
	padding-left: 24px;
	margin-bottom: 16px;
}
.compliance-faq-answer li {
	list-style: disc;
	font-size: 0.9375rem;
	line-height: 1.8;
	color: #555;
}
.compliance-faq-sources {
	margin-top: 16px;
	padding: 12px 16px;
	background: #F8F9FA;
	border-radius: 4px;
	font-size: 0.8125rem;
	color: #666;
}
.compliance-faq-sources strong {
	color: #8F1D23;
}

/* ─── Compliance Tool Cards ────────────────────────────────── */
.compliance-tool-card {
	background: #fff;
	border: 1px solid #E0DDD9;
	border-radius: 8px;
	padding: 32px;
	position: relative;
	display: flex;
	flex-direction: column;
}
.compliance-tool-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: #8F1D23;
	border-radius: 8px 8px 0 0;
}
.compliance-tool-card__header {
	margin-bottom: 12px;
}
.compliance-tool-card__badge {
	display: inline-block;
	font-family: 'Inter', sans-serif;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 4px 10px;
	border-radius: 3px;
	background: #8F1D23;
	color: #fff;
	margin-bottom: 12px;
}
.compliance-tool-card__title {
	font-family: 'Inter', sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	color: #191919;
}
.compliance-tool-card__desc {
	font-size: 0.9375rem;
	color: #555;
	line-height: 1.6;
	margin-bottom: 16px;
}
.compliance-tool-card__checks {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 20px;
}
.compliance-tool-form {
	margin-top: auto;
}
.compliance-tool-form textarea {
	resize: vertical;
	min-height: 140px;
}
.compliance-tool-results {
	margin-top: 20px;
}
.compliance-tool-results:empty {
	display: none;
}

/* ─── Scenario Cards ───────────────────────────────────────── */
.compliance-scenario-card {
	background: #fff;
	border: 1px solid #E0DDD9;
	border-radius: 8px;
	padding: 28px;
	display: flex;
	flex-direction: column;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.compliance-scenario-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.compliance-scenario-card__risk {
	display: inline-block;
	font-family: 'Inter', sans-serif;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 4px 10px;
	border-radius: 3px;
	margin-bottom: 16px;
	align-self: flex-start;
}
.compliance-scenario-card__risk--high {
	background: #FEE2E2;
	color: #991B1B;
}
.compliance-scenario-card__risk--moderate {
	background: #FEF3C7;
	color: #92400E;
}
.compliance-scenario-card__title {
	font-family: 'Inter', sans-serif;
	font-size: 1.0625rem;
	font-weight: 700;
	color: #191919;
	margin-bottom: 8px;
	line-height: 1.35;
}
.compliance-scenario-card__role {
	font-family: 'Inter', sans-serif;
	font-size: 0.8125rem;
	font-weight: 600;
	color: #8F1D23;
	margin-bottom: 10px;
}
.compliance-scenario-card__desc {
	font-size: 0.9375rem;
	color: #555;
	line-height: 1.6;
	margin-bottom: 20px;
}

/* ─── Master Disclaimer ────────────────────────────────────── */
.compliance-disclaimer {
	margin-top: 40px;
	border: 2px solid #8F1D23;
	border-radius: 8px;
	padding: 28px 32px;
	background: #fff;
}
.compliance-disclaimer__label {
	font-family: 'Inter', sans-serif;
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #8F1D23;
	margin-bottom: 12px;
}
.compliance-disclaimer p {
	font-size: 0.9375rem;
	line-height: 1.7;
	color: #444;
}

/* ─── Compliance Toolkit Responsive ────────────────────────── */
@media (max-width: 768px) {
	.compliance-faq-question {
		padding: 16px 18px;
		font-size: 0.9375rem;
		flex-wrap: wrap;
		gap: 8px;
	}
	.compliance-faq-risk {
		order: 3;
	}
	.compliance-faq-toggle {
		order: 2;
	}
	.compliance-faq-answer {
		padding: 0 18px 20px;
	}
	.compliance-categories {
		overflow-x: auto;
		flex-wrap: nowrap;
		padding-bottom: 8px;
		-webkit-overflow-scrolling: touch;
	}
	.compliance-cat-btn {
		white-space: nowrap;
		flex-shrink: 0;
	}
	.compliance-tool-card {
		padding: 24px;
	}
	.compliance-chat-gate__inner {
		padding: 24px;
	}
}

/* ============================================================
   RESIDENT EXPERIENCE PAGE
   ============================================================ */

/* ─── Event Category Labels ────────────────────────────────── */
.re-event-category {
	font-family: 'Inter', sans-serif;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #8F1D23;
	margin-bottom: 12px;
	padding-bottom: 12px;
	border-bottom: 2px solid #8F1D23;
}

/* ─── App Gate ─────────────────────────────────────────────── */
.re-app-gate__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	border: 1px solid #E0DDD9;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
}
.re-app-gate__preview {
	background: linear-gradient(135deg, #1a1a1a 0%, #2d1215 100%);
	padding: 40px 36px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 24px;
}
.re-app-gate__preview-label {
	font-family: 'Inter', sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	color: #fff;
}
.re-app-gate__features {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px;
}
.re-app-gate__features .feature-tag {
	background: rgba(255,255,255,0.12);
	color: rgba(255,255,255,0.85);
	border-color: rgba(255,255,255,0.2);
}
.re-app-gate__form-wrap {
	padding: 36px;
}
.re-app-gate__form-wrap .form-group {
	margin-bottom: 16px;
}

/* ─── App iframe Embed ─────────────────────────────────────── */
.re-app-embed__iframe {
	width: 100%;
	height: 800px;
	border: 1px solid #E0DDD9;
	border-bottom: none;
	border-radius: 8px 8px 0 0;
	background: #fff;
}
.re-app-embed__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 20px;
	background: #1a1a1a;
	border-radius: 0 0 8px 8px;
	font-family: 'Inter', sans-serif;
	font-size: 0.8125rem;
	font-weight: 600;
	color: rgba(255,255,255,0.7);
}
.re-app-embed__open {
	color: #fff;
	text-decoration: none;
	font-size: 0.8125rem;
	transition: opacity 0.2s ease;
}
.re-app-embed__open:hover {
	opacity: 0.8;
}

/* ─── Resident Experience Responsive ───────────────────────── */
@media (max-width: 768px) {
	.re-app-gate__inner {
		grid-template-columns: 1fr;
	}
	.re-app-gate__preview {
		padding: 28px 24px;
	}
	.re-app-gate__form-wrap {
		padding: 24px;
	}
	.re-app-embed__iframe {
		height: 600px;
	}
}
