:root {
  --plum-950: #1b093d;
  --plum-900: #24104f;
  --plum-800: #32126b;
  --plum-700: #4f2486;
  --plum-100: #eee7f7;
  --orange-600: #ec641c;
  --orange-500: #f47a20;
  --orange-100: #fff0e2;
  --red-500: #ec342e;
  --cream: #fff9f3;
  --cream-deep: #f8eee4;
  --white: #ffffff;
  --ink: #21182c;
  --ink-soft: #685f70;
  --line: #e9e1e9;
  --green: #2f9b68;
  --gold: #f5ad23;
  --shadow-sm: 0 8px 26px rgba(35, 16, 61, 0.08);
  --shadow-md: 0 18px 55px rgba(35, 16, 61, 0.13);
  --shadow-lg: 0 28px 80px rgba(22, 7, 51, 0.2);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-height: 82px;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: "Segoe UI", Inter, Arial, sans-serif;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

[data-auth-guest][hidden] {
  display: none !important;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

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

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(244, 122, 32, 0.45);
  outline-offset: 3px;
}

::selection {
  color: var(--white);
  background: var(--plum-700);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 11px 16px;
  color: var(--white);
  background: var(--plum-900);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 0.2s;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  border-color: rgba(54, 26, 91, 0.08);
  box-shadow: 0 8px 30px rgba(35, 16, 61, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  width: 176px;
  height: 66px;
  overflow: hidden;
  border-radius: 8px;
}

.brand img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-left: auto;
}

.nav-link {
  position: relative;
  padding: 28px 0 25px;
  color: #4f4658;
  font-size: 0.93rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange-500);
  border-radius: 99px;
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--plum-800);
}

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

.nav-cta {
  margin-left: 38px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px 9px;
  margin-left: auto;
  background: transparent;
  border: 0;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background: var(--plum-900);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0.01em;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 0.25s ease;
}

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

.button:hover svg {
  transform: translateX(3px);
}

.button--small {
  min-height: 44px;
  padding-inline: 20px;
  color: var(--white);
  background: var(--plum-800);
  font-size: 0.86rem;
}

.button--small:hover {
  background: var(--orange-600);
  box-shadow: 0 10px 24px rgba(236, 100, 28, 0.23);
}

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-500), var(--red-500));
  box-shadow: 0 12px 28px rgba(236, 86, 30, 0.24);
}

.button--primary:hover {
  box-shadow: 0 16px 34px rgba(236, 86, 30, 0.34);
}

.button--outline {
  color: var(--plum-800);
  background: transparent;
  border-color: rgba(79, 36, 134, 0.28);
}

.button--outline:hover {
  color: var(--white);
  background: var(--plum-800);
  border-color: var(--plum-800);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--orange-600);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 27px;
  height: 2px;
  background: currentColor;
  border-radius: 9px;
}

.eyebrow--light {
  color: #ffc184;
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading h2,
.about__content h2,
.contact__intro h2 {
  max-width: 770px;
  margin-bottom: 0;
  color: var(--plum-950);
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 4.4vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.047em;
  line-height: 1.06;
}

.section-heading h2 em,
.about__content h2 em,
.contact__intro h2 em {
  color: var(--orange-600);
  font-weight: 500;
}

.section-heading--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.section-heading--split > p {
  max-width: 390px;
  margin: 0 0 7px;
  color: var(--ink-soft);
}

.section-heading--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center h2 {
  max-width: 720px;
}

.section-heading--center > p:last-child {
  max-width: 620px;
  margin: 22px auto 0;
  color: var(--ink-soft);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: max(650px, calc(100svh - var(--header-height)));
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: var(--plum-950);
}

.hero__media,
.hero__overlay {
  position: absolute;
  z-index: -3;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  transform: scale(1.015);
  animation: heroDrift 16s ease-out both;
}

@keyframes heroDrift {
  from { transform: scale(1.08); }
  to { transform: scale(1.015); }
}

.hero__overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(20, 7, 44, 0.97) 0%, rgba(28, 8, 56, 0.83) 39%, rgba(24, 8, 43, 0.25) 68%, rgba(19, 7, 34, 0.36) 100%),
    linear-gradient(0deg, rgba(15, 5, 29, 0.55), transparent 45%);
}

.hero__glow {
  position: absolute;
  z-index: -1;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 174, 89, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.hero__glow::before,
.hero__glow::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 174, 89, 0.13);
  border-radius: 50%;
  inset: 32px;
}

.hero__glow::after {
  inset: 68px;
}

.hero__glow--one {
  top: -190px;
  right: -80px;
}

.hero__glow--two {
  bottom: -240px;
  left: 42%;
}

.hero__content {
  padding: 98px 0 140px;
}

.hero__content .eyebrow {
  margin-bottom: 24px;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-family: var(--font-display);
  font-size: clamp(3.7rem, 6.4vw, 6.5rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.96;
  text-wrap: balance;
}

.hero h1 em {
  color: #ff9c45;
  font-weight: 500;
}

.hero__intro {
  max-width: 570px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 0.92rem;
  font-weight: 700;
}

.text-link--light {
  color: rgba(255, 255, 255, 0.9);
}

.text-link:hover .play-icon {
  color: var(--plum-900);
  background: var(--white);
  transform: scale(1.08);
}

.play-icon {
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  place-items: center;
  transition: 0.25s ease;
}

.play-icon svg {
  width: 18px;
  fill: currentColor;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 48px;
}

.proof-avatars {
  display: flex;
}

.proof-avatars img {
  width: 39px;
  height: 39px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
}

.proof-avatars img + img {
  margin-left: -10px;
}

.stars {
  color: var(--gold);
  font-size: 0.83rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.hero__proof p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.77rem;
  line-height: 1.2;
}

.hero__proof strong {
  color: var(--white);
}

.hero__scroll {
  position: absolute;
  right: max(24px, calc((100% - var(--container)) / 2));
  bottom: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
  animation: scrollNudge 1.8s ease-in-out infinite;
}

@keyframes scrollNudge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

.quick-find {
  position: relative;
  z-index: 10;
  height: 0;
}

.finder {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.9fr 0.85fr auto;
  align-items: center;
  min-height: 118px;
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(65, 33, 102, 0.08);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  transform: translateY(-50%);
}

.finder__heading {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 22px 0 10px;
  color: var(--plum-900);
  font-family: var(--font-display);
  font-size: 1.03rem;
  font-weight: 700;
  line-height: 1.2;
}

.finder__heading small {
  display: block;
  margin-bottom: 4px;
  color: var(--orange-600);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.finder__icon {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  color: var(--orange-600);
  background: var(--orange-100);
  border-radius: 50%;
  place-items: center;
}

.finder__icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.finder__field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 62px;
  padding: 0 20px;
  border-left: 1px solid var(--line);
}

.finder__field > span {
  margin-bottom: 2px;
  color: #8b8390;
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.finder__field select,
.finder__field input {
  width: 100%;
  height: 31px;
  padding: 0 24px 0 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 0.86rem;
  font-weight: 650;
  outline: 0;
}

.finder__field input {
  padding-right: 0;
}

.finder__submit {
  min-height: 58px;
  padding-inline: 22px;
  white-space: nowrap;
}

.services {
  padding-top: 160px;
  background:
    radial-gradient(circle at 95% 5%, rgba(244, 122, 32, 0.065), transparent 26%),
    var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 235px;
  gap: 16px;
}

.service-card {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  padding: 0;
  color: var(--white);
  text-align: left;
  background: var(--plum-900);
  border: 0;
  border-radius: var(--radius-md);
  isolation: isolate;
}

.service-card--featured {
  grid-column: span 5;
  grid-row: span 2;
}

.service-card:nth-child(3) {
  grid-column: span 3;
}

.service-card:nth-child(4) {
  grid-column: span 3;
}

.service-card:nth-child(5) {
  grid-column: span 4;
}

.service-card img,
.service-card__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-card img {
  z-index: -2;
  object-fit: cover;
  transition: transform 0.65s var(--ease), filter 0.5s ease;
}

.service-card--featured img {
  object-position: center 38%;
}

.service-card:nth-child(5) img {
  object-position: center 56%;
}

.service-card__shade {
  z-index: -1;
  background: linear-gradient(180deg, rgba(16, 7, 27, 0.06) 22%, rgba(24, 8, 47, 0.86) 100%);
  transition: background 0.4s ease;
}

.service-card__count {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.91);
  background: rgba(28, 10, 52, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 99px;
  backdrop-filter: blur(8px);
  font-size: 0.64rem;
  font-weight: 650;
}

.service-card__body {
  position: absolute;
  right: 20px;
  bottom: 19px;
  left: 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 12px;
}

.service-card--featured .service-card__body {
  right: 28px;
  bottom: 28px;
  left: 28px;
  grid-template-columns: 1fr auto;
}

.service-card__number {
  align-self: start;
  color: #ff9e52;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.service-card--featured .service-card__number {
  position: absolute;
  bottom: 72px;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.service-card--featured .service-card__title {
  font-size: clamp(2rem, 3.1vw, 3rem);
}

.service-card__action {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
  font-weight: 750;
  text-transform: uppercase;
  white-space: nowrap;
}

.service-card__action span {
  font-size: 1rem;
  transition: transform 0.25s ease;
}

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

.service-card:hover .service-card__shade {
  background: linear-gradient(180deg, rgba(31, 11, 52, 0.02) 12%, rgba(55, 17, 85, 0.93) 100%);
}

.service-card:hover .service-card__action span {
  transform: translate(3px, -3px);
}

.about {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(244, 122, 32, 0.07), transparent 28%),
    var(--cream);
}

.about::before {
  position: absolute;
  top: 30px;
  right: -55px;
  width: 170px;
  height: 170px;
  content: "";
  border: 1px solid rgba(79, 36, 134, 0.11);
  border-radius: 50%;
  box-shadow: inset 0 0 0 34px var(--cream), inset 0 0 0 35px rgba(79, 36, 134, 0.11), inset 0 0 0 68px var(--cream), inset 0 0 0 69px rgba(79, 36, 134, 0.11);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 92px;
}

.about__visual {
  position: relative;
  min-height: 610px;
}

.about__image {
  overflow: hidden;
  background: #e9daca;
  border-radius: 160px 160px 24px 24px;
  box-shadow: var(--shadow-md);
}

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

.about__image--main {
  position: absolute;
  top: 0;
  left: 12px;
  width: 72%;
  height: 530px;
}

.about__image--small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 49%;
  height: 315px;
  border: 8px solid var(--cream);
  border-radius: 120px 120px 22px 22px;
}

.about__image--small img {
  object-position: 65% center;
}

.about__badge {
  position: absolute;
  bottom: 28px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 225px;
  padding: 18px 21px;
  color: var(--white);
  background: var(--plum-800);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.about__badge strong {
  color: #ff9d4e;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.about__badge span {
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.35;
  text-transform: uppercase;
}

.about__sparkle {
  position: absolute;
  color: var(--orange-500);
}

.about__sparkle--one {
  top: 55px;
  right: 29px;
  font-size: 1.5rem;
}

.about__sparkle--two {
  top: 90px;
  right: 64px;
  color: var(--plum-700);
  font-size: 0.75rem;
}

.about__content h2 {
  margin-bottom: 26px;
}

.about__lead {
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.benefit-list {
  display: grid;
  gap: 22px;
  margin-bottom: 34px;
}

.benefit {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 16px;
}

.benefit__icon {
  display: grid;
  width: 46px;
  height: 46px;
  color: var(--plum-700);
  background: var(--white);
  border: 1px solid rgba(79, 36, 134, 0.09);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  place-items: center;
}

.benefit__icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.benefit h3 {
  margin-bottom: 3px;
  color: var(--plum-900);
  font-size: 0.98rem;
}

.benefit p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.55;
}

.providers {
  background: var(--white);
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: -6px auto 42px;
  padding: 7px;
  background: var(--cream);
  border: 1px solid #f1e7de;
  border-radius: 999px;
  width: max-content;
  max-width: 100%;
}

.filter-button {
  min-height: 39px;
  padding: 0 18px;
  color: #706777;
  background: transparent;
  border: 0;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 720;
  white-space: nowrap;
  transition: 0.2s ease;
}

.filter-button:hover {
  color: var(--plum-800);
}

.filter-button.active {
  color: var(--white);
  background: var(--plum-800);
  box-shadow: 0 7px 16px rgba(50, 18, 107, 0.18);
}

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

.provider-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 5px 20px rgba(32, 13, 57, 0.045);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease, border-color 0.35s ease;
}

.provider-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--orange-500), var(--red-500), var(--plum-700));
  opacity: 0;
  transform: scaleX(0.4);
  transition: 0.35s ease;
}

.provider-card:hover {
  border-color: rgba(79, 36, 134, 0.18);
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.provider-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.provider-card.is-hidden {
  display: none;
}

.provider-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 30px;
  margin-bottom: 19px;
}

.available {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #498064;
  font-size: 0.66rem;
  font-weight: 700;
}

.available i {
  display: block;
  width: 7px;
  height: 7px;
  background: #3eb779;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(62, 183, 121, 0.12);
}

.favourite {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  color: #8c838f;
  background: var(--cream);
  border: 1px solid #eee4ea;
  border-radius: 50%;
  place-items: center;
  transition: 0.2s ease;
}

.favourite svg {
  width: 16px;
  fill: transparent;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.favourite:hover,
.favourite[aria-pressed="true"] {
  color: var(--red-500);
  background: #fff1f0;
  border-color: #ffd5d2;
}

.favourite[aria-pressed="true"] svg {
  fill: currentColor;
}

.provider-card__identity {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.provider-card__identity > img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--orange-100), 0 7px 18px rgba(35, 16, 61, 0.14);
}

.provider-card__category {
  margin-bottom: 4px;
  color: var(--orange-600);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.provider-card h3 {
  margin-bottom: 4px;
  overflow: hidden;
  color: var(--plum-900);
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.verified {
  display: inline-grid;
  width: 16px;
  height: 16px;
  margin-left: 3px;
  color: var(--white);
  background: var(--plum-700);
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: 0.62rem;
  vertical-align: 2px;
  place-items: center;
}

.location {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  color: #857d89;
  font-size: 0.69rem;
  line-height: 1.3;
}

.location svg {
  flex: 0 0 13px;
  width: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.provider-card__rating {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  color: #8b838e;
  font-size: 0.68rem;
}

.rating-score {
  color: var(--plum-900);
  font-size: 0.78rem;
  font-weight: 800;
}

.provider-card__bio {
  min-height: 67px;
  margin-bottom: 16px;
  color: var(--ink-soft);
  font-size: 0.81rem;
  line-height: 1.62;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}

.tag-list span {
  padding: 5px 9px;
  color: #665d6e;
  background: #f7f2f8;
  border-radius: 6px;
  font-size: 0.62rem;
  font-weight: 650;
}

.provider-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 19px;
  margin-top: auto;
  border-top: 1px solid var(--line);
}

.provider-card__footer p {
  margin: 0;
  line-height: 1.2;
}

.provider-card__footer small {
  display: block;
  margin-bottom: 3px;
  color: #958c99;
  font-size: 0.61rem;
}

.provider-card__footer strong {
  color: var(--plum-900);
  font-size: 0.84rem;
}

.button--card {
  min-height: 38px;
  padding-inline: 15px;
  color: var(--plum-800);
  background: transparent;
  border-color: rgba(79, 36, 134, 0.18);
  font-size: 0.7rem;
}

.button--card:hover {
  color: var(--white);
  background: var(--plum-800);
}

.provider-empty {
  padding: 40px;
  color: var(--ink-soft);
  text-align: center;
  background: var(--cream);
  border-radius: var(--radius-md);
}

.stories {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 0%, rgba(124, 49, 178, 0.3), transparent 25%),
    linear-gradient(145deg, var(--plum-950), #2f0b5f 60%, #3c1263);
}

.stories__ornament {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 172, 84, 0.11);
  border-radius: 50%;
}

.stories__ornament::before,
.stories__ornament::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 172, 84, 0.1);
  border-radius: 50%;
  inset: 30px;
}

.stories__ornament::after {
  inset: 62px;
}

.stories__ornament--one {
  top: -160px;
  left: -110px;
}

.stories__ornament--two {
  right: -110px;
  bottom: -160px;
}

.section-heading--light h2 {
  color: var(--white);
}

.section-heading--light h2 em {
  color: #ff9a45;
}

.story-controls {
  display: flex;
  gap: 10px;
  padding-bottom: 8px;
}

.story-controls button {
  display: grid;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  font-size: 1.1rem;
  place-items: center;
  transition: 0.2s ease;
}

.story-controls button:hover {
  color: var(--plum-900);
  background: var(--white);
  border-color: var(--white);
}

.story-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(345px, 1fr));
  gap: 20px;
  padding: 3px 3px 20px;
  margin: 0 -3px -20px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.story-track::-webkit-scrollbar {
  display: none;
}

.story-card {
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 50px rgba(12, 2, 27, 0.2);
  scroll-snap-align: start;
}

.story-card__image {
  position: relative;
  height: 245px;
  overflow: hidden;
}

.story-card__image::after {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, transparent 50%, rgba(25, 8, 43, 0.35));
  inset: 0;
}

.story-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.story-card:first-child .story-card__image img {
  object-position: 62% center;
}

.story-card:hover .story-card__image img {
  transform: scale(1.06);
}

.story-card__image > span {
  position: absolute;
  z-index: 2;
  top: 17px;
  left: 17px;
  padding: 6px 11px;
  color: var(--white);
  background: rgba(44, 16, 81, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 99px;
  backdrop-filter: blur(8px);
  font-size: 0.62rem;
  font-weight: 700;
}

.story-card__body {
  padding: 24px;
}

.story-card__meta {
  margin-bottom: 7px;
  color: var(--orange-600);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.story-card h3 {
  margin-bottom: 13px;
  color: var(--plum-900);
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.story-card blockquote {
  min-height: 77px;
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.58;
}

.story-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  color: #8a828e;
  border-top: 1px solid var(--line);
  font-size: 0.65rem;
}

.process {
  background:
    radial-gradient(circle at 50% 100%, rgba(244, 122, 32, 0.07), transparent 32%),
    var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0;
  margin: 66px 0 0;
  list-style: none;
}

.process-grid li {
  position: relative;
  padding: 0 52px;
  text-align: center;
}

.process-grid li + li {
  border-left: 1px dashed rgba(79, 36, 134, 0.22);
}

.process__number {
  position: absolute;
  top: -29px;
  left: calc(50% + 25px);
  color: rgba(79, 36, 134, 0.16);
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 700;
}

.process__icon {
  display: grid;
  width: 78px;
  height: 78px;
  margin: 0 auto 23px;
  color: var(--orange-600);
  background: var(--orange-100);
  border-radius: 50%;
  box-shadow: 0 0 0 9px rgba(255, 240, 226, 0.52);
  place-items: center;
}

.process-grid li:nth-child(2) .process__icon {
  color: var(--plum-700);
  background: var(--plum-100);
  box-shadow: 0 0 0 9px rgba(238, 231, 247, 0.52);
}

.process__icon svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.process-grid h3 {
  margin-bottom: 8px;
  color: var(--plum-900);
  font-family: var(--font-display);
  font-size: 1.43rem;
}

.process-grid p {
  max-width: 290px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.contact {
  padding-top: 40px;
  padding-bottom: 110px;
  background: var(--cream);
}

.contact__shell {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(500px, 1.14fr);
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact__intro {
  position: relative;
  overflow: hidden;
  padding: 68px 55px;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 100%, rgba(240, 96, 31, 0.26), transparent 32%),
    linear-gradient(145deg, var(--plum-950), var(--plum-800));
}

.contact__intro::before,
.contact__intro::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 174, 89, 0.12);
  border-radius: 50%;
}

.contact__intro::before {
  top: -100px;
  right: -115px;
  width: 270px;
  height: 270px;
}

.contact__intro::after {
  top: -63px;
  right: -78px;
  width: 190px;
  height: 190px;
}

.contact__intro h2 {
  margin-bottom: 23px;
  color: var(--white);
  font-size: clamp(2.5rem, 4.4vw, 4rem);
}

.contact__intro h2 em {
  color: #ff9b46;
}

.contact__intro > p:not(.eyebrow):not(.contact__hours) {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.69);
}

.contact__details {
  display: grid;
  gap: 14px;
  margin-top: 37px;
}

.contact__details a {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
}

.contact__details a > span {
  display: grid;
  width: 40px;
  height: 40px;
  color: #ffac65;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  place-items: center;
}

.contact__details svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.contact__details small {
  display: block;
  margin-bottom: 1px;
  color: rgba(255, 255, 255, 0.53);
  font-size: 0.65rem;
}

.contact__details strong {
  font-size: 0.84rem;
}

.contact__hours {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 39px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.66rem;
}

.contact__hours span {
  width: 7px;
  height: 7px;
  background: #6bd69c;
  border-radius: 50%;
}

.contact-form {
  padding: 55px;
}

.contact-form__heading {
  margin-bottom: 27px;
}

.contact-form__heading h3 {
  margin-bottom: 4px;
  color: var(--plum-900);
  font-family: var(--font-display);
  font-size: 1.65rem;
}

.contact-form__heading p {
  margin: 0;
  color: #8d8491;
  font-size: 0.78rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-form label {
  display: block;
  margin-bottom: 17px;
}

.contact-form label > span {
  display: block;
  margin-bottom: 7px;
  color: #5d5465;
  font-size: 0.7rem;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  background: #fcfafc;
  border: 1px solid #e8e0e9;
  border-radius: 10px;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input,
.contact-form select {
  height: 49px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 105px;
  padding: 12px 14px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa2ad;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: var(--white);
  border-color: rgba(79, 36, 134, 0.55);
  box-shadow: 0 0 0 4px rgba(79, 36, 134, 0.08);
}

.form-privacy {
  max-width: 490px;
  margin: 11px auto 0;
  color: #9b929e;
  font-size: 0.61rem;
  text-align: center;
}

.site-footer {
  color: rgba(255, 255, 255, 0.68);
  background: #160733;
}

.footer__top {
  display: grid;
  grid-template-columns: 0.85fr 1.6fr;
  gap: 90px;
  padding-top: 70px;
  padding-bottom: 55px;
}

.brand--footer {
  width: 165px;
  height: 61px;
  padding: 5px;
  background: var(--white);
  border-radius: 9px;
}

.footer__brand > p {
  max-width: 260px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-display);
  font-size: 1rem;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}

.footer__links h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer__links a,
.footer__links span {
  display: block;
  width: fit-content;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.53);
  font-size: 0.75rem;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: #ffad67;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 65px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.65rem;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom p:last-child {
  display: flex;
  gap: 22px;
}

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

.provider-modal {
  width: min(calc(100% - 32px), 650px);
  max-height: calc(100vh - 40px);
  padding: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: 0 35px 110px rgba(20, 5, 43, 0.42);
}

.provider-modal[open] {
  animation: modalIn 0.3s var(--ease) both;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.provider-modal::backdrop {
  background: rgba(20, 6, 42, 0.72);
  backdrop-filter: blur(5px);
}

.modal-close {
  position: absolute;
  z-index: 3;
  top: 15px;
  right: 15px;
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0 0 3px;
  color: var(--white);
  background: rgba(22, 7, 51, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  font-size: 1.55rem;
  line-height: 1;
  place-items: center;
}

.modal__header {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: 19px;
  padding: 35px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 0%, rgba(235, 92, 31, 0.38), transparent 38%),
    linear-gradient(135deg, var(--plum-950), var(--plum-700));
}

.modal__header > img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 8px 26px rgba(9, 1, 23, 0.3);
}

.modal__header .provider-card__category {
  color: #ffad67;
}

.modal__header h2 {
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: -0.03em;
}

.modal__header .location,
.modal__header .provider-card__rating {
  color: rgba(255, 255, 255, 0.65);
}

.modal__header .provider-card__rating {
  margin-top: 9px;
  margin-bottom: 0;
}

.modal__header .rating-score {
  color: var(--white);
}

.modal__body {
  padding: 30px 35px 26px;
}

.modal__body > p:first-child {
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.7;
}

.modal__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin: 24px 0;
}

.modal__facts > div {
  padding: 13px;
  background: var(--cream);
  border-radius: 10px;
}

.modal__facts small {
  display: block;
  margin-bottom: 2px;
  color: #958c98;
  font-size: 0.6rem;
}

.modal__facts strong {
  color: var(--plum-900);
  font-size: 0.78rem;
}

.modal__body h3 {
  margin-bottom: 10px;
  color: var(--plum-900);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.modal__body ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.modal__body li {
  position: relative;
  padding-left: 17px;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.modal__body li::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--orange-500);
  border-radius: 50%;
}

.modal__quote {
  position: relative;
  padding: 18px 20px 17px 45px;
  margin-top: 24px;
  background: #f8f3fa;
  border-radius: 12px;
}

.modal__quote > span {
  position: absolute;
  top: 9px;
  left: 16px;
  color: var(--orange-500);
  font-family: Georgia, serif;
  font-size: 2.3rem;
  line-height: 1;
}

.modal__quote blockquote {
  margin-bottom: 6px;
  color: #5e5368;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-style: italic;
  line-height: 1.5;
}

.modal__quote p {
  margin: 0;
  color: #8e8493;
  font-size: 0.64rem;
}

.modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 35px;
  background: var(--cream);
  border-top: 1px solid #eee4e9;
}

.modal__footer p {
  margin: 0;
  line-height: 1.2;
}

.modal__footer small {
  display: block;
  color: #978d9a;
  font-size: 0.63rem;
}

.modal__footer strong {
  color: var(--plum-900);
}

.toast {
  position: fixed;
  z-index: 2500;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 11px;
  max-width: min(360px, calc(100% - 32px));
  padding: 14px 18px;
  color: var(--white);
  background: var(--plum-950);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  font-size: 0.8rem;
  font-weight: 650;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.25s ease, transform 0.3s var(--ease);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast__icon {
  display: grid;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 0.7rem;
  place-items: center;
}

.planner-list {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(244, 122, 32, 0.08), transparent 24%),
    radial-gradient(circle at 94% 88%, rgba(79, 36, 134, 0.07), transparent 24%),
    var(--cream);
}

.planner-list__shape {
  position: absolute;
  width: 220px;
  height: 220px;
  pointer-events: none;
  border: 1px solid rgba(79, 36, 134, 0.1);
  border-radius: 50%;
}

.planner-list__shape::before,
.planner-list__shape::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(79, 36, 134, 0.08);
  border-radius: inherit;
  inset: 28px;
}

.planner-list__shape::after {
  inset: 58px;
}

.planner-list__shape--one {
  top: 22px;
  right: -105px;
}

.planner-list__shape--two {
  bottom: 140px;
  left: -135px;
}

.planner-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 15px 13px 22px;
  margin: -3px 0 30px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(79, 36, 134, 0.1);
  border-radius: 14px;
  box-shadow: 0 10px 34px rgba(35, 16, 61, 0.06);
  backdrop-filter: blur(12px);
}

.planner-toolbar > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.planner-toolbar > p strong {
  color: var(--plum-800);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.planner-search {
  position: relative;
  display: block;
  width: min(100%, 390px);
}

.planner-search svg {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 16px;
  width: 18px;
  fill: none;
  stroke: #8d8292;
  stroke-linecap: round;
  stroke-width: 1.7;
  transform: translateY(-50%);
}

.planner-search input {
  width: 100%;
  height: 46px;
  padding: 0 18px 0 45px;
  color: var(--ink);
  background: #faf7fb;
  border: 1px solid #e6dde8;
  border-radius: 10px;
  outline: 0;
  font-size: 0.78rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.planner-search input::placeholder {
  color: #9a919d;
}

.planner-search input:focus {
  background: var(--white);
  border-color: rgba(79, 36, 134, 0.52);
  box-shadow: 0 0 0 4px rgba(79, 36, 134, 0.08);
}

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

.planner-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(79, 36, 134, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 27px rgba(35, 16, 61, 0.065);
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease, border-color 0.35s ease;
}

.planner-card:hover {
  border-color: rgba(79, 36, 134, 0.22);
  box-shadow: 0 22px 50px rgba(35, 16, 61, 0.13);
  transform: translateY(-7px);
}

.planner-card.is-hidden {
  display: none;
}

.planner-card__cover {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: var(--plum-900);
}

.planner-card__cover::after {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, rgba(24, 8, 47, 0.03) 38%, rgba(24, 8, 47, 0.5));
  inset: 0;
}

.planner-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.45s ease;
}

.planner-card:nth-child(3) .planner-card__cover img,
.planner-card:nth-child(11) .planner-card__cover img {
  object-position: center 35%;
}

.planner-card:nth-child(5) .planner-card__cover img {
  object-position: center 58%;
}

.planner-card:nth-child(9) .planner-card__cover img {
  object-position: center 38%;
}

.planner-card:hover .planner-card__cover img {
  filter: saturate(1.08);
  transform: scale(1.06);
}

.planner-card__cover > span {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 15px;
  padding: 6px 10px;
  color: var(--white);
  background: rgba(38, 12, 72, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  backdrop-filter: blur(8px);
  font-size: 0.61rem;
  font-weight: 750;
}

.planner-card__content {
  display: flex;
  flex: 1;
  padding: 0 22px 21px;
  flex-direction: column;
}

.planner-card__identity {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  align-items: end;
  gap: 13px;
  min-height: 76px;
  margin-top: -31px;
  margin-bottom: 12px;
}

.planner-card__identity > img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  background: #eee7f0;
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(28, 8, 52, 0.18);
}

.planner-card__identity > div {
  min-width: 0;
  padding-bottom: 4px;
}

.planner-card__identity h3 {
  margin-bottom: 2px;
  overflow: hidden;
  color: var(--plum-900);
  font-family: var(--font-display);
  font-size: 1.23rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.planner-card__identity p {
  margin: 0;
  overflow: hidden;
  color: #847a89;
  font-size: 0.66rem;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.planner-card__rating {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
}

.planner-card__rating > span {
  color: var(--gold);
  font-size: 0.71rem;
  letter-spacing: 0.03em;
}

.planner-card__rating strong {
  color: var(--plum-900);
  font-size: 0.74rem;
}

.planner-card__rating small {
  color: #938a96;
  font-size: 0.63rem;
}

.planner-card__bio {
  min-height: 62px;
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-size: 0.77rem;
  line-height: 1.58;
}

.planner-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 19px;
}

.planner-card__tags span {
  padding: 5px 8px;
  color: #685c70;
  background: #f7f1f8;
  border-radius: 6px;
  font-size: 0.59rem;
  font-weight: 650;
}

.planner-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 17px;
  margin-top: auto;
  border-top: 1px solid var(--line);
}

.planner-card__footer > span {
  color: #8b818f;
  font-size: 0.61rem;
}

.planner-card__footer a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  color: var(--white);
  background: var(--plum-800);
  border-radius: 99px;
  font-size: 0.66rem;
  font-weight: 750;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.planner-card__footer a b {
  margin-left: 6px;
  font-size: 0.86rem;
  font-weight: 500;
  transition: transform 0.2s ease;
}

.planner-card__footer a:hover {
  background: var(--orange-600);
  box-shadow: 0 8px 18px rgba(236, 100, 28, 0.23);
  transform: translateY(-1px);
}

.planner-card__footer a:hover b {
  transform: translateX(3px);
}

.planner-empty {
  padding: 70px 20px;
  color: var(--ink-soft);
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px dashed rgba(79, 36, 134, 0.2);
  border-radius: var(--radius-md);
}

.planner-empty > span {
  color: var(--orange-500);
  font-size: 1.8rem;
}

.planner-empty h3 {
  margin: 6px 0 3px;
  color: var(--plum-900);
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.planner-empty p {
  margin-bottom: 14px;
  font-size: 0.8rem;
}

.planner-empty button {
  padding: 8px 16px;
  color: var(--plum-800);
  background: transparent;
  border: 1px solid rgba(79, 36, 134, 0.25);
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 750;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s var(--ease);
}

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

@media (max-width: 1080px) {
  .planner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .finder {
    grid-template-columns: 1fr 1fr 1fr auto;
  }

  .finder__heading {
    display: none;
  }

  .finder__field:first-of-type {
    border-left: 0;
  }

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

  .contact__shell {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .contact__intro,
  .contact-form {
    padding: 48px 38px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 74px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .section {
    padding: 88px 0;
  }

  .brand {
    width: 150px;
    height: 57px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .primary-nav {
    position: fixed;
    z-index: -1;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 22px 24px;
    margin: 0;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(35, 16, 61, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .primary-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    padding: 14px 4px;
    border-bottom: 1px solid #f0eaf0;
  }

  .nav-link::after {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .hero__content {
    padding: 80px 0 142px;
  }

  .hero__media img {
    object-position: 59% center;
  }

  .hero__overlay {
    background: linear-gradient(90deg, rgba(20, 7, 44, 0.96), rgba(28, 8, 56, 0.72) 68%, rgba(19, 7, 34, 0.5));
  }

  .hero__scroll {
    display: none;
  }

  .finder {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 0;
    padding: 16px;
  }

  .finder__field {
    min-height: 56px;
  }

  .finder__field--date {
    border-left: 0;
  }

  .finder__submit {
    min-height: 52px;
    margin-left: 12px;
  }

  .services {
    padding-top: 142px;
  }

  .section-heading--split {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .section-heading--split > p {
    max-width: 570px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 255px;
  }

  .service-card,
  .service-card:nth-child(3),
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: span 1;
  }

  .service-card--featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  .service-card--featured .service-card__body {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .service-card--featured .service-card__number {
    position: static;
  }

  .service-card--featured .service-card__title {
    font-size: 2.1rem;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .about__visual {
    width: min(100%, 610px);
    margin: 0 auto;
  }

  .about__content {
    max-width: 680px;
  }

  .story-track {
    grid-template-columns: repeat(3, minmax(340px, 50vw));
  }

  .process-grid li {
    padding-inline: 25px;
  }

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

  .contact__intro {
    padding-bottom: 50px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 74px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .about__content h2,
  .contact__intro h2 {
    font-size: clamp(2.3rem, 11vw, 3.2rem);
  }

  .hero {
    min-height: 670px;
  }

  .hero__content {
    padding-top: 68px;
    padding-bottom: 190px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 15vw, 4.6rem);
  }

  .hero__intro {
    font-size: 0.96rem;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero__proof {
    margin-top: 34px;
  }

  .quick-find {
    height: auto;
    padding: 0 0 4px;
    background: var(--cream);
  }

  .finder {
    grid-template-columns: 1fr 1fr;
    min-height: 0;
    margin-top: -82px;
    transform: none;
  }

  .finder__field {
    padding: 0 12px;
  }

  .finder__field:nth-of-type(2) {
    border-left: 1px solid var(--line);
  }

  .finder__field--date {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }

  .finder__submit {
    grid-column: 1 / -1;
    margin: 4px 0 0;
  }

  .services {
    padding-top: 75px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 235px;
  }

  .service-card,
  .service-card--featured,
  .service-card:nth-child(3),
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: 1;
    grid-row: span 1;
  }

  .service-card__body,
  .service-card--featured .service-card__body {
    grid-template-columns: auto 1fr auto;
  }

  .service-card--featured .service-card__title {
    font-size: 1.65rem;
  }

  .service-card--featured .service-card__number {
    position: static;
  }

  .about__grid {
    gap: 50px;
  }

  .about__visual {
    min-height: 485px;
  }

  .about__image--main {
    left: 0;
    width: 78%;
    height: 415px;
  }

  .about__image--small {
    width: 52%;
    height: 245px;
  }

  .about__badge {
    bottom: 15px;
    min-width: 205px;
    padding: 14px 17px;
  }

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

  .planner-toolbar {
    align-items: stretch;
    padding: 16px;
    flex-direction: column;
    gap: 11px;
  }

  .planner-search {
    width: 100%;
  }

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

  .planner-card__cover {
    height: 205px;
  }

  .filter-bar {
    justify-content: flex-start;
    width: 100%;
    padding-bottom: 8px;
    overflow-x: auto;
    border-radius: 12px;
    scrollbar-width: none;
  }

  .filter-bar::-webkit-scrollbar {
    display: none;
  }

  .story-track {
    grid-template-columns: repeat(3, minmax(83vw, 1fr));
  }

  .story-card__image {
    height: 230px;
  }

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

  .process-grid li {
    padding: 0 14px 44px;
  }

  .process-grid li + li {
    border-top: 1px dashed rgba(79, 36, 134, 0.22);
    border-left: 0;
    padding-top: 45px;
  }

  .process-grid li:last-child {
    padding-bottom: 0;
  }

  .process-grid li + li .process__number {
    top: 16px;
  }

  .contact {
    padding-top: 18px;
    padding-bottom: 74px;
  }

  .contact__shell {
    width: min(calc(100% - 20px), var(--container));
    border-radius: 22px;
  }

  .contact__intro,
  .contact-form {
    padding: 40px 24px;
  }

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

  .footer__links {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer__links > div:last-child {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
  }

  .modal__header {
    grid-template-columns: 74px 1fr;
    padding: 28px 22px;
  }

  .modal__header > img {
    width: 74px;
    height: 74px;
  }

  .modal__header h2 {
    padding-right: 25px;
    font-size: 1.45rem;
  }

  .modal__body {
    padding: 25px 22px 22px;
  }

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

  .modal__body ul {
    grid-template-columns: 1fr;
  }

  .modal__footer {
    align-items: stretch;
    flex-direction: column;
    padding: 18px 22px 22px;
  }

  .toast {
    right: 16px;
    bottom: 16px;
    left: 16px;
    max-width: none;
  }
}

@media (max-width: 420px) {
  .brand {
    width: 138px;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

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

  .finder__field,
  .finder__field:nth-of-type(2) {
    grid-column: 1;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .provider-card {
    padding: 20px;
  }

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

  .button--card {
    width: 100%;
  }

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

  .footer__links > div:last-child {
    grid-column: auto;
  }

  .footer__bottom p:last-child {
    flex-wrap: wrap;
    gap: 10px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
