/* Legal Anchor — modern homepage (grape / black / white) */
:root {
  --grape: #5a2d82;
  --grape-deep: #3d1a5e;
  --grape-light: #7b42a8;
  --grape-mist: #f3eef8;
  --black: #111;
  --charcoal: #2c2c2c;
  --mid-gray: #888;
  --light-gray: #e8e8e8;
  --off-white: #f7f6f4;
  --white: #fff;
}

.page-home {
  font-family: "Jost", sans-serif;
  color: var(--black);
}

.page-home .serif,
.page-home .home-hero h1,
.page-home .home-section-title,
.page-home .yoe-number,
.page-home .practice-areas-heading h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10000;
  padding: 12px 20px;
  background: var(--grape);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 16px;
}

/* Wide header + hero (more horizontal room) */
.page-home .home-header-container,
.page-home .home-hero-container {
  width: 100% !important;
  max-width: 1560px !important;
  padding-left: clamp(20px, 4vw, 48px) !important;
  padding-right: clamp(20px, 4vw, 48px) !important;
}

/* Header — same vertical scale as about / contact / track */
.page-home .site-header {
  background: var(--black) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none !important;
  padding: 0 !important;
}
.page-home .site-header .header-box {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  min-height: 0 !important;
  gap: 20px !important;
  align-items: center !important;
}
.page-home .site-header .site-branding {
  width: 164px !important;
  max-width: none !important;
  flex-shrink: 0 !important;
}
.page-home .site-header .site-branding img {
  width: 130px !important;
  max-width: none !important;
  height: auto !important;
  object-fit: contain !important;
}
.page-home .site-header .header-menu {
  gap: 20px !important;
  flex: 1 1 auto !important;
  justify-content: flex-end !important;
  min-width: 0 !important;
}
.page-home .site-header .main-navigation {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  display: flex !important;
  justify-content: flex-end !important;
}
.page-home .site-header .main-navigation ul:not(.sub-menu) {
  gap: 0 clamp(10px, 1.5vw, 22px) !important;
  flex-wrap: nowrap !important;
  justify-content: flex-end !important;
}
.page-home.site-header.scrolled .site-header,
.page-home .site-header.scrolled {
  background: var(--black) !important;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.4) !important;
}
.page-home .site-header .main-navigation ul li a {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 14px !important;
  padding: 0 !important;
  line-height: 1.4 !important;
  white-space: nowrap !important;
}
.page-home .site-header .main-navigation ul li a:hover {
  color: var(--grape-light) !important;
}
.page-home .site-header .toggle-button span {
  background: var(--white) !important;
}
.page-home .site-header .toggle-button::before,
.page-home .site-header .toggle-button::after {
  background: var(--white) !important;
  background-color: var(--white) !important;
}
.page-home .site-header .main-navigation.toggle-menu .toggle-button::before,
.page-home .site-header .main-navigation.toggle-menu .toggle-button::after {
  background: #cca967 !important;
  background-color: #cca967 !important;
}
.page-home .site-header .header-btn .sec-btn,
.page-home .site-header .header-mob-btn .sec-btn {
  all: unset !important;
  display: inline-flex !important;
  align-items: center !important;
  background: var(--grape) !important;
  color: var(--white) !important;
  font-family: "Jost", sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  padding: 10px 20px !important;
  border-radius: 20px !important;
  flex-shrink: 0 !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
  text-decoration: none !important;
}
.page-home .site-header .header-btn .sec-btn span,
.page-home .site-header .header-mob-btn .sec-btn span {
  all: unset !important;
  color: var(--white) !important;
}
.page-home .site-header .header-btn .sec-btn::before,
.page-home .site-header .header-btn .sec-btn::after,
.page-home .site-header .header-mob-btn .sec-btn::before,
.page-home .site-header .header-mob-btn .sec-btn::after {
  display: none !important;
}
.page-home .site-header .header-btn .sec-btn:hover,
.page-home .site-header .header-mob-btn .sec-btn:hover {
  background: var(--grape-deep) !important;
}

/* Hide default banner when using home hero */
.page-home .main-banner {
  display: none !important;
}

/* ── Hero (padding-top clears fixed .site-header) ── */
.page-home .home-hero,
.home-hero {
  position: relative;
  min-height: calc(100vh - 80px);
  max-height: 920px;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
  padding: calc(108px + env(safe-area-inset-top, 0px)) 0 78px;
  scroll-margin-top: 108px;
}
.home-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--grape);
  z-index: 2;
}
.home-hero::after {
  content: none;
}
.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.62fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  position: relative;
  z-index: 1;
  max-width: none;
}
@media (min-width: 1400px) {
  .home-hero-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.58fr);
    gap: 80px;
  }
}
@media (max-width: 991px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .page-home .home-hero,
  .home-hero {
    min-height: auto;
    max-height: none;
    /* Fixed header (logo + menu) is taller than old 76px offset — clear it fully */
    padding-top: calc(112px + env(safe-area-inset-top, 0px)) !important;
    padding-bottom: 52px;
    align-items: flex-start;
    scroll-margin-top: calc(108px + env(safe-area-inset-top, 0px));
  }
  /* Copy first in DOM; image follows under headline + body */
  .home-hero-copy {
    order: 0;
  }
  .home-hero-visual {
    order: 1;
    max-width: min(420px, 100%);
    margin: clamp(12px, 3vw, 28px) auto 0;
  }
  .home-hero-eyebrow {
    font-size: 12px;
    margin-bottom: 16px;
  }
  .home-hero-title-main {
    font-size: clamp(32px, 8vw, 44px);
    line-height: 1.1;
  }
  .home-hero-title-accent {
    font-size: clamp(42px, 11vw, 58px);
    line-height: 1.05;
  }
  .home-hero-lead {
    font-size: clamp(17px, 4.5vw, 19px);
    line-height: 1.72;
    margin-bottom: 24px;
  }
  .home-hero-meta strong {
    font-size: clamp(26px, 7vw, 34px);
  }
  .home-hero-meta span {
    font-size: 11px;
  }
}
@media (max-width: 575px) {
  .page-home .home-hero,
  .home-hero {
    padding-top: calc(118px + env(safe-area-inset-top, 0px)) !important;
  }
}
.page-home .home-hero-copy {
  min-width: 0;
}
.home-hero-visual {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 1/1;
  max-height: min(520px, 70vh);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
  margin-top: 6px;
}
.home-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.home-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(90, 45, 130, 0.25) 0%,
    transparent 45%
  );
  pointer-events: none;
}
.home-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grape-light);
  font-weight: 500;
  margin-bottom: 20px;
}
.home-hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--grape-light);
}
/* Kill theme .h1-title (80px) on hero */
.page-home .home-hero .home-hero-title.h1-title,
.page-home .home-hero h1.home-hero-title {
  font-size: inherit !important;
  line-height: inherit !important;
  font-weight: 600 !important;
  text-transform: none !important;
  margin: 0 0 24px !important;
  letter-spacing: -0.02em !important;
  max-width: none !important;
}
.home-hero-title-main {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 3.05vw, 46px);
  font-weight: 600;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 0.22em;
}
.home-hero-title-accent {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 3.7vw, 64px);
  font-weight: 600;
  font-style: italic;
  line-height: 1.06;
  color: var(--grape-light);
  letter-spacing: -0.03em;
}
.home-hero-lead {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.58);
  max-width: 38rem;
  margin-bottom: 28px;
  font-weight: 300;
}
.home-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}
.home-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--grape);
  color: var(--white) !important;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none !important;
  border-radius: 24px;
  border: 1px solid rgba(204, 169, 103, 0.25);
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.home-btn-primary:hover {
  background: var(--grape-deep);
  transform: translateY(-1px);
  border-color: rgba(204, 169, 103, 0.35);
  color: var(--white) !important;
}
.home-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: transparent;
  color: var(--white) !important;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none !important;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 0.92;
  transition: border-color 0.2s, color 0.2s, transform 0.2s, opacity 0.2s;
}
.home-btn-ghost:hover {
  border-color: rgba(204, 169, 103, 0.38);
  color: rgba(204, 169, 103, 0.95) !important;
  transform: translateY(-1px);
  opacity: 1;
}
.home-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 40px);
  padding-top: 20px;
  border-top: 1px solid rgba(204, 169, 103, 0.14);
  max-width: 40rem;
}
.home-hero-meta > div {
  min-width: 0;
}
.home-hero-meta strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--white);
  font-weight: 600;
  line-height: 1.2;
}
.home-hero-meta span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 6px;
  white-space: nowrap;
}
@media (max-width: 575px) {
  .home-hero-meta span {
    white-space: normal;
  }
}
/* Bento stats */
.home-bento {
  background: var(--off-white);
  padding: 0 0 56px;
  margin-top: -1px;
}
.home-bento-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--light-gray);
  border: 2px solid var(--light-gray);
}
@media (max-width: 767px) {
  .home-bento-inner {
    grid-template-columns: 1fr;
  }
}
.home-bento-card {
  background: var(--white);
  padding: 36px 28px;
  text-align: left;
  transition: box-shadow 0.25s;
}
.home-bento-card:hover {
  box-shadow: inset 0 -3px 0 var(--grape);
}
.home-bento-card .num {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  color: var(--grape);
  line-height: 1;
  margin-bottom: 8px;
}
.home-bento-card .lbl {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid-gray);
  font-weight: 600;
}
.home-bento-card p {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.55;
}

/* How it works */
.home-how {
  padding: 80px 0 72px;
  background: var(--white);
}
.home-section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grape);
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}
.home-section-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: var(--black);
  margin: 0 auto 48px;
  max-width: 640px;
  line-height: 1.2;
}
.home-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 991px) {
  .home-how-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}
.home-how-step {
  position: relative;
  padding: 32px 28px;
  background: var(--off-white);
  border-left: 4px solid var(--grape);
}
.home-how-step .step-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--grape-mist);
  line-height: 1;
  margin-bottom: 12px;
  -webkit-text-stroke: 1px var(--grape);
  color: transparent;
}
.home-how-step h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--black);
}
.home-how-step p {
  margin: 0;
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.65;
}

/* Features strip */
.page-home .main-features {
  background: var(--black) !important;
  padding: 78px 0 !important;
  border: none !important;
}
.page-home .main-features .features-intro {
  max-width: 920px;
  margin: 0 auto 34px;
  text-align: center;
  padding: 0 12px;
}
.page-home .main-features .features-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(204, 169, 103, 0.9);
  font-weight: 600;
  margin: 0 0 14px;
}
.page-home .main-features .features-eyebrow::before,
.page-home .main-features .features-eyebrow::after {
  content: "";
  width: 30px;
  height: 1px;
  background: rgba(204, 169, 103, 0.35);
}
.page-home .main-features .features-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 3.2vw, 44px);
  color: var(--white);
  font-weight: 600;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.page-home .main-features .features-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.8;
}
.page-home .main-features .features-list {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(14px, 1.6vw, 22px) !important;
  max-width: 1260px;
  margin: 0 auto !important;
  padding: 0 12px !important;
  align-items: stretch;
}
@media (max-width: 991px) {
  .page-home .main-features .features-list {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 575px) {
  .page-home .main-features .features-list {
    grid-template-columns: 1fr !important;
  }
}
.page-home .main-features .feature-box {
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  padding: 30px 22px !important;
  background: rgba(15, 15, 16, 0.92) !important;
  border: 1px solid rgba(204, 169, 103, 0.18) !important;
  border-radius: 16px !important;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease !important;
}
.page-home .main-features .feature-box:hover {
  transform: translateY(-4px);
  border-color: rgba(204, 169, 103, 0.32) !important;
  background: rgba(12, 12, 13, 0.98) !important;
}
.page-home .main-features .feature-box .icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(204, 169, 103, 0.18);
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 14px;
}
.page-home .main-features .feature-box .h4-title {
  color: var(--white) !important;
  font-family: "Cormorant Garamond", serif !important;
  font-size: 18px !important;
  margin: 0 0 6px !important;
}
.page-home .main-features .feature-box p {
  color: rgba(255, 255, 255, 0.56) !important;
  font-size: 13px !important;
  margin: 0 !important;
  letter-spacing: 0.02em;
}
.page-home .main-features .feature-box .icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1) opacity(0.86);
}

/* About — Transparent legal services (redesign) */
.page-home .main-about-us.home-about-transparent {
  background: linear-gradient(180deg, #f9f8f6 0%, var(--off-white) 45%, #f4f2ee 100%) !important;
  padding: 88px 0 72px !important;
  position: relative;
}
.page-home .home-about-transparent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(204, 169, 103, 0.45),
    transparent
  );
  pointer-events: none;
}
.page-home .ta-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
  margin-bottom: clamp(40px, 5vw, 56px);
}
@media (max-width: 991px) {
  .page-home .ta-split {
    grid-template-columns: 1fr;
  }
  .page-home .ta-visual {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
}
.page-home .ta-figure {
  margin: 0;
  position: relative;
}
.page-home .ta-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(204, 169, 103, 0.35);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}
.page-home .ta-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(90, 45, 130, 0.08);
}
.page-home .ta-img {
  aspect-ratio: 4 / 5;
  min-height: 320px;
  background-size: cover;
  background-position: center top;
}
.page-home .ta-stat {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  max-width: 220px;
  padding: 18px 20px;
  background: rgba(11, 11, 12, 0.92);
  border: 1px solid rgba(204, 169, 103, 0.28);
  border-radius: 10px;
  backdrop-filter: blur(8px);
}
.page-home .ta-stat-value {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(36px, 5vw, 44px);
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  margin-bottom: 6px;
}
.page-home .ta-stat-value .counting {
  color: inherit;
}
.page-home .ta-stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.page-home .ta-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--grape);
  margin: 0 0 14px;
}
.page-home .ta-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--black);
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}
.page-home .ta-title em {
  font-style: italic;
  color: var(--grape);
  font-weight: 600;
}
.page-home .ta-lead {
  font-size: 16px;
  line-height: 1.78;
  color: var(--charcoal);
  margin: 0 0 28px;
  max-width: 36rem;
}
.page-home .ta-duals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
@media (max-width: 575px) {
  .page-home .ta-duals {
    grid-template-columns: 1fr;
  }
}
.page-home .ta-card {
  padding: 20px 20px 20px 18px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-left: 3px solid var(--grape);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
}
.page-home .ta-card-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}
.page-home .ta-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--charcoal);
}
.page-home .ta-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: var(--grape);
  color: var(--white) !important;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none !important;
  border-radius: 24px;
  border: 1px solid rgba(204, 169, 103, 0.28);
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.page-home .ta-cta:hover {
  background: var(--grape-deep);
  color: var(--white) !important;
  transform: translateY(-1px);
  border-color: rgba(204, 169, 103, 0.4);
}
.page-home .ta-cta i {
  font-size: 12px;
}
.page-home .ta-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
@media (max-width: 767px) {
  .page-home .ta-pillars {
    grid-template-columns: 1fr;
  }
}
.page-home .ta-pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  background: var(--white);
}
.page-home .ta-pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(90, 45, 130, 0.08);
  border: 1px solid rgba(90, 45, 130, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grape);
  font-size: 16px;
  flex-shrink: 0;
}
.page-home .ta-pillar strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.page-home .ta-pillar span {
  font-size: 13px;
  color: var(--mid-gray);
  line-height: 1.45;
}

/* Case study band */
.page-home .main-case-study {
  background: var(--black) !important;
  padding: 56px 0 !important;
}

/* Services — Digital legal: split + portal mock */
.page-home .main-our-services.home-digital-services {
  background: var(--off-white) !important;
  padding: 88px 0 96px !important;
  overflow: hidden;
}
.page-home .digital-services-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1.05fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  margin-bottom: clamp(48px, 6vw, 64px);
}
@media (max-width: 991px) {
  .page-home .digital-services-split {
    grid-template-columns: 1fr;
  }
  .page-home .digital-portal-mock {
    order: -1;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
}
.page-home .digital-services-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--grape);
  margin: 0 0 14px;
}
.page-home .digital-services-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 600;
  line-height: 1.12;
  color: var(--black);
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}
.page-home .digital-services-lead {
  font-size: 16px;
  line-height: 1.75;
  color: var(--charcoal);
  margin: 0 0 22px;
  max-width: 34rem;
}
.page-home .digital-services-trust {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page-home .digital-services-trust li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--charcoal);
}
.page-home .digital-services-trust li i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(90, 45, 130, 0.12);
  color: var(--grape);
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.page-home .digital-services-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: var(--grape);
  color: var(--white) !important;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none !important;
  border-radius: 24px;
  border: 1px solid rgba(204, 169, 103, 0.28);
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.page-home .digital-services-cta:hover {
  background: var(--grape-deep);
  color: var(--white) !important;
  transform: translateY(-1px);
  border-color: rgba(204, 169, 103, 0.4);
}
.page-home .digital-services-cta i {
  font-size: 12px;
  opacity: 0.9;
}
/* Portal mock */
.page-home .digital-portal-mock {
  position: relative;
}
.page-home .digital-portal-frame {
  background: linear-gradient(165deg, #141416 0%, #0b0b0c 45%, #121014 100%);
  border: 1px solid rgba(204, 169, 103, 0.22);
  border-radius: 14px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  overflow: hidden;
}
.page-home .digital-portal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.25);
}
.page-home .digital-portal-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.04em;
}
.page-home .digital-portal-brand i {
  color: var(--grape-light);
  font-size: 15px;
}
.page-home .digital-portal-lock {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  display: none;
}
@media (min-width: 400px) {
  .page-home .digital-portal-lock {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
}
.page-home .digital-portal-avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(90, 45, 130, 0.45);
  border: 1px solid rgba(204, 169, 103, 0.25);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.page-home .digital-portal-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.page-home .digital-portal-matter {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}
.page-home .digital-portal-matter strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}
.page-home .digital-portal-pill {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(90, 45, 130, 0.35);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(123, 66, 168, 0.4);
}
.page-home .digital-portal-updated {
  margin-left: auto;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}
@media (max-width: 480px) {
  .page-home .digital-portal-updated {
    margin-left: 0;
    width: 100%;
  }
}
.page-home .digital-portal-main {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  min-height: 220px;
}
@media (max-width: 520px) {
  .page-home .digital-portal-main {
    grid-template-columns: 1fr;
  }
}
.page-home .digital-portal-col {
  padding: 18px;
}
.page-home .digital-portal-col--feed {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
@media (max-width: 520px) {
  .page-home .digital-portal-col--feed {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
}
.page-home .digital-portal-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(204, 169, 103, 0.65);
  margin: 0 0 12px;
}
.page-home .digital-portal-label--spaced {
  margin-top: 18px;
}
.page-home .digital-portal-msg {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 10px;
}
.page-home .digital-portal-msg--muted {
  background: rgba(255, 255, 255, 0.03);
}
.page-home .digital-portal-msg-from {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grape-light);
  margin-bottom: 6px;
}
.page-home .digital-portal-msg p {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}
.page-home .digital-portal-msg p em {
  font-style: normal;
  color: rgba(204, 169, 103, 0.85);
}
.page-home .digital-portal-msg-time {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}
.page-home .digital-portal-doc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-home .digital-portal-doc-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.page-home .digital-portal-doc-list li:last-child {
  border-bottom: none;
}
.page-home .digital-portal-doc-list i {
  color: #c94a4a;
  font-size: 14px;
  width: 18px;
  text-align: center;
}
.page-home .digital-portal-doc-list li:nth-child(2) i {
  color: var(--grape-light);
}
.page-home .digital-portal-deadline {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: rgba(90, 45, 130, 0.15);
  border-radius: 10px;
  border: 1px solid rgba(90, 45, 130, 0.25);
}
.page-home .digital-portal-deadline i {
  color: rgba(204, 169, 103, 0.85);
  margin-top: 2px;
}
.page-home .digital-portal-deadline strong {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin-bottom: 4px;
}
.page-home .digital-portal-deadline span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}
/* Capability strip — dark tiles so light/white SVG icons read clearly */
.page-home .digital-capabilities {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(204, 169, 103, 0.2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.12);
}
@media (max-width: 991px) {
  .page-home .digital-capabilities {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .page-home .digital-capabilities {
    grid-template-columns: 1fr;
  }
}
.page-home .digital-cap-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 20px;
  background: linear-gradient(180deg, #161618 0%, #101012 100%);
  transition: background 0.2s, box-shadow 0.2s;
}
.page-home .digital-cap-item:hover {
  background: linear-gradient(180deg, #1c1c1f 0%, #141416 100%);
  box-shadow: inset 0 -2px 0 rgba(204, 169, 103, 0.45);
}
.page-home .digital-cap-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(204, 169, 103, 0.2);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.page-home .digital-cap-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.95);
}
.page-home .digital-cap-text strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.94);
  margin-bottom: 4px;
  line-height: 1.2;
}
.page-home .digital-cap-text span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.45;
}

/* YOE + Practice (grape, no gold) */
.page-home .main-years-experience {
  background: var(--black) !important;
  padding: 90px 0 72px !important;
}
.page-home .main-years-experience::before {
  background: radial-gradient(
    circle,
    rgba(90, 45, 130, 0.15) 0%,
    transparent 65%
  ) !important;
}
.page-home .yoe-counter-card {
  border: 1px solid rgba(90, 45, 130, 0.35) !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  padding: 36px 32px !important;
  max-width: 280px !important;
  text-align: center !important;
}
.page-home .yoe-number-row {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: center !important;
  line-height: 1 !important;
  margin-bottom: 12px !important;
}
.page-home .yoe-number {
  font-family: "Cormorant Garamond", serif !important;
  font-size: clamp(56px, 10vw, 88px) !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: -0.02em !important;
  color: var(--grape-light) !important;
  text-shadow: none !important;
}
.page-home .yoe-plus {
  font-family: "Cormorant Garamond", serif !important;
  font-size: clamp(32px, 5vw, 48px) !important;
  font-weight: 700 !important;
  margin-top: 8px !important;
  margin-left: 2px !important;
  line-height: 1 !important;
  color: var(--grape-light) !important;
}
.page-home .yoe-label {
  font-family: "Jost", sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.85) !important;
  margin: 0 !important;
}
.page-home .yoe-text-col .sub-title {
  font-family: "Jost", sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: var(--grape-light) !important;
  margin-bottom: 12px !important;
  line-height: 1.4 !important;
  display: block !important;
}
.page-home .yoe-text-col h2 {
  font-family: "Cormorant Garamond", serif !important;
  font-size: clamp(26px, 3.5vw, 38px) !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  color: var(--white) !important;
  margin: 0 0 16px !important;
  text-transform: none !important;
}
.page-home .yoe-text-col h2 em {
  font-style: italic !important;
  color: var(--grape-light) !important;
}
.page-home .yoe-text-col p {
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 15px !important;
  line-height: 1.75 !important;
  margin-bottom: 16px !important;
}
.page-home .yoe-stats-row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 28px 40px !important;
  margin-top: 24px !important;
  padding-top: 20px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}
.page-home .yoe-stat {
  text-align: left !important;
  min-width: 0 !important;
}
.page-home .yoe-stat-num {
  font-family: "Cormorant Garamond", serif !important;
  font-size: clamp(26px, 4vw, 34px) !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  color: var(--grape-light) !important;
  display: block !important;
  text-shadow: none !important;
}
.page-home .yoe-stat-txt {
  font-family: "Jost", sans-serif !important;
  font-size: 10px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.42) !important;
  margin-top: 6px !important;
  display: block !important;
}
.page-home .yoe-divider-short {
  background: linear-gradient(
    90deg,
    transparent,
    var(--grape-light),
    transparent
  ) !important;
  width: 48px !important;
  height: 2px !important;
  margin: 14px auto 0 !important;
}
/* Practice suite — dark band, gold rules, row list + grape CTA */
.page-home .main-practice-areas.practice-suite {
  background: #0b0b0c !important;
  padding: 80px 0 96px !important;
  border-top: 1px solid rgba(204, 169, 103, 0.18);
  border-bottom: 1px solid rgba(204, 169, 103, 0.12);
}
.page-home .main-practice-areas.practice-suite::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(204, 169, 103, 0.06),
    transparent
  ) !important;
}
.page-home .practice-suite-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  padding: 0 12px;
}
.page-home .practice-suite-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(204, 169, 103, 0.85);
  margin: 0 0 14px;
}
.page-home .practice-suite-header h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.12;
  color: rgba(255, 255, 255, 0.94) !important;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.page-home .practice-suite-header h2 span {
  color: var(--grape-light) !important;
  font-style: italic;
}
.page-home .practice-suite-lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.48);
}
.page-home .practice-suite-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}
.page-home .practice-suite-rule::before,
.page-home .practice-suite-rule::after {
  content: "";
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: rgba(204, 169, 103, 0.28);
}
.page-home .practice-suite-rule-gem {
  width: 8px;
  height: 8px;
  background: rgba(204, 169, 103, 0.75);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.page-home .practice-suite-panel {
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid rgba(204, 169, 103, 0.22);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(15, 15, 16, 0.85);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.35);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.page-home .practice-suite-panel.not-visible {
  opacity: 0;
  transform: translateY(16px);
}
.page-home .practice-suite-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 16px 20px;
  padding: 20px 22px 20px 20px;
  border-bottom: 1px solid rgba(204, 169, 103, 0.12);
  transition: background 0.2s ease;
}
.page-home .practice-suite-row:hover {
  background: rgba(255, 255, 255, 0.03);
}
.page-home .practice-suite-row--last {
  border-bottom: none;
}
.page-home .practice-suite-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(204, 169, 103, 0.88);
}
.page-home .practice-suite-icon svg {
  width: 36px;
  height: 36px;
}
.page-home .practice-suite-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(19px, 2.2vw, 22px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.25;
}
.page-home .practice-suite-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  text-align: right;
  white-space: nowrap;
}
@media (max-width: 575px) {
  .page-home .practice-suite-row {
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
  }
  .page-home .practice-suite-tag {
    grid-column: 2;
    text-align: left;
    padding-left: 0;
    margin-top: -6px;
  }
}
.page-home .practice-suite-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  padding: 22px 24px;
  background: var(--grape) !important;
  color: var(--white) !important;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none !important;
  border: none;
  border-top: 1px solid rgba(204, 169, 103, 0.25);
  transition: background 0.2s, color 0.2s;
}
.page-home .practice-suite-cta:hover {
  background: var(--grape-deep) !important;
  color: var(--white) !important;
}
.page-home .practice-suite-cta i {
  font-size: 13px;
  opacity: 0.9;
}

/* Our technology — “matter spine” + telemetry dials */
.page-home .main-our-skills.home-tech-lab {
  position: relative !important;
  background: #070708 !important;
  padding: 88px 0 100px !important;
  margin: 0 !important;
  overflow: hidden;
  border-top: 1px solid rgba(204, 169, 103, 0.12);
}
.page-home .tech-lab-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 1;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.028) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 35%, black 20%, transparent 75%);
}
.page-home .tech-lab-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 52px;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.page-home .tech-lab-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 18px;
}
.page-home .tech-lab-kicker-tag {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  padding: 5px 10px;
  border: 1px solid rgba(204, 169, 103, 0.35);
  color: rgba(204, 169, 103, 0.9);
  border-radius: 4px;
  background: rgba(204, 169, 103, 0.06);
}
.page-home .tech-lab-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 600;
  line-height: 1.12;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}
.page-home .tech-lab-title em {
  font-style: italic;
  color: var(--grape-light);
}
.page-home .tech-lab-deck {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.48);
}
.page-home .tech-lab-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 300px);
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .page-home .tech-lab-grid {
    grid-template-columns: 1fr;
  }
  .page-home .tech-telemetry {
    position: static;
    order: -1;
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100% !important;
    padding: 24px 16px 28px;
  }
  .page-home .tech-dial {
    flex: 0 0 auto;
    width: 108px;
    height: 108px;
    margin: 6px;
  }
  .page-home .tech-dial-core {
    inset: 9px;
  }
  .page-home .tech-dial-num {
    font-size: 24px;
  }
  .page-home .tech-tel-label {
    width: 100%;
    text-align: center;
    padding-left: 0;
  }
  .page-home .tech-lab-cta {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }
}
.page-home .tech-spine-wrap {
  position: relative;
}
.page-home .tech-spine {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px 0 24px;
}
.page-home .tech-spine-rail {
  position: absolute;
  left: 50%;
  top: 48px;
  bottom: 48px;
  width: 2px;
  margin-left: -1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(204, 169, 103, 0.35) 12%,
    rgba(90, 45, 130, 0.45) 50%,
    rgba(204, 169, 103, 0.25) 88%,
    transparent 100%
  );
  border-radius: 2px;
}
@media (max-width: 767px) {
  .page-home .tech-spine-rail {
    display: none;
  }
}
.page-home .tech-spine-row {
  display: grid;
  grid-template-columns: 1fr 28px 1fr;
  gap: 0 20px;
  align-items: center;
  min-height: 100px;
}
@media (max-width: 767px) {
  .page-home .tech-spine-row {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .page-home .tech-spine-node,
  .page-home .tech-spine-spacer {
    display: none;
  }
  .page-home .tech-spine-card {
    margin-bottom: 14px;
  }
}
.page-home .tech-spine-node {
  grid-column: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.page-home .tech-spine-node span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--grape-light), var(--grape));
  border: 2px solid rgba(204, 169, 103, 0.65);
  box-shadow: 0 0 0 5px rgba(90, 45, 130, 0.2),
    0 0 28px rgba(123, 66, 168, 0.35);
}
.page-home .tech-spine-card {
  max-width: 300px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(204, 169, 103, 0.16);
  border-radius: 14px;
  transition: border-color 0.25s, background 0.25s;
}
.page-home .tech-spine-card:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(204, 169, 103, 0.28);
}
.page-home .tech-spine-card--right {
  grid-column: 1;
  justify-self: end;
  text-align: right;
}
.page-home .tech-spine-card--left {
  grid-column: 3;
  justify-self: start;
  text-align: left;
}
@media (max-width: 767px) {
  .page-home .tech-spine-card--right,
  .page-home .tech-spine-card--left {
    grid-column: 1;
    justify-self: stretch;
    max-width: none;
    text-align: left;
  }
}
.page-home .tech-spine-code {
  display: block;
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.24em;
  color: rgba(204, 169, 103, 0.75);
  margin-bottom: 10px;
}
.page-home .tech-spine-h {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 8px;
  line-height: 1.2;
}
.page-home .tech-spine-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.45);
}
.page-home .tech-telemetry {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 20px 32px;
  background: rgba(12, 12, 14, 0.85);
  border: 1px solid rgba(204, 169, 103, 0.18);
  border-radius: 16px;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.35);
  position: sticky;
  top: 100px;
}
.page-home .tech-tel-label {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin: 0 0 12px;
  align-self: flex-start;
  width: 100%;
  padding-left: 4px;
}
.page-home .tech-dial {
  --dial: 0;
  position: relative;
  width: 132px;
  height: 132px;
  margin-bottom: 8px;
}
.page-home .tech-dial-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from -90deg,
    var(--grape-light) 0deg,
    var(--grape) calc(var(--dial) * 3.6deg),
    rgba(255, 255, 255, 0.06) calc(var(--dial) * 3.6deg)
  );
  box-shadow: 0 0 32px rgba(90, 45, 130, 0.15);
}
.page-home .tech-dial-core {
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: #0a0a0c;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px;
}
.page-home .tech-dial-num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1;
  margin-bottom: 4px;
}
.page-home .tech-dial-cap {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  max-width: 90px;
  line-height: 1.35;
}
.page-home .tech-lab-cta {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(204, 169, 103, 0.95) !important;
  text-decoration: none !important;
  padding: 12px 18px;
  border: 1px solid rgba(204, 169, 103, 0.35);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.page-home .tech-lab-cta:hover {
  background: rgba(204, 169, 103, 0.1);
  color: var(--white) !important;
  border-color: rgba(204, 169, 103, 0.5);
}
.page-home .tech-lab-cta i {
  font-size: 11px;
  opacity: 0.85;
}

/* Clients */
.page-home .main-clients {
  background: var(--white) !important;
  border-top: 1px solid var(--light-gray);
}
.page-home .main-clients .clients-title .h4-title {
  color: var(--black) !important;
}
.page-home .main-clients .clients-title .h4-title span {
  color: var(--grape) !important;
}
.page-home .main-clients .clients-title:before,
.page-home .main-clients .clients-title:after {
  background: rgba(0, 0, 0, 0.12) !important;
  opacity: 1 !important;
}

/* Client experiences — cinematic “Voices” stage */
.page-home .main-testimonials.home-xp-lab {
  position: relative !important;
  overflow: hidden !important;
  padding: 96px 0 108px !important;
  background: radial-gradient(
      ellipse 80% 50% at 100% 0%,
      rgba(90, 45, 130, 0.09) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 60% 40% at 0% 100%,
      rgba(204, 169, 103, 0.08) 0%,
      transparent 50%
    ),
    #f4f1ec !important;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.page-home .xp-watermark {
  position: absolute;
  right: clamp(-20px, -2vw, 0px);
  top: 50%;
  transform: translateY(-50%);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(100px, 22vw, 240px);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: rgba(90, 45, 130, 0.045);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.page-home .xp-aurora {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 70% 20%,
    rgba(123, 66, 168, 0.06) 0%,
    transparent 45%
  );
  pointer-events: none;
  z-index: 0;
}
.page-home .home-xp-lab .container {
  z-index: 1;
}
.page-home .xp-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  padding: 0 12px;
}
.page-home .xp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--grape);
  margin: 0 0 14px;
}
.page-home .xp-kicker-tag {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  padding: 5px 10px;
  border: 1px solid rgba(90, 45, 130, 0.35);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.7);
}
.page-home .xp-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--black);
  margin: 0 0 16px;
  letter-spacing: -0.025em;
}
.page-home .xp-title em {
  font-style: italic;
  color: var(--grape);
}
.page-home .xp-deck {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
}
.page-home .xp-mount {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 12px;
}
.page-home .xp-split {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.85fr);
  gap: clamp(18px, 2.6vw, 34px);
  align-items: start;
}
@media (max-width: 991px) {
  .page-home .xp-mount {
    max-width: 980px;
  }
  .page-home .xp-split {
    grid-template-columns: 1fr;
  }
}
.page-home .xp-feature {
  min-width: 0;
}
.page-home .xp-proof {
  display: grid;
  gap: 16px;
  min-width: 0;
}
.page-home .xp-proof-card {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 22px 55px rgba(35, 15, 55, 0.08);
  padding: 18px 18px;
  backdrop-filter: blur(10px);
}
.page-home .xp-proof-kicker {
  margin: 0 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--grape);
}
.page-home .xp-proof-title {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--black);
  line-height: 1.15;
}
.page-home .xp-proof-deck {
  margin: 0;
  color: var(--charcoal);
  line-height: 1.7;
  font-size: 14.5px;
}
.page-home .xp-proof-card--stat {
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(255, 255, 255, 0.72) 100%
    );
}
.page-home .xp-proof-stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.page-home .xp-proof-num {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 22px;
  font-weight: 700;
  color: var(--grape-deep);
  letter-spacing: 0.02em;
}
.page-home .xp-proof-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.62);
}
.page-home .xp-proof-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(0, 0, 0, 0.72);
  line-height: 1.6;
  font-size: 13.5px;
}
.page-home .xp-proof-list li + li {
  margin-top: 8px;
}
.page-home .xp-proof-card--cta {
  border-color: rgba(90, 45, 130, 0.16);
  background: linear-gradient(
    135deg,
    rgba(90, 45, 130, 0.08),
    rgba(204, 169, 103, 0.08)
  );
}
.page-home .xp-proof-mini {
  margin: 0 0 10px;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.72);
}
.page-home .xp-proof-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--grape);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.18s, background 0.18s;
}
.page-home .xp-proof-cta:hover {
  background: var(--grape-deep);
  transform: translateY(-1px);
}
.page-home .xp-swiper {
  overflow: visible;
  padding-bottom: 8px;
}
.page-home .xp-card {
  margin: 0;
  height: 100%;
}
.page-home .xp-card-inner {
  position: relative;
  display: block;
  min-height: 0;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 26px 75px rgba(35, 15, 55, 0.12);
}
@media (max-width: 767px) {
  .page-home .xp-card-inner {
    min-height: 0;
  }
}
.page-home .xp-photo {
  display: none;
}
@media (max-width: 767px) {
  .page-home .xp-photo {
    display: none;
  }
}
.page-home .xp-slice {
  display: none;
}
@media (max-width: 767px) {
  .page-home .xp-slice {
    display: none;
  }
}
.page-home .xp-panel {
  position: relative;
  z-index: 1;
  padding: 34px 32px 28px;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .page-home .xp-panel {
    padding: 26px 20px 22px;
  }
}
.page-home .xp-index {
  display: none;
}
.page-home .xp-quote {
  margin: 0 0 28px;
  padding: 0;
  border: none;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(18px, 2.1vw, 22px);
  font-weight: 500;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.86);
  position: relative;
  z-index: 1;
}
.page-home .xp-quote::before {
  content: "\201C";
  display: block;
  font-size: 2.6rem;
  line-height: 1;
  color: rgba(90, 45, 130, 0.22);
  margin-bottom: 8px;
  font-family: Georgia, serif;
}
.page-home .xp-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.page-home .xp-who strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.86);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.page-home .xp-who span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(90, 45, 130, 0.75);
}
.page-home .xp-stars {
  color: rgba(204, 169, 103, 0.92);
  font-size: 13px;
  letter-spacing: 4px;
}
.page-home .xp-controls {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  margin-top: 36px;
}
.page-home .xp-controls-arrows {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}
.page-home .xp-nav {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(90, 45, 130, 0.35);
  background: rgba(255, 255, 255, 0.95);
  color: var(--grape);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.page-home .xp-nav:hover {
  border-color: rgba(204, 169, 103, 0.6);
  background: var(--grape);
  color: var(--white);
  transform: scale(1.05);
}
.page-home .xp-nav.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}
.page-home .xp-swiper-pagination.swiper-pagination {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 10px;
  width: 100% !important;
  max-width: 100%;
  margin: 0 !important;
}
.page-home .xp-swiper-pagination .swiper-pagination-bullet {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.12);
  opacity: 1;
  margin: 0 !important;
  transition: background 0.25s, transform 0.25s;
}
.page-home .xp-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--grape);
  transform: scaleY(1.4);
}

/* Team — film strip (option #6) */
.page-home .home-team-film.main-special-team {
  padding: 0;
  background: #0a0810;
  overflow: hidden;
}
.page-home .team-film-head {
  padding: clamp(48px, 8vw, 88px) 0 clamp(28px, 4vw, 40px);
  text-align: center;
  position: relative;
  z-index: 1;
}
.page-home .team-film-head::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(420px, 70%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(204, 169, 103, 0.45),
    transparent
  );
}
.page-home .team-film-kicker {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(204, 169, 103, 0.9);
  margin: 0 0 14px;
  font-weight: 600;
}
.page-home .team-film-kicker-roll {
  display: inline-block;
  padding: 4px 10px;
  margin-right: 10px;
  border: 1px solid rgba(204, 169, 103, 0.4);
  border-radius: 2px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.12em;
  background: rgba(0, 0, 0, 0.35);
}
.page-home .team-film-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.12;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.page-home .team-film-title em {
  font-style: italic;
  color: rgba(204, 169, 103, 0.95);
}
.page-home .team-film-lead {
  max-width: 560px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
}
.page-home .team-film-theater {
  position: relative;
  background: linear-gradient(180deg, #12101a 0%, #0d0b12 40%, #0a0810 100%);
  margin-top: 8px;
}
.page-home .team-film-sprocket {
  height: 22px;
  background-color: #16131f;
  background-image: radial-gradient(
    circle at 50% 50%,
    #050308 0%,
    #050308 42%,
    transparent 44%
  );
  background-size: 22px 22px;
  background-repeat: repeat-x;
  background-position: 11px 50%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.page-home .team-film-sprocket--top {
  border-bottom: 1px solid rgba(90, 45, 130, 0.15);
}
.page-home .team-film-sprocket--bottom {
  border-top: 1px solid rgba(90, 45, 130, 0.12);
}
.page-home .team-film-track {
  padding: clamp(32px, 5vw, 56px) clamp(16px, 4vw, 32px) 0;
  overflow: visible;
}
.page-home .team-film-swiper.team-slider {
  overflow: visible;
  padding-bottom: 8px;
}
.page-home .team-film-swiper .swiper-wrapper {
  align-items: stretch;
}
.page-home .team-film-swiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0 28px;
}
.page-home .team-film-frame {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.page-home .team-film-frame:hover {
  transform: translateY(-6px) scale(1.02);
}
.page-home .team-film-frame--tilt-r {
  transform: rotate(2.2deg);
}
.page-home .team-film-frame--tilt-r:hover {
  transform: rotate(2.2deg) translateY(-6px) scale(1.02);
}
.page-home .team-film-frame--tilt-l {
  transform: rotate(-2.2deg);
}
.page-home .team-film-frame--tilt-l:hover {
  transform: rotate(-2.2deg) translateY(-6px) scale(1.02);
}
.page-home .team-film-frame-inner {
  background: linear-gradient(165deg, #faf8f5 0%, #ebe6de 100%);
  padding: 14px 14px 22px;
  box-shadow:
    0 4px 0 rgba(0, 0, 0, 0.08),
    0 28px 56px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  border-radius: 2px;
}
.page-home .team-film-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 317 / 368;
  background: #1a1225;
}
.page-home .team-film-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: contrast(1.05) saturate(0.88);
  transition: filter 0.5s, transform 0.6s ease;
}
.page-home .team-film-frame:hover .team-film-photo img {
  filter: contrast(1.08) saturate(0.95);
  transform: scale(1.04);
}
.page-home .team-film-duo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    160deg,
    rgba(90, 45, 130, 0.42) 0%,
    rgba(61, 26, 94, 0.25) 45%,
    rgba(204, 169, 103, 0.18) 100%
  );
  mix-blend-mode: color;
}
.page-home .team-film-grain {
  position: absolute;
  inset: -4px;
  pointer-events: none;
  opacity: 0.14;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}
.page-home .team-film-caption {
  text-align: center;
  padding-top: 18px;
}
.page-home .team-film-role {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grape);
  opacity: 0.85;
  margin: 0 0 6px;
  font-weight: 600;
}
.page-home .team-film-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  color: #1a1225;
  margin: 0 0 14px;
  line-height: 1.15;
}
.page-home .team-film-soc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.page-home .team-film-soc a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grape);
  background: rgba(90, 45, 130, 0.08);
  border: 1px solid rgba(90, 45, 130, 0.15);
  font-size: 14px;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.25s,
    border-color 0.25s;
}
.page-home .team-film-soc a:hover {
  background: var(--grape);
  color: var(--white);
  border-color: var(--grape);
  transform: translateY(-2px);
}
.page-home .team-film-footer {
  display: flex;
  justify-content: center;
  padding: 8px 0 clamp(28px, 5vw, 48px);
}
.page-home .team-film-dots.swiper-pagination {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: auto !important;
  margin: 0 !important;
}
.page-home .team-film-dots .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  opacity: 1;
  margin: 0 !important;
  box-shadow: 0 0 0 1px rgba(204, 169, 103, 0.25);
  transition:
    background 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
}
.page-home .team-film-dots .swiper-pagination-bullet-active {
  background: rgba(204, 169, 103, 0.95);
  transform: scale(1.35);
  box-shadow: 0 0 0 2px rgba(204, 169, 103, 0.35);
}
.page-home .main-special-team .sub-title {
  color: var(--grape) !important;
}

/* FAQ */
.page-home .main-faq .sub-title {
  color: var(--grape) !important;
}
.page-home .main-faq .link-btn {
  color: var(--grape) !important;
}

/* FAQ — search-first hub */
.page-home .home-faq-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;
}
.page-home .home-faq-deck {
  font-size: 16px;
  line-height: 1.55;
  color: var(--mid-gray);
  margin: 0 0 22px;
  max-width: 520px;
}
.page-home .home-faq-search-block {
  margin-bottom: 20px;
}
.page-home .home-faq-search-field {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 12px;
  border: 2px solid rgba(90, 45, 130, 0.22);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(90, 45, 130, 0.08);
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.page-home .home-faq-search-field:focus-within {
  border-color: rgba(90, 45, 130, 0.55);
  box-shadow:
    0 8px 32px rgba(90, 45, 130, 0.12),
    0 0 0 3px rgba(90, 45, 130, 0.12);
}
.page-home .home-faq-search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 18px;
  color: var(--grape);
  opacity: 0.65;
  font-size: 17px;
  flex-shrink: 0;
}
.page-home .home-faq-search-input {
  flex: 1;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 16px 18px 16px 12px;
  font-size: 17px;
  font-family: inherit;
  color: var(--black);
  outline: none;
  min-height: 56px;
}
.page-home .home-faq-search-input::placeholder {
  color: #9a9a9a;
}
.page-home .home-faq-results {
  min-height: 1.4em;
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--grape);
  letter-spacing: 0.02em;
}
.page-home .home-faq-empty {
  padding: 16px 18px;
  margin: 0 0 16px;
  border-radius: 10px;
  background: var(--grape-mist);
  border: 1px solid rgba(90, 45, 130, 0.12);
  font-size: 15px;
  color: var(--black);
  line-height: 1.5;
}
.page-home .home-faq-empty a {
  color: var(--grape);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page-home .home-faq-empty a:hover {
  color: var(--grape-deep);
}
.page-home .faq-accordion-box.home-faq-no-match {
  display: none !important;
}
.page-home .home-faq-hub.home-faq-search-active .faq-accordion-title {
  cursor: pointer;
}
@media (max-width: 575px) {
  .page-home .home-faq-search-input {
    font-size: 16px;
    min-height: 52px;
  }
}

/* Counter strip */
.page-home .main-counter {
  background: var(--grape) !important;
  padding: 56px 0 !important;
}
.page-home .main-counter .counter-box {
  border-color: rgba(255, 255, 255, 0.2) !important;
}
.page-home .main-counter .h1-title,
.page-home .main-counter .h4-title {
  color: var(--white) !important;
}
.page-home .main-counter .h4-title span {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* Emergency */
.home-emergency {
  background: var(--grape-deep);
  padding: 36px 0;
  text-align: center;
}
.home-emergency h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  color: var(--white);
  margin: 0 0 8px;
}
.home-emergency p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  margin: 0 0 16px;
}
.home-emergency a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--white);
  color: var(--grape-deep) !important;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none !important;
  transition: opacity 0.2s;
}
.home-emergency a:hover {
  opacity: 0.92;
  color: var(--grape-deep) !important;
}

/* Footer — split layout styled in footer-split.css */
.page-home .site-footer--split .footer-split-policies a:hover,
.page-home .site-footer--split .footer-split-list a:hover {
  color: var(--grape-light) !important;
}
.page-home #scroll-to-top {
  background: var(--grape) !important;
  border-color: var(--grape) !important;
}

@media (prefers-reduced-motion: reduce) {
  .page-home .practice-suite-panel.not-visible {
    opacity: 1 !important;
    transform: none !important;
  }
}
