/* Soulstice Miami homepage redesign. Scoped so shared site pages keep their current styling. */

.home-redesign {
  --home-ink: #15202e;
  --home-ink-soft: #3d4d5c;
  --home-ink-faint: #6b7a89;
  --home-blue: #4a7591;
  --home-blue-deep: #33576f;
  --home-blue-mist: #e8eef2;
  --home-blue-pale: #f1f5f8;
  --home-cream: #faf9f6;
  --home-sand: #f4f0e8;
  --home-sand-deep: #e9e2d4;
  --home-gold: #b9966b;
  --home-white: #ffffff;
  --home-serif: 'Playfair Display', serif;
  --home-sans: 'DM Sans', sans-serif;
  --home-shadow-sm: 0 2px 12px rgba(21, 32, 46, 0.06);
  --home-shadow-md: 0 12px 40px rgba(21, 32, 46, 0.10);
  --home-shadow-lg: 0 24px 60px rgba(21, 32, 46, 0.16);
  --home-radius: 20px;
  background: var(--home-cream);
  color: var(--home-ink);
  font-family: var(--home-sans);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  zoom: 1;
}

.home-redesign::before {
  content: none;
  display: none;
}

.home-redesign *,
.home-redesign *::before,
.home-redesign *::after {
  box-sizing: border-box;
}

.home-redesign main,
.home-redesign section {
  position: relative;
}

.home-redesign p {
  text-align: inherit;
  -webkit-hyphens: none;
  hyphens: none;
  word-spacing: normal;
}

.home-redesign a {
  color: inherit;
  text-decoration: none;
}

.home-redesign img {
  display: block;
  max-width: 100%;
}

.home-wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 17px 34px;
  border: none;
  font-family: var(--home-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.home-btn-primary {
  background: var(--home-blue);
  color: var(--home-white) !important;
  box-shadow: 0 8px 24px rgba(74, 117, 145, 0.35);
}

.home-btn-primary:hover {
  background: var(--home-blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(74, 117, 145, 0.45);
}

.home-btn-ghost {
  background: transparent;
  color: var(--home-ink);
  border: 1.5px solid rgba(21, 32, 46, 0.25);
}

.home-btn-ghost:hover {
  border-color: var(--home-blue);
  color: var(--home-blue);
}

.home-btn-note {
  margin-top: 12px;
  color: var(--home-ink-faint);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.home-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  transition: padding 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.home-header.is-scrolled {
  padding: 10px 0;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--home-shadow-sm);
}

.home-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.home-logo {
  display: flex;
  flex-direction: column;
  min-width: 150px;
  line-height: 1.15;
}

.home-logo-mark {
  font-family: var(--home-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--home-white);
  transition: color 0.35s ease;
}

.home-logo-sub {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 9.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  transition: color 0.35s ease;
}

.home-header.is-scrolled .home-logo-mark {
  color: var(--home-ink);
}

.home-header.is-scrolled .home-logo-sub {
  color: var(--home-ink-faint);
}

.home-nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.home-nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1.5px;
  background: currentColor;
  transition: width 0.25s ease;
}

.home-nav-links a:hover::after {
  width: 100%;
}

.home-header.is-scrolled .home-nav-links a {
  color: var(--home-ink-soft);
}

.home-header.is-scrolled .home-nav-links a:hover {
  color: var(--home-blue);
}

.home-nav-cta {
  padding: 13px 26px;
  font-size: 12.5px;
}

.home-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.home-menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--home-white);
  transition: background 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.home-header.is-scrolled .home-menu-toggle {
  border-color: rgba(21, 32, 46, 0.16);
  background: rgba(255, 255, 255, 0.76);
}

.home-header.is-scrolled .home-menu-toggle span {
  background: var(--home-ink);
}

.home-redesign.nav-open {
  overflow: hidden;
}

.home-redesign.nav-open .home-menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.home-redesign.nav-open .home-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.home-redesign.nav-open .home-menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.home-mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: none;
  padding: 112px 28px 32px;
  background: rgba(21, 32, 46, 0.96);
  backdrop-filter: blur(18px);
  color: var(--home-white);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.home-mobile-panel nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.home-mobile-panel a:not(.home-btn) {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-mobile-panel .home-btn {
  margin-top: 22px;
  margin-right: auto;
  margin-left: auto;
  max-width: 320px;
  justify-content: center;
}

.home-redesign.nav-open .home-mobile-panel {
  opacity: 1;
  pointer-events: auto;
}

.home-hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--home-white);
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/hero-miami-beach.jpg') center 35% / cover no-repeat;
  transform: scale(1.04);
  animation: homeKenburns 26s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes homeKenburns {
  from { transform: scale(1.04) translate(0, 0); }
  to { transform: scale(1.13) translate(-2%, -1.5%); }
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27, 42, 58, 0.45) 0%, rgba(27, 42, 58, 0.28) 40%, rgba(21, 32, 46, 0.72) 100%);
}

.home-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 160px 0 120px;
  text-align: center;
}

.home-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.home-eyebrow::before,
.home-eyebrow::after {
  content: '';
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.home-hero h1 {
  max-width: 920px;
  margin: 0 auto 24px;
  font-family: var(--home-serif);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 500;
  line-height: 1.14;
  text-align: center;
  text-wrap: balance;
}

.home-hero h1 em,
.home-title em {
  font-style: italic;
  font-weight: inherit;
}

.home-hero .home-lede {
  max-width: 560px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 300;
  text-align: center;
  text-wrap: balance;
}

.home-hero-ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 14px;
}

.home-micro {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-align: center;
}

.home-hero-trust {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(21, 32, 46, 0.30);
  backdrop-filter: blur(8px);
}

.home-trust-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.home-trust-item {
  flex: 1;
  min-width: 200px;
  padding: 20px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.home-trust-item:first-child {
  border-left: 0;
}

.home-trust-item strong {
  display: block;
  margin-bottom: 2px;
  color: var(--home-white);
  font-family: var(--home-serif);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
}

.home-section {
  padding: 96px 0;
}

.home-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--home-blue);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.home-kicker::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--home-gold);
}

.home-kicker:not(.is-center) {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.home-kicker.is-center {
  justify-content: center;
  text-align: center;
}

.home-kicker.is-center::after {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--home-gold);
}

.home-title {
  margin: 0 0 18px;
  color: var(--home-ink);
  font-family: var(--home-serif);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 500;
  line-height: 1.15;
  text-wrap: balance;
}

.home-sub {
  max-width: 640px;
  color: var(--home-ink-soft);
  font-size: 16.5px;
  font-weight: 300;
  text-wrap: balance;
}

.home-center {
  text-align: center;
}

.home-center .home-sub {
  margin: 0 auto;
}

.home-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.home-pain {
  background: var(--home-cream);
}

.home-pain-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items: start;
}

.home-photo-card .home-photo {
  overflow: hidden;
  border-radius: var(--home-radius);
  box-shadow: var(--home-shadow-lg);
  aspect-ratio: 4 / 5;
}

.home-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-quote {
  margin-top: 14px;
  padding: 18px 22px 16px;
  border: 1px solid var(--home-sand-deep);
  border-radius: 14px;
  background: var(--home-white);
  box-shadow: var(--home-shadow-md);
}

.home-quote::before {
  content: '\201C';
  display: block;
  height: 21px;
  margin-bottom: 6px;
  color: var(--home-gold);
  font-family: var(--home-serif);
  font-size: 38px;
  font-style: italic;
  line-height: 1;
}

.home-quote p {
  margin: 0;
  color: var(--home-ink);
  font-family: var(--home-serif);
  font-size: 16px;
  font-style: italic;
  line-height: 1.5;
  text-wrap: pretty;
}

.home-quote span {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 11px;
  color: var(--home-ink-faint);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.home-quote span::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--home-gold);
}

.home-list-lines {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}

.home-list-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 21px 0;
  border-top: 1px solid var(--home-sand-deep);
}

.home-list-item:last-child {
  border-bottom: 1px solid var(--home-sand-deep);
}

.home-list-item .num {
  flex: none;
  padding-top: 7px;
  color: var(--home-gold);
  font-family: var(--home-serif);
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0.08em;
}

.home-list-item p {
  margin: 0;
  color: var(--home-ink-soft);
  font-family: var(--home-serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
  text-align: justify;
  text-wrap: pretty;
}

.home-cta-row {
  margin-top: 34px;
  text-align: left;
}

.home-welcome {
  background: linear-gradient(180deg, var(--home-blue-pale) 0%, var(--home-cream) 100%);
}

.home-welcome-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: start;
}

.home-creds-line {
  margin: 0 0 26px;
  color: var(--home-ink-faint);
  font-size: 13px;
  letter-spacing: 0.14em;
  line-height: 1.7;
  text-transform: uppercase;
}

.home-glad {
  margin: 0 0 22px;
  font-family: var(--home-serif);
  font-size: 28px;
  font-style: italic;
}

.home-body-copy {
  margin: 0 0 18px;
  color: var(--home-ink-soft);
  font-size: 16.5px;
  text-align: justify;
  text-wrap: pretty;
}

.home-body-copy a {
  color: var(--home-blue);
  border-bottom: 1px solid rgba(74, 117, 145, 0.4);
}

.home-body-copy a:hover {
  color: var(--home-blue-deep);
  border-color: var(--home-blue-deep);
}

.home-welcome-photo {
  position: sticky;
  top: 110px;
}

.home-welcome-frame {
  overflow: hidden;
  border-radius: var(--home-radius);
  box-shadow: var(--home-shadow-lg);
}

.home-welcome-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 35%;
}

.home-credential-block {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--home-sand-deep);
  text-align: center;
}

.home-credential-line {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  color: var(--home-ink-faint);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  line-height: 1.9;
  text-transform: uppercase;
}

.home-credential-service {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.home-dot {
  margin: 0 9px;
  color: var(--home-gold);
}

.home-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.home-band {
  overflow: hidden;
  padding: 96px 0;
  background: var(--home-ink);
  color: var(--home-white);
}

.home-band-aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.home-band-aurora span {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.4;
}

.home-band-aurora .ab1 {
  width: 420px;
  height: 420px;
  left: -6%;
  top: -34%;
  background: var(--home-blue);
  animation: homeDriftOne 18s ease-in-out infinite alternate;
}

.home-band-aurora .ab2 {
  width: 360px;
  height: 360px;
  right: -4%;
  top: -6%;
  background: var(--home-gold);
  animation: homeDriftTwo 22s ease-in-out infinite alternate;
}

.home-band-aurora .ab3 {
  width: 340px;
  height: 340px;
  left: 38%;
  bottom: -46%;
  background: var(--home-blue-deep);
  animation: homeDriftThree 20s ease-in-out infinite alternate;
}

@keyframes homeDriftOne { to { transform: translate(70px, 50px) scale(1.2); } }
@keyframes homeDriftTwo { to { transform: translate(-60px, 40px) scale(1.15); } }
@keyframes homeDriftThree { to { transform: translate(40px, -50px) scale(1.25); } }

.home-band .home-wrap {
  position: relative;
  z-index: 1;
  text-align: center;
}

.home-band-sun {
  display: block;
  margin: 0 auto 26px;
  transform-box: fill-box;
  transform-origin: center;
  animation: homeBreathe 5.5s ease-in-out infinite;
}

.home-band-sun .rays {
  transform-box: fill-box;
  transform-origin: center;
  animation: homeSpin 60s linear infinite;
}

@keyframes homeBreathe {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes homeSpin { to { transform: rotate(360deg); } }

.home-band blockquote {
  max-width: 820px;
  margin: 0 auto 28px;
  font-family: var(--home-serif);
  font-size: clamp(22px, 2.6vw, 28px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  text-wrap: balance;
}

.home-band cite {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12.5px;
  font-style: normal;
  letter-spacing: 0.28em;
  line-height: 1.9;
  text-transform: uppercase;
}

.home-services {
  background: var(--home-cream);
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.home-service-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border-radius: var(--home-radius);
  box-shadow: var(--home-shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.home-service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.2) 45%, rgba(0, 0, 0, 0));
}

.home-service-card h3 {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  margin: 0;
  color: var(--home-white);
  font-family: var(--home-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

.home-service-card h3::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  margin-top: 12px;
  background: var(--home-gold);
  transition: width 0.45s ease;
}

.home-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--home-shadow-lg);
}

.home-service-card:hover img {
  transform: scale(1.06);
}

.home-service-card:hover h3::after {
  width: 48px;
}

.home-process {
  background: var(--home-sand);
}

@media (min-width: 768px) {
  body:not(.home-redesign) .home-redesign.home-process {
    zoom: 1.1764705882;
  }
}

.home-process-steps {
  position: relative;
  max-width: 980px;
  margin: 48px auto 0;
}

.home-process-line {
  position: absolute;
  top: -1px;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 110px;
  overflow: visible;
  pointer-events: none;
}

.home-process-line path {
  stroke-dasharray: none;
  stroke-dashoffset: 0;
}

.home-process-steps.is-visible .home-process-line path {
  animation: none;
}

.home-process-orb {
  opacity: 0;
  filter: drop-shadow(0 0 6px rgba(216, 184, 142, 0.85));
  transition: opacity 0.6s ease 0.5s;
}

.home-process-steps.is-visible .home-process-orb {
  opacity: 1;
}

@keyframes homePathDraw { to { stroke-dashoffset: 0; } }

.home-process-grid {
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.home-process-col {
  position: relative;
  padding-top: 150px;
  text-align: center;
}

.home-process-node {
  position: absolute;
  top: 0;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border: 1.5px solid var(--home-sand-deep);
  border-radius: 50%;
  background: var(--home-white);
  color: var(--home-blue);
  box-shadow: 0 10px 30px rgba(21, 32, 46, 0.10);
  font-family: var(--home-serif);
  font-size: 30px;
  font-style: italic;
  transform: translateX(-50%);
  transition: border-color 0.55s ease, color 0.55s ease, box-shadow 0.55s ease, transform 0.55s ease;
}

.home-process-node.is-lit {
  border-color: var(--home-gold);
  color: var(--home-gold);
  box-shadow: 0 0 0 5px rgba(185, 150, 107, 0.18), 0 12px 30px rgba(21, 32, 46, 0.14);
  transform: translateX(-50%) scale(1.07);
}

.home-process-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--home-blue-deep);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.home-process-tag::before,
.home-process-tag::after {
  content: '';
  width: 26px;
  height: 1.5px;
  background: var(--home-gold);
}

.home-process-col h3 {
  z-index: 1;
  margin: 14px 0 10px;
  color: var(--home-ink);
  font-family: var(--home-serif);
  font-size: 20px;
  font-weight: 500;
}

.home-process-col p {
  max-width: 300px;
  margin: 0 auto;
  color: var(--home-ink-soft);
  font-size: 16.5px;
  line-height: 1.6;
  text-align: center;
}

.home-transformation {
  overflow: hidden;
  padding: 78px 0;
  background: var(--home-ink);
  color: var(--home-white);
}

.home-transformation::before,
.home-transformation::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.home-transformation::before {
  top: -160px;
  left: -160px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(185, 150, 107, 0.22), transparent 70%);
  animation: homeTransformDriftOne 20s ease-in-out infinite alternate;
}

.home-transformation::after {
  right: -140px;
  bottom: -180px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(74, 117, 145, 0.30), transparent 70%);
  animation: homeTransformDriftTwo 26s ease-in-out infinite alternate;
}

@keyframes homeTransformDriftOne {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(46px, 34px) scale(1.16); }
}

@keyframes homeTransformDriftTwo {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-54px, -30px) scale(1.12); }
}

.home-transformation .home-wrap {
  position: relative;
  z-index: 2;
}

.home-transformation .home-kicker {
  color: #d8b88e;
}

.home-transformation .home-title {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  color: var(--home-white);
  font-size: clamp(28px, 3vw, 40px);
  text-align: center;
}

.home-transform-sub {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-align: center;
}

.home-outcome-compact {
  max-width: 1080px;
  margin: 42px auto 0;
}

.home-outcome-groups {
  display: grid;
  grid-template-columns: 1fr 1fr 1.08fr;
  gap: 38px;
}

.home-outcome-group {
  border-top: 1px solid rgba(185, 150, 107, 0.55);
  padding-top: 20px;
}

.home-outcome-group ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-outcome-group li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15.5px;
  line-height: 1.54;
}

.home-outcome-group li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--home-gold);
}

.service-transformation .home-center {
  max-width: 980px;
  margin: 0 auto;
}

.service-transformation .home-title {
  max-width: 960px;
  margin-bottom: 0;
}

.service-transformation .home-transform-sub {
  max-width: 720px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

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

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

.service-transformation .home-outcome-compact {
  max-width: 1080px;
  margin-top: 44px;
}

.service-transformation .home-outcome-groups {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.service-transformation .home-outcome-group ul {
  gap: 16px;
}

.service-transform-note {
  max-width: 780px;
  margin: 36px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 300;
  text-align: center;
}

.service-transform-note a {
  color: #d8b88e;
  text-decoration: underline;
  text-decoration-color: rgba(216, 184, 142, 0.45);
  text-underline-offset: 4px;
}

.home-faq {
  background: var(--home-blue-pale);
}

.home-faq-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}

.home-faq-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.home-faq-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  width: 100%;
  padding: 19px 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-faq-num {
  flex: none;
  color: var(--home-gold);
  font-family: var(--home-serif);
  font-size: 13px;
  font-style: italic;
}

.home-faq-title {
  flex: 1;
  color: var(--home-ink-faint);
  font-family: var(--home-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  transition: color 0.25s ease;
}

.home-faq-arrow {
  color: var(--home-blue);
  font-size: 18px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.home-faq-item:hover .home-faq-title {
  color: var(--home-ink);
}

.home-faq-item.is-active {
  border-color: var(--home-sand-deep);
  background: var(--home-white);
  box-shadow: var(--home-shadow-md);
}

.home-faq-item.is-active .home-faq-title {
  color: var(--home-ink);
}

.home-faq-item.is-active .home-faq-arrow {
  opacity: 1;
  transform: none;
}

.home-faq-panel {
  position: sticky;
  top: 110px;
  isolation: isolate;
  min-height: 360px;
  overflow: hidden;
  padding: 54px 50px;
  border: 1px solid var(--home-sand-deep);
  border-radius: 24px;
  background: var(--home-white);
  box-shadow: var(--home-shadow-lg);
}

.home-faq-ghost {
  position: absolute;
  top: -36px;
  right: 6px;
  color: var(--home-blue-mist);
  font-family: var(--home-serif);
  font-size: 200px;
  font-style: italic;
  line-height: 1;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}

.home-faq-content {
  position: relative;
  z-index: 1;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.home-faq-content h3 {
  max-width: 88%;
  margin: 0 0 18px;
  color: var(--home-ink);
  font-family: var(--home-serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
  text-wrap: balance;
}

.home-faq-rule {
  width: 46px;
  height: 2px;
  margin-bottom: 22px;
  background: var(--home-gold);
}

.home-faq-answer {
  margin: 0;
  color: var(--home-ink-soft);
  font-size: 16.5px;
  text-align: justify;
  text-wrap: pretty;
}

.home-faq-answer a {
  color: var(--home-blue);
  border-bottom: 1px solid rgba(74, 117, 145, 0.4);
}

.home-final {
  overflow: hidden;
  padding: 110px 0;
  color: var(--home-white);
}

.home-final-bg {
  position: absolute;
  inset: 0;
  background: url('images/hero-miami-beach.jpg') center 70% / cover no-repeat;
}

.home-final-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 32, 46, 0.82), rgba(51, 87, 111, 0.78));
}

.home-final-spot {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 42%), rgba(185, 150, 107, 0.30), transparent 60%);
  pointer-events: none;
}

.home-final .home-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
}

.home-final h2 {
  max-width: 760px;
  margin: 0 auto 22px;
  color: var(--home-white);
  font-family: var(--home-serif);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 500;
  line-height: 1.15;
  text-wrap: balance;
}

.home-final h2 em {
  font-style: italic;
}

.home-final p {
  max-width: 600px;
  margin: 0 auto 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16.5px;
  font-weight: 300;
  text-align: center;
  text-wrap: pretty;
}

.home-final p.starts {
  margin-bottom: 38px;
  font-family: var(--home-serif);
  font-size: 20px;
  font-style: italic;
}

.home-final .home-micro {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.home-final-info {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 48px;
  margin-top: 60px;
  padding-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.home-final-info-item {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  letter-spacing: 0.04em;
}

.home-final-info-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--home-gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.home-footer {
  padding: 72px 0 36px;
  background: var(--home-ink);
  color: rgba(255, 255, 255, 0.7);
}

.home-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}

.home-footer-brand .home-footer-mark {
  color: var(--home-white);
  font-family: var(--home-serif);
  font-size: 24px;
  letter-spacing: 0.05em;
}

.home-footer-brand .home-footer-sub {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.home-footer-brand p {
  max-width: 280px;
  margin: 0;
  font-size: 14px;
}

.home-footer h4 {
  margin: 0 0 20px;
  color: var(--home-gold);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.home-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-footer li {
  margin-bottom: 11px;
}

.home-footer a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14.5px;
}

.home-footer a:hover {
  color: var(--home-white);
}

.home-footer-contact p {
  margin: 0 0 11px;
  font-size: 14.5px;
}

.home-footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.45);
  font-size: 12.5px;
}

.home-footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  font-size: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.home-sticky-cta {
  display: none;
}

.home-fade {
  opacity: 0;
  transform: translateY(20px);
  animation: homeFadeUp 0.9s ease forwards;
}

.home-delay-1 { animation-delay: 0.15s; }
.home-delay-2 { animation-delay: 0.35s; }
.home-delay-3 { animation-delay: 0.55s; }
.home-delay-4 { animation-delay: 0.75s; }
.home-delay-5 { animation-delay: 0.95s; }

@keyframes homeFadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}

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

  .home-hero-bg {
    animation: none;
  }

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

  .home-process-line path {
    stroke-dashoffset: 0;
  }

  .home-process-orb {
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .home-nav-links,
  .home-nav-cta {
    display: none;
  }

  .home-menu-toggle {
    display: flex;
  }

  .home-mobile-panel {
    display: block;
  }

  .home-pain-grid,
  .home-welcome-grid,
  .home-faq-grid {
    grid-template-columns: 1fr;
  }

  .home-pain-grid {
    gap: 52px;
  }

  .home-welcome-grid {
    gap: 64px;
  }

  .home-faq-grid {
    gap: 32px;
  }

  .home-photo-card {
    order: 2;
    max-width: 480px;
    margin: 0 auto;
    position: static;
  }

  .home-welcome-photo {
    max-width: 420px;
    margin: 0 auto;
    position: static;
  }

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

  .home-faq-panel {
    position: static;
  }

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

  .home-outcome-groups {
    max-width: 900px;
    margin: 0 auto;
  }

  .service-transformation .home-outcome-groups {
    grid-template-columns: 1fr;
    max-width: 720px;
  }
}

@media (max-width: 768px) {
  .home-redesign {
    padding-bottom: 64px;
  }

  .home-wrap {
    width: 100%;
    padding: 0 28px;
  }

  .home-redesign main > section,
  main > section.home-redesign.home-process {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .home-section {
    padding: 72px 0;
  }

  .home-hero {
    min-height: 100svh;
  }

  .home-hero-inner {
    padding: 140px 0 160px;
  }

  .home-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .home-hero-trust {
    display: block;
  }

  .home-trust-wrap {
    flex-direction: column;
  }

  .home-trust-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding: 13px;
  }

  .home-pain-grid,
  .home-welcome-grid {
    gap: 50px;
  }

  .home-list-item p,
  .home-body-copy,
  .home-faq-answer {
    text-align: left;
  }

  .home-service-grid {
    gap: 14px;
  }

  .home-service-card h3 {
    left: 16px;
    right: 16px;
    bottom: 16px;
    font-size: 16px;
  }

  .home-process-line {
    display: none;
  }

  .home-process-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .home-process-col {
    padding-top: 104px;
  }

  .home-process-steps {
    margin-top: 36px;
  }

  .home-quote {
    padding: 22px 24px 20px;
  }

  .home-transformation {
    padding: 68px 0;
  }

  .service-transformation .home-transform-sub {
    font-size: 15px;
    margin-top: 12px;
  }

  .home-outcome-compact {
    margin-top: 30px;
    text-align: left;
  }

  .service-transform-note {
    font-size: 15px;
    margin-top: 30px;
  }

  .home-outcome-groups {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .home-faq-grid {
    gap: 32px;
  }

  .home-faq-panel {
    min-height: 0;
    padding: 34px 26px;
  }

  .home-faq-ghost {
    display: none;
  }

  .home-final {
    padding: 96px 0;
  }

  .home-final-info {
    gap: 22px;
    margin-top: 42px;
  }

  .home-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .home-footer-brand {
    grid-column: 1 / -1;
  }

  .home-footer-bottom {
    flex-direction: column;
  }

  .home-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: block;
    padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
    background: rgba(250, 249, 246, 0.96);
    box-shadow: 0 -8px 30px rgba(21, 32, 46, 0.12);
    backdrop-filter: blur(12px);
  }

  .home-sticky-cta .home-btn {
    width: 100%;
    justify-content: center;
    padding: 15px;
  }

  .home-center,
  .home-center h2,
  .home-center h3,
  .home-center p,
  .home-hero .home-lede,
  .home-hero .home-micro,
  .home-final h2,
  .home-final p,
  .home-process-col,
  .home-process-col p,
  .home-transform-sub,
  .home-transformation .home-title {
    text-align: center !important;
  }
}

@media (max-width: 560px) {
  .home-service-grid,
  .home-footer-grid {
    grid-template-columns: 1fr;
  }

  .home-button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .home-button-row .home-btn {
    width: 100%;
  }

  .home-faq-item {
    padding: 17px 14px;
    gap: 12px;
  }

  .home-faq-title {
    font-size: 17px;
  }
}
