@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Roboto:wght@300;400;500;700&display=swap");

:root {
  --le-accent: #a00055;
  --le-accent-strong: #7f0043;
  --le-accent-soft: rgba(160, 0, 85, 0.08);
  --le-ink: #333333;
  --le-ink-soft: #5e5e5e;
  --le-line: rgba(51, 51, 51, 0.12);
  --le-cream: #fbfbfb;
  --le-panel: #f5f5f5;
  --le-panel-alt: #f1f1f1;
  --le-white: #ffffff;
  --le-shadow: 0 20px 45px rgba(31, 24, 29, 0.08);
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.external-website-body {
  margin: 0;
  background: #fff;
  /* background:
    linear-gradient(180deg, #ffffff 0%, #f8f6f7 34%, #f1f1f1 100%); */
  color: var(--le-ink);
  -webkit-font-smoothing: antialiased;
}

.external-website-body,
.external-website-body button,
.external-website-body input,
.external-website-body textarea,
.external-website-body select {
  font-family: "Roboto", Arial, sans-serif;
}

.external-website-body h1,
.external-website-body h2,
.external-website-body h3,
.external-website-body h4 {
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 500;
}

.external-website-body #flash-messages {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 80;
}

.le-site {
  min-height: 100vh;
  overflow: clip;
}

.le-shell {
  width: min(1180px, calc(100% - 2.25rem));
  margin: 0 auto;
}

.le-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: #4a4a4a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.le-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 86px;
}

.le-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  color: #ffffff;
}

.le-brand__logo {
  width: 74px;
  height: 74px;
  object-fit: contain;
  display: block;
  filter: brightness(1.02) contrast(1.02);
}

.le-brand__text {
  display: flex;
  flex-direction: column;
}

.le-brand__title {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.le-brand__subtitle {
  font-size: 0.69rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.le-nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.le-nav a {
  position: relative;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.le-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
  background: var(--le-accent);
}

.le-nav a:hover,
.le-nav a.is-active {
  color: #ffffff;
}

.le-nav a:hover::after,
.le-nav a.is-active::after {
  transform: scaleX(1);
}

.le-header__actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.le-nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.4rem;
}

.le-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: #ffffff;
  border-radius: 999px;
}

.le-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.le-button:hover {
  transform: translateY(-1px);
}

.le-button--primary {
  background: var(--le-accent);
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(160, 0, 85, 0.22);
}

.le-button--secondary,
.le-button--ghost {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(51, 51, 51, 0.1);
  color: var(--le-ink);
}

.le-button--small {
  min-height: 42px;
  padding: 0.72rem 1rem;
  font-size: 0.82rem;
}

.le-button--full {
  width: 100%;
}

.le-eyebrow {
  margin: 0 0 0.95rem;
  color: var(--le-accent);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

.le-eyebrow--soft {
  color: rgba(255, 255, 255, 0.74);
}

.le-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.le-actions--center {
  justify-content: center;
}

.le-header__cta {
  background: #ffffff;
  color: var(--le-ink);
  border-color: rgba(255, 255, 255, 0.16);
}

.le-hero,
.le-page-hero {
  padding: 3.25rem 0 3.5rem;
  background: #ffffff;
}

.le-hero__grid,
.le-page-hero__grid,
.le-story,
.le-assistant,
.le-agency-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  gap: 2rem;
  align-items: center;
}

.le-hero h1,
.le-page-hero h1,
.le-section h2,
.le-final-cta h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--le-ink);
}

.le-page-hero h1,
.le-note-card h2,
.le-profile-card h3,
.le-entry-card h2,
.le-pillar-card h3,
.le-step h3,
.le-directory-card h2,
.le-agency-preview h3,
.le-surface-card h2 {
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  line-height: 1.12;
}

.le-hero__lead,
.le-hero p,
.le-page-hero p,
.le-section__head p,
.le-pillar-card p,
.le-story__content p,
.le-directory-card p,
.le-agency-preview p,
.le-entry-card p,
.le-step p,
.le-note-card p,
.le-final-cta p,
.le-surface-card p {
  color: var(--le-ink-soft);
  line-height: 1.72;
  font-size: 1.02rem;
}

.le-hero__content {
  max-width: 620px;
}

.le-hero__visual,
.le-agency-hero__visual {
  position: relative;
}

.le-carousel-shell {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--le-shadow);
  background: #ececec;
}

.le-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
}

.le-carousel-slide {
  margin: 0;
}

.le-hero__image-wrap,
.le-agency-hero__visual {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--le-shadow);
  background: #ececec;
}

.le-hero__image,
.le-story__portrait,
.le-agency-hero__image {
  width: 100%;
  display: block;
  object-fit: cover;
}

.le-hero__image {
  min-height: 560px;
}

.le-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 0 1.05rem;
  background: #ffffff;
}

.le-carousel-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(160, 0, 85, 0.18);
}

.le-carousel-dots .is-active {
  background: var(--le-accent);
}

.le-hero__floating-card,
.le-note-card,
.le-form-card {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--le-line);
  box-shadow: var(--le-shadow);
}

.le-hero__floating-card {
  position: absolute;
  right: -1.2rem;
  bottom: 1.8rem;
  max-width: 340px;
  padding: 1.45rem 1.4rem;
}

.le-proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.le-proof-item {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(160, 0, 85, 0.09);
}

.le-proof-item strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--le-ink);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.le-proof-item span {
  color: var(--le-ink-soft);
  font-size: 0.94rem;
  line-height: 1.6;
}

.le-section {
  padding: 4.5rem 0;
  position: relative;
}

.le-section--tint {
  background: var(--le-panel);
}

.le-section--dark {
  background: linear-gradient(180deg, #4a4a4a 0%, #333333 100%);
}

.le-section--assistant {
  background: linear-gradient(180deg, var(--le-white) 0%, var(--le-panel) 100%);
}

.le-section + .le-section {
  border-top: 1px solid rgba(51, 51, 51, 0.05);
}

.le-section--editorial {
  background: linear-gradient(180deg, #ffffff 0%, #faf8f9 100%);
}

.le-section__head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.le-section__head--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  gap: 2rem;
  align-items: end;
}

.le-section__head--centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.le-section__head--light h2,
.le-section__head--light p {
  color: #fff8f0;
}

.le-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.le-editorial__quote h2 {
  max-width: 10ch;
}

.le-editorial__body {
  padding: 1.6rem 1.75rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(160, 0, 85, 0.1);
  box-shadow: 0 16px 34px rgba(51, 51, 51, 0.05);
}

.le-editorial__body p:first-child {
  margin-top: 0;
}

.le-pillar-grid,
.le-profile-grid,
.le-entry-grid,
.le-steps,
.le-two-col-grid,
.le-directory-grid,
.le-agency-preview-grid {
  display: grid;
  gap: 1.25rem;
}

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

.le-profile-grid,
.le-entry-grid,
.le-two-col-grid,
.le-agency-preview-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.le-entry-grid--services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.le-pillar-card,
.le-profile-card,
.le-entry-card,
.le-step,
.le-surface-card,
.le-directory-card,
.le-agency-preview,
.le-map-card {
  padding: 1.5rem;
  border-radius: 18px;
  background: var(--le-white);
  border: 1px solid rgba(160, 0, 85, 0.1);
  box-shadow: 0 16px 34px rgba(51, 51, 51, 0.06);
  position: relative;
}

.le-pillar-card::before,
.le-entry-card::before,
.le-step::before,
.le-surface-card::before,
.le-directory-card::before,
.le-agency-preview::before,
.le-note-card::before,
.le-form-card::before,
.le-map-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  width: 64px;
  height: 3px;
  border-radius: 999px;
  background: var(--le-accent);
}

.le-profile-card,
.le-section--dark .le-profile-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.le-profile-card::before {
  background: rgba(255, 255, 255, 0.72);
}

.le-profile-card h3,
.le-profile-card p,
.le-profile-card__kicker {
  color: #fff8f0;
}

.le-profile-card__kicker,
.le-entry-card__kicker {
  margin: 0 0 0.75rem;
  color: #f0bfd8;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.le-story__portrait {
  min-height: 520px;
  border-radius: 22px;
  box-shadow: var(--le-shadow);
  background: #ececec;
}

.le-network-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.le-network-stat {
  padding: 1.25rem 1.4rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(160, 0, 85, 0.1);
  box-shadow: 0 14px 28px rgba(51, 51, 51, 0.04);
}

.le-network-stat strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--le-ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.le-network-stat span {
  color: var(--le-ink-soft);
  line-height: 1.6;
  font-size: 0.94rem;
}

.le-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.le-tag-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.58rem 0.9rem;
  border-radius: 999px;
  background: var(--le-white);
  border: 1px solid rgba(160, 0, 85, 0.14);
  color: var(--le-ink-soft);
  font-size: 0.84rem;
}

.le-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  color: var(--le-accent);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.le-link-arrow::after {
  content: "→";
}

.le-link-arrow--light {
  color: #ffd4e9;
}

.le-zone-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.8rem;
}

.le-zone-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--le-white);
  border: 1px solid rgba(160, 0, 85, 0.14);
  color: var(--le-ink-soft);
}

.le-zone-pill.is-active,
.le-zone-pill:hover {
  background: var(--le-accent);
  color: #ffffff;
}

.le-directory-card,
.le-agency-preview {
  background: var(--le-white);
}

.le-directory-card.is-featured,
.le-agency-preview.is-featured {
  border-color: rgba(160, 0, 85, 0.28);
}

.le-directory-card__top,
.le-agency-preview__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.8rem;
  color: var(--le-accent);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.le-directory-card__advisor,
.le-directory-card__address,
.le-agency-hero__city {
  color: rgba(31, 23, 23, 0.66);
}

.le-directory-card__actions,
.le-agency-preview__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.le-directory-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.32fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.le-directory-sidebar {
  position: sticky;
  top: 110px;
}

.le-directory-sidebar__card {
  padding: 1.4rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(160, 0, 85, 0.12);
  box-shadow: 0 16px 34px rgba(51, 51, 51, 0.05);
}

.le-directory-sidebar__card h2 {
  margin-bottom: 1rem;
  font-size: 1.9rem;
}

.le-zone-filters--stacked {
  display: grid;
  gap: 0.65rem;
}

.le-zone-filters--stacked .le-zone-pill {
  justify-content: flex-start;
}

.le-mini-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.le-mini-stats div {
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(160, 0, 85, 0.04);
  border: 1px solid rgba(160, 0, 85, 0.12);
}

.le-mini-stats strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
  color: var(--le-accent);
}

.le-mini-stats span {
  display: block;
  margin-top: 0.35rem;
  color: var(--le-ink-soft);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.le-assistant {
  align-items: start;
}

.le-assistant__chat .site-chat-embed {
  grid-template-columns: minmax(0, 1fr);
}

.le-assistant__chat .site-chat-embed__header {
  display: none;
}

.site-chat-embed__shell {
  min-height: 650px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(160, 0, 85, 0.14);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--le-shadow);
}

.site-chat-embed__header h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
}

.site-chat-embed__header p {
  color: var(--le-ink-soft);
  line-height: 1.75;
}

.site-chat-embed__frame {
  width: 100%;
  min-height: 650px;
  border: 0;
}

.site-chat-embed__state {
  padding: 1.2rem 1.4rem;
  color: rgba(31, 23, 23, 0.66);
}

.le-process {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 1.5rem;
  align-items: start;
}

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

.le-steps--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.le-step {
  position: relative;
}

.le-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(160, 0, 85, 0.1);
  color: var(--le-accent);
  font-weight: 700;
}

.le-page-hero__grid {
  align-items: start;
}

.le-note-card,
.le-form-card,
.le-map-card {
  padding: 1.5rem;
}

.le-note-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.le-note-list div {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: var(--le-white);
  border: 1px solid rgba(160, 0, 85, 0.12);
}

.le-faq-list {
  display: grid;
  gap: 0.9rem;
}

.le-faq-item {
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(160, 0, 85, 0.12);
  box-shadow: 0 12px 28px rgba(51, 51, 51, 0.04);
  overflow: hidden;
}

.le-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--le-ink);
  position: relative;
}

.le-faq-item summary::-webkit-details-marker {
  display: none;
}

.le-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--le-accent);
  font-size: 1.2rem;
  font-weight: 500;
}

.le-faq-item[open] summary::after {
  content: "−";
}

.le-faq-item div {
  padding: 0 1.25rem 1.2rem;
}

.le-reassurance-card {
  margin-top: 1.4rem;
  padding: 1.2rem 1.25rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(160, 0, 85, 0.06), rgba(160, 0, 85, 0.02));
  border: 1px solid rgba(160, 0, 85, 0.12);
}

.le-reassurance-card strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--le-ink);
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.le-reassurance-card span {
  color: var(--le-ink-soft);
  line-height: 1.6;
}

.form-card {
  border-radius: 20px;
  background: var(--le-white);
  border: 1px solid rgba(160, 0, 85, 0.14);
  padding: 1.6rem;
  box-shadow: var(--le-shadow);
}

.le-form-card .form-card {
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label,
.checkbox-row {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--le-ink);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid rgba(160, 0, 85, 0.18);
  border-radius: 8px;
  background: rgba(160, 0, 85, 0.04);
  color: var(--le-ink);
  padding: 0.92rem 1rem;
  font: inherit;
}

.form-group textarea {
  min-height: 128px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.checkbox-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 1rem;
}

.checkbox-row input {
  margin-top: 0.2rem;
}

.form-note {
  margin-top: 0.9rem;
  color: rgba(51, 51, 51, 0.6);
  font-size: 0.84rem;
}

.le-final-cta {
  padding: 2.4rem;
  border-radius: 22px;
  background: linear-gradient(180deg, var(--le-white), var(--le-panel));
  border: 1px solid rgba(160, 0, 85, 0.12);
  box-shadow: var(--le-shadow);
  text-align: center;
  position: relative;
}

.le-final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 40px);
  width: 80px;
  height: 3px;
  border-radius: 999px;
  background: var(--le-accent);
}

.le-info-list {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.le-info-list div {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.le-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.le-check-list li {
  display: flex;
  gap: 0.7rem;
  color: var(--le-ink-soft);
}

.le-check-list li span:first-child {
  color: var(--le-accent);
}

.le-alert-card {
  margin-top: 1.2rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(160, 0, 85, 0.06);
  border: 1px solid rgba(160, 0, 85, 0.16);
  color: var(--le-ink-soft);
}

.le-footer {
  padding: 2.2rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #333333;
}

.le-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
}

.le-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.le-footer__logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: block;
}

.le-footer__copy {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.le-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  justify-content: flex-end;
}

.le-footer__links a {
  color: rgba(255, 255, 255, 0.78);
}

.ls-chat-widget #indicator {
  width: auto;
  height: auto;
}

.ls-chat-indicator,
.assistant-avatar--manon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(160, 0, 85, 0.28);
  background: linear-gradient(135deg, var(--le-accent), var(--le-accent-strong));
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 18px 36px rgba(127, 0, 67, 0.24);
}

.ls-chat-button {
  width: auto;
  height: auto;
  min-width: 0;
  padding: 0.75rem 1rem 0.75rem 0.78rem;
  border-radius: 999px;
  gap: 0.65rem;
  background: rgba(51, 51, 51, 0.98);
  border: 1px solid rgba(160, 0, 85, 0.26);
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(51, 51, 51, 0.2);
}

.ls-chat-button__mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--le-accent);
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.ls-chat-button__label {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .le-pillar-grid,
  .le-directory-grid,
  .le-entry-grid--services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .le-hero__grid,
  .le-page-hero__grid,
  .le-story,
  .le-assistant,
  .le-agency-hero,
  .le-process,
  .le-section__head--split,
  .le-editorial,
  .le-directory-layout,
  .le-network-band {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .le-nav {
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1.2rem;
    background: rgba(51, 51, 51, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .le-nav.is-open {
    display: flex;
  }

  .le-nav-toggle {
    display: inline-block;
  }

  .le-header__cta {
    display: none;
  }

  .le-proof-band,
  .le-pillar-grid,
  .le-profile-grid,
  .le-entry-grid,
  .le-steps,
  .le-steps--five,
  .le-two-col-grid,
  .le-directory-grid,
  .le-agency-preview-grid,
  .form-grid,
  .le-footer__inner,
  .le-mini-stats {
    grid-template-columns: minmax(0, 1fr);
  }

  .le-hero__floating-card {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }

  .le-directory-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .le-shell {
    width: min(100% - 1.2rem, 100%);
  }

  .le-brand__logo,
  .le-footer__logo {
    width: 58px;
    height: 58px;
  }

  .le-hero,
  .le-page-hero,
  .le-section {
    padding: 3.25rem 0;
  }

  .le-hero h1,
  .le-page-hero h1,
  .le-section h2,
  .le-final-cta h2 {
    line-height: 1;
  }

  .site-chat-embed__shell,
  .site-chat-embed__frame {
    min-height: 560px;
  }

  .ls-chat-button__label {
    display: none;
  }
}

.external-website-body h1,
.external-website-body h2,
.external-website-body h3,
.external-website-body h4,
.le-brand__title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
}

.le-header {
  backdrop-filter: none;
  background: #565656;
  box-shadow: none;
}

.le-header__inner {
  min-height: 96px;
}

.le-brand__logo {
  width: 88px;
  height: 88px;
  border-radius: 10px;
  background: #ffffff;
  padding: 0.2rem;
}

.le-brand__title {
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

.le-brand__subtitle {
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.12em;
}

.le-nav {
  gap: 1.6rem;
}

.le-nav a,
.le-button {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.le-header__cta {
  background: var(--le-accent);
  color: #ffffff;
  border-color: transparent;
}

.le-home-hero {
  padding: 2.3rem 0 3.3rem;
}

.le-home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 2rem;
  align-items: start;
}

.le-home-hero .le-eyebrow,
.le-page-hero .le-eyebrow,
.le-section__head .le-eyebrow,
.le-entry-card__kicker {
  color: var(--le-accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.le-home-hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.02;
  max-width: 11.5ch;
}

.le-hero__lead {
  max-width: 58ch;
  font-size: 1.05rem;
}

.le-home-hero__panel {
  margin-top: 1.8rem;
  padding: 1.25rem 1.35rem;
  border-left: 4px solid var(--le-accent);
  background: #f8f8f8;
}

.le-home-hero__panel strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--le-ink);
  font-size: 1.05rem;
}

.le-home-hero__panel p {
  margin: 0;
  color: var(--le-ink-soft);
}

.le-home-hero__slider {
  position: relative;
}

.le-carousel-shell {
  border-radius: 0;
  box-shadow: none;
  border: 1px solid rgba(51, 51, 51, 0.08);
}

.le-carousel-track {
  transition: transform 0.45s ease;
}

.le-hero__image {
  min-height: 600px;
}

.le-carousel-dots {
  gap: 0.65rem;
  padding: 1rem 0 0.8rem;
}

.le-carousel-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(160, 0, 85, 0.18);
  cursor: pointer;
}

.le-carousel-dots button.is-active {
  background: var(--le-accent);
}

.le-section {
  padding: 4.2rem 0;
}

.le-section--tight {
  padding-top: 3rem;
}

.le-editorial__quote h2,
.le-section__head h2,
.le-final-cta h2,
.le-page-hero h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.08;
}

.le-editorial__quote h2 {
  max-width: 14ch;
}

.le-editorial__body,
.le-pillar-card,
.le-step,
.le-surface-card,
.le-note-card,
.le-form-card,
.le-map-card,
.le-faq-item,
.le-territory-card {
  border-radius: 0;
  box-shadow: none;
}

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

.le-pillar-card,
.le-step,
.le-surface-card,
.le-territory-card {
  padding: 1.6rem;
}

.le-process-note {
  max-width: 760px;
  margin-top: 1.8rem;
}

.le-process-note p {
  margin: 0;
  color: var(--le-ink-soft);
  line-height: 1.75;
}

.le-section--coach {
  background: #ffffff;
}

.le-coach-block {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.le-coach-block__media {
  min-width: 0;
}

.le-story__portrait {
  min-height: 620px;
  border-radius: 0;
  box-shadow: none;
}

.le-services-section {
  background: #ffffff;
}

.le-service-list {
  display: grid;
  gap: 1rem;
}

.le-service-row {
  border: 1px solid rgba(160, 0, 85, 0.14);
  background: #ffffff;
}

.le-service-row__copy {
  padding: 1.55rem 1.7rem;
}

.le-service-row h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.15;
}

.le-service-row p:last-child {
  margin-bottom: 0;
  color: var(--le-ink-soft);
  line-height: 1.72;
}

.le-section--territory {
  background: #f6f4f5;
}

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

.le-territory-card strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--le-ink);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.le-territory-card p {
  margin: 0;
  color: var(--le-ink-soft);
  line-height: 1.68;
}

.le-section--faq {
  background: rgba(160, 0, 85, 0.06);
}

.le-faq-list {
  gap: 0.7rem;
}

.le-faq-item {
  border: 1px solid rgba(160, 0, 85, 0.16);
}

.le-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  border: 0;
  background: #ffffff;
  color: var(--le-ink);
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.le-faq-answer {
  display: none;
  padding: 0 1.35rem 1.2rem;
  background: #ffffff;
}

.le-faq-answer p {
  margin: 0;
  color: var(--le-ink-soft);
  line-height: 1.72;
}

.le-faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.le-faq-icon::before,
.le-faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: var(--le-accent);
  transform: translate(-50%, -50%);
}

.le-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.le-faq-item.is-open .le-faq-icon::after {
  opacity: 0;
}

.le-final-cta {
  padding: 2.3rem;
  border: 1px solid rgba(160, 0, 85, 0.16);
  background: #ffffff;
}

.le-footer {
  background: #4e4e4e;
}

@media (max-width: 1100px) {
  .le-home-hero__grid,
  .le-coach-block,
  .le-territory-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .le-hero__image,
  .le-story__portrait {
    min-height: 520px;
  }
}

@media (max-width: 900px) {
  .le-nav {
    background: rgba(86, 86, 86, 0.98);
  }

  .le-pillar-grid,
  .le-territory-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .le-home-hero h1 {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .le-header__inner {
    min-height: 82px;
  }

  .le-brand__logo {
    width: 66px;
    height: 66px;
  }

  .le-home-hero {
    padding-top: 1.2rem;
  }

  .le-home-hero__panel,
  .le-final-cta,
  .le-service-row__copy {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .le-hero__image,
  .le-story__portrait {
    min-height: 420px;
  }
}

.le-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: transparent;
  border-bottom: 0;
}

.le-header__utility {
  background: #3e3e3e;
  color: #ffffff;
}

.le-header__utility-inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.le-header__utility-copy {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.le-header__utility-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.le-header__phone,
.le-header__rdv {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.le-header__phone {
  color: #ffffff;
}

.le-header__rdv {
  background: var(--le-accent);
  color: #ffffff;
}

.le-header__main {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(51, 51, 51, 0.08);
}

.le-header__inner {
  min-height: 92px;
}

.le-brand {
  color: var(--le-ink);
}

.le-brand__logo {
  width: 98px;
  height: 54px;
  object-fit: contain;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.le-brand__title {
  color: #4a4a4a;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.le-brand__subtitle {
  color: rgba(74, 74, 74, 0.68);
}

.le-nav {
  gap: 1.25rem;
}

.le-nav a {
  color: #4c4c4c;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.le-nav a:hover,
.le-nav a.is-active {
  color: var(--le-accent);
}

.le-nav-toggle span {
  background: #4c4c4c;
}

.le-home-hero--carousel {
  padding: 0;
}

.le-carousel-shell--hero {
  position: relative;
  border: 0;
  border-radius: 0;
  overflow: hidden;
}

.le-carousel-slide--hero {
  position: relative;
}

.le-carousel-slide--hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0.28) 42%, rgba(0, 0, 0, 0.16) 100%);
}

.le-hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.le-home-hero__overlay-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}

.le-home-hero__overlay-content .le-home-hero__copy {
  max-width: 640px;
  padding: 18rem 0 5.5rem;
}

.le-home-hero__overlay-content .le-eyebrow,
.le-home-hero__overlay-content h1,
.le-home-hero__overlay-content .le-hero__lead {
  color: #ffffff;
}

.le-home-hero__overlay-content h1 {
  max-width: 11ch;
  font-size: clamp(3.1rem, 6vw, 5.8rem);
  line-height: 0.98;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.24);
}

.le-home-hero__overlay-content .le-hero__lead {
  max-width: 54ch;
  font-size: 1.08rem;
}

.le-home-hero__overlay-content .le-button--secondary {
  background: rgba(255, 255, 255, 0.92);
}

.le-home-hero__overlay-content .le-home-hero__panel {
  margin-top: 1.55rem;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.14);
  border-left: 4px solid var(--le-accent);
  backdrop-filter: blur(6px);
}

.le-home-hero__overlay-content .le-home-hero__panel strong,
.le-home-hero__overlay-content .le-home-hero__panel p {
  color: #ffffff;
}

.le-carousel-shell--hero .le-hero__image {
  width: 100%;
  min-height: calc(100vh - 146px);
  max-height: 960px;
  object-fit: cover;
}

.le-carousel-dots--hero {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 3;
  background: transparent;
  padding: 0;
}

.le-carousel-dots--hero button {
  background: rgba(255, 255, 255, 0.35);
}

.le-carousel-dots--hero button.is-active {
  background: #ffffff;
}

@media (max-width: 900px) {
  .le-header__utility-inner {
    min-height: auto;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    flex-direction: column;
    align-items: stretch;
  }

  .le-header__utility-actions {
    justify-content: space-between;
  }

  .le-header__main {
    background: rgba(255, 255, 255, 0.99);
  }

  .le-nav {
    top: 92px;
    background: rgba(255, 255, 255, 0.99);
    border-bottom: 1px solid rgba(51, 51, 51, 0.08);
  }

  .le-home-hero__overlay-content .le-home-hero__copy {
    padding-top: 3rem;
    padding-bottom: 5rem;
  }

  .le-carousel-shell--hero .le-hero__image {
    min-height: 70vh;
  }
}

@media (max-width: 640px) {
  .le-header__utility-copy {
    text-align: center;
    letter-spacing: 0.08em;
  }

  .le-header__utility-actions {
    flex-direction: column;
  }

  .le-header__phone,
  .le-header__rdv {
    width: 100%;
  }

  .le-brand__logo {
    width: 82px;
    height: 44px;
  }

  .le-home-hero__overlay-content .le-home-hero__copy {
    padding-top: 2rem;
  }

  .le-home-hero__overlay-content h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }

  .le-carousel-shell--hero .le-hero__image {
    min-height: 78vh;
  }

  .le-carousel-dots--hero {
    bottom: 1.2rem;
  }
}
