@charset "UTF-8";
@font-face {
  font-family: "Teodor Trial";
  src: url("../fonts/TeodorTRIAL-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Teodor Trial";
  src: url("../fonts/TeodorTRIAL-RegularItalic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Teodor Trial";
  src: url("../fonts/TeodorTRIAL-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Teodor Trial";
  src: url("../fonts/TeodorTRIAL-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Teodor Trial";
  src: url("../fonts/TeodorTRIAL-BoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Teodor Fallback";
  src: local("Georgia"), local("Times New Roman");
  size-adjust: 98%;
  ascent-override: 93%;
  descent-override: 25%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "DM Sans Fallback";
  src: local("Arial"), local("Helvetica Neue"), local("Helvetica");
  size-adjust: 105.4%;
  ascent-override: 94.1%;
  descent-override: 29.6%;
  line-gap-override: 0%;
}
:root {
  --lavender: #CC97E5;
  --copper: #E0985A;
  --teal: #5FCDD7;
  --coral: #F05948;
  --plum-deep: #300D33;
  --warm-brown: #3D2B1E;
  --purple-mid: #874faf;
  --cream-light: #FAEBDC;
  --cream-dark: #F3DFCB;
  --white: #FFFFFF;
  --neutral-lightest: #FAF7F3;
  --neutral-lighter: #EDE8E0;
  --neutral-light: #D4CDC3;
  --neutral: #9B9389;
  --neutral-dark: #6B635B;
  --neutral-darker: #4A4340;
  --neutral-darkest: #1E1A17;
  --bg-primary: var(--cream-light);
  --bg-secondary: var(--cream-dark);
  --bg-tertiary: var(--white);
  --text-primary: var(--plum-deep);
  --text-secondary: var(--neutral-dark);
  --text-tertiary: var(--neutral);
  --text-alternate: var(--white);
  --text-muted: #5a3d5c;
  --border-primary: var(--neutral-lighter);
  --border-secondary: var(--neutral-light);
  --link-primary: var(--coral);
  --link-hover: #D94839;
  --eyebrow-color: var(--coral);
  --font-display: 'Teodor Trial', 'Teodor Fallback', Georgia, serif;
  --font-body: 'DM Sans', 'DM Sans Fallback', system-ui, sans-serif;
  --nav-height: 72px;
  --max-width: 1320px;
  --padding-global: 64px;
  --padding-section-large: 112px;
  --padding-section-medium: 80px;
  --padding-section-small: 48px;
  --radius-small: 4px;
  --radius-medium: 8px;
  --radius-large: 16px;
  --radius-xlarge: 24px;
  --radius-full: 100px;
  --shadow-small: 0 1px 2px rgba(48,13,51,0.05);
  --shadow-medium: 0 4px 12px rgba(48,13,51,0.08);
  --shadow-large: 0 8px 24px rgba(48,13,51,0.10);
  --shadow-hover: 0 12px 32px rgba(48,13,51,0.14);
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
  --easing: cubic-bezier(0.16, 1, 0.3, 1);
}

.section-light {
  --bg-primary: var(--cream-light);
  background-color: var(--bg-primary);
}

.section-dark {
  --bg-primary: #4e0c58;
  --text-primary: var(--cream-light);
  --text-secondary: rgba(255, 255, 255, 0.6);
  --text-tertiary: var(--neutral-light);
  --border-primary: #4A2358;
  --eyebrow-color: var(--copper);
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

.section-dark-warm {
  --bg-primary: var(--warm-brown);
  --text-primary: var(--cream-light);
  --text-secondary: rgba(255, 255, 255, 0.6);
  --eyebrow-color: var(--copper);
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

.section-medium {
  --bg-primary: var(--cream-dark);
  background-color: var(--bg-primary);
}

@media (max-width: 1024px) {
  :root {
    --padding-global: 40px;
    --padding-section-large: 80px;
  }
}
@media (max-width: 768px) {
  :root {
    --padding-global: 20px;
    --padding-section-large: 64px;
  }
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.6;
}

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

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

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text-primary);
}

h1 em, h2 em, h3 em {
  font-style: italic;
  font-family: var(--font-display);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-global);
  width: 100%;
}

.section-padding {
  padding-top: var(--padding-section-large);
  padding-bottom: var(--padding-section-large);
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--eyebrow-color);
  line-height: 1.5;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 8px 16px;
  background: #4e0c58;
  color: var(--white);
  border-radius: var(--radius-medium);
  font-size: 14px;
}
.skip-link:focus {
  top: 16px;
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

.navbar {
  position: fixed;
  top: 13px;
  left: 40px;
  right: 40px;
  z-index: 1000;
  height: var(--nav-height);
  border-radius: var(--radius-full);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(250, 235, 220, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease, box-shadow 0.3s ease, border-color 0.4s ease;
}
.navbar.scrolled {
  background: rgba(78, 12, 88, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px 0 rgba(48, 13, 51, 0.1);
  border-color: rgba(250, 235, 220, 0.05);
}
.navbar.nav-hidden {
  transform: translateY(calc(-100% - 20px));
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar__logo svg {
  height: 36px;
  width: auto;
  display: block;
}

.navbar__logo-mark {
  width: 36px;
  height: 36px;
  display: block;
}

.navbar__logo-type {
  height: 20px;
  width: auto;
  display: block;
}

.navbar__logo--light {
  display: none;
  height: 36px;
  width: auto;
}

.navbar__links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.navbar__links a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  transition: opacity var(--duration-fast);
}
.navbar__links a:hover {
  opacity: 0.75;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
  padding: 0;
  transition: opacity var(--duration-fast);
}
.nav-dropdown__trigger:hover {
  opacity: 0.75;
}
.nav-dropdown__trigger svg {
  width: 12px;
  height: 12px;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-dropdown.open .nav-dropdown__trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: fixed;
  width: 116px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(250, 235, 220, 0.1);
  border-radius: 14px;
  padding: 24px 30px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1), transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.nav-dropdown__menu.scrolled {
  background: rgba(78, 12, 88, 0.85);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: rgba(250, 235, 220, 0.05);
  box-shadow: 0 8px 24px 0 rgba(48, 13, 51, 0.1);
}
.nav-dropdown__menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown__menu a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
  transition: opacity 0.15s ease;
}
.nav-dropdown__menu a:hover {
  opacity: 0.75;
}

.navbar__actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.navbar__actions .btn-ghost {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  padding: 8px 16px;
  border: none;
  background: none;
  transition: opacity var(--duration-fast);
}
.navbar__actions .btn-ghost:hover {
  opacity: 0.75;
}
.navbar__actions .btn {
  border-radius: var(--radius-full);
}

.navbar__mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  line-height: 0;
}
.navbar__mobile-toggle[aria-expanded=true] {
  opacity: 0;
  pointer-events: none;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: #4e0c58;
  display: flex;
  flex-direction: column;
  padding: 24px 32px 48px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}
.mobile-menu::before {
  content: "";
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(135, 79, 175, 0.15) 0%, transparent 65%);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
}
@media (max-width: 768px) {
  .mobile-menu {
    padding: 18px 20px 40px;
  }
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  position: relative;
  z-index: 1;
}

.mobile-menu__logo img {
  height: 32px;
  width: auto;
  display: block;
}

.mobile-menu__close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: 4px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.mobile-menu__close-btn:hover {
  opacity: 1;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 52px);
  color: rgba(250, 235, 220, 0.65);
  line-height: 1.1;
  padding: 14px 0;
  border-bottom: 1px solid rgba(250, 235, 220, 0.08);
  transition: color 0.2s;
}
.mobile-menu__link:first-child {
  border-top: 1px solid rgba(250, 235, 220, 0.08);
}
.mobile-menu__link:hover, .mobile-menu__link.active {
  color: var(--cream-light);
}

.mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 40px;
  position: relative;
  z-index: 1;
}
.mobile-menu__actions .btn {
  justify-content: center;
  border-radius: var(--radius-full);
}

[data-nav=secondary] .navbar:not(.scrolled) {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

[data-nav=secondary] .navbar:not(.scrolled) .navbar__links a {
  color: var(--plum-deep);
}

[data-nav=secondary] .navbar:not(.scrolled) .nav-dropdown__trigger {
  color: var(--plum-deep);
}

[data-nav=secondary] .navbar:not(.scrolled) .navbar__actions .btn-ghost {
  color: var(--plum-deep);
}

[data-nav=secondary] .navbar:not(.scrolled) .navbar__mobile-toggle {
  color: var(--plum-deep);
}

[data-nav=secondary] .navbar:not(.scrolled) .navbar__logo svg {
  display: none;
}

[data-nav=secondary] .navbar:not(.scrolled) .navbar__logo-mark {
  display: none;
}

[data-nav=secondary] .navbar:not(.scrolled) .navbar__logo-type {
  display: none;
}

[data-nav=secondary] .navbar:not(.scrolled) .navbar__logo--light {
  display: block;
}

[data-nav=secondary] .nav-dropdown__menu:not(.scrolled) {
  background: #fff6ed;
  border-color: rgba(48, 13, 51, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 8px 24px rgba(48, 13, 51, 0.08);
}

[data-nav=secondary] .nav-dropdown__menu:not(.scrolled) a {
  color: var(--plum-deep);
}

@media (max-width: 1024px) {
  .navbar__links {
    display: none;
  }
  .navbar__actions .btn-ghost {
    display: none;
  }
  .navbar__actions .btn {
    display: none;
  }
  .navbar__mobile-toggle {
    display: flex;
  }
}
@media (max-width: 768px) {
  .navbar {
    left: 16px;
    right: 16px;
    top: 8px;
    padding: 0 20px;
  }
}
.footer {
  background: var(--bg-primary);
  padding-top: 64px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
  gap: 48px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__col p, .footer__col a:not(.btn) {
  font-size: 16px;
  color: var(--plum-deep);
  line-height: 1.5;
}
.footer__col a:not(.btn):hover {
  color: var(--coral);
}

.footer__col--brand {
  gap: 16px;
  min-width: 180px;
}
.footer__col--brand .footer__address {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer__nav {
  display: flex;
  gap: 48px;
  flex-shrink: 0;
}

.footer__col--nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 120px;
}
.footer__col--nav p {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
}
.footer__col--nav a {
  font-size: 16px;
  color: var(--plum-deep);
  line-height: 1.5;
  transition: color var(--duration-fast);
}
.footer__col--nav a:hover {
  color: var(--coral);
}

.footer__col--cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  flex-shrink: 0;
}
.footer__col--cta .btn-primary {
  color: var(--white);
}
.footer__col--cta .btn-gradient-stroke {
  color: var(--plum-deep);
}
.footer__col--cta .btn-gradient-stroke:hover {
  color: var(--white);
}

.footer__cta-btn {
  position: relative;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 500;
  width: 160px;
  justify-content: center;
}
.footer__cta-btn:hover {
  z-index: 1;
}

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

.footer__social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum-deep);
  transition: color var(--duration-fast);
}
.footer__social a:hover {
  color: var(--coral);
}
.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer__jc-cert {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.footer__jc-cert:hover .footer__jc-cert-label {
  color: var(--coral);
}

.footer__jc-logo {
  width: 44px;
  height: 44px;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__jc-cert-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--plum-deep);
  line-height: 1.3;
  transition: color var(--duration-fast);
}

.footer__bottom {
  position: relative;
  z-index: 1;
  padding-top: 4px;
}

.footer__watermark {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  text-align: center;
  font-family: var(--font-display);
  font-weight: 400;
  color: rgba(48, 13, 51, 0.06);
  line-height: 1.1;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1) 0.2s, transform 1s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
}
.footer__watermark.watermark-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .footer__watermark {
    transition: none;
  }
}
.footer__copyright {
  font-size: 14px;
  color: rgba(48, 13, 51, 0.4);
  text-align: center;
  padding: 12px 0 28px;
}

@media (max-width: 768px) {
  .footer__top {
    flex-direction: column;
    gap: 32px;
  }
  .footer__col--cta {
    align-items: flex-start;
  }
  .footer__cta-btn {
    width: auto;
    min-width: 160px;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
.header {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #4e0c58;
}

.header__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.header__bg img {
  width: 100%;
  height: 115%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  will-change: transform;
  transform-origin: center top;
}
.header__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(48, 13, 51, 0.55) 0%, rgba(48, 13, 51, 0) 28%, rgba(48, 13, 51, 0.6) 100%);
}

.header__content {
  position: relative;
  z-index: 1;
  padding: 0 var(--padding-global) 80px;
  width: 100%;
}

@keyframes hero-slide-up {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .header__headline,
  .header__subhead,
  .header__cta {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
.header__eyebrow {
  margin-bottom: 16px;
}

.header__headline {
  font-size: clamp(56px, 7vw, 100px);
  line-height: 1;
  color: var(--white);
  margin-bottom: 24px;
  animation: hero-slide-up 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.1s both;
}

.header__subhead {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.3;
  margin-bottom: 40px;
  max-width: 600px;
  animation: hero-slide-up 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.3s both;
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  animation: hero-slide-up 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.55s both;
}

.header__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  transition: color var(--duration-fast);
}
.header__back:hover {
  color: var(--white);
}

.header--compact {
  min-height: 400px;
}

.page-hero {
  background: var(--plum-deep);
  padding: 120px 0 48px;
  text-align: center;
}
.page-hero__title {
  font-size: clamp(34px, 4vw, 52px);
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .header {
    min-height: 100dvh;
  }
  .header__content {
    padding-top: 100px;
  }
  .header__bg img {
    -o-object-position: right top;
       object-position: right top;
  }
  .header__headline {
    font-size: clamp(40px, 10vw, 56px);
  }
  .header__subhead {
    font-size: 18px;
  }
  .header__cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 550;
  font-size: 13.6px;
  padding: 14px 28px;
  border-radius: 12px;
  transition: all var(--duration-normal) var(--easing);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  border: 1px solid var(--coral);
}
.btn-primary:hover {
  background: #D94839;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-light {
  background: var(--coral);
  color: var(--cream-light);
  border: 1px solid var(--coral);
}
.btn-light:hover {
  background: #D94839;
  border-color: #D94839;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-ghost {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  padding: 8px 16px;
  border: none;
  background: none;
  transition: opacity var(--duration-fast);
}
.btn-ghost:hover {
  opacity: 0.75;
}

.btn-gradient-stroke {
  position: relative;
  background: transparent;
  color: var(--plum-deep);
  border: none;
  border-radius: 12px;
  z-index: 0;
}
.btn-gradient-stroke::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(135deg, #E0985A 1%, #F05948 35%, #CC97E5 66%, #874FAF 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.btn-gradient-stroke:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn-gradient-stroke:hover::before {
  opacity: 0;
}

.btn-copper-stroke {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: transparent;
  color: var(--plum-deep);
  border: 1px solid var(--copper);
  font-family: var(--font-body);
  font-weight: 550;
  font-size: 16px;
  padding: 16px 48px;
  border-radius: 12px;
  transition: all var(--duration-normal) var(--easing);
  cursor: pointer;
}
.btn-copper-stroke:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.feature-card {
  --card-bg: linear-gradient(147deg, rgb(253,240,232) 6%, rgb(252,226,212) 41%, rgba(240,89,72,0.08) 94%);
  --card-border: rgba(240,89,72,0.1);
  --icon-bg: rgba(240,89,72,0.15);
  --icon-color: var(--coral);
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 41px 37px;
  border-radius: var(--radius-xlarge);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
}
.feature-card--coral {
  --card-bg: linear-gradient(147deg, rgb(253,240,232) 6%, rgb(252,226,212) 41%, rgba(240,89,72,0.08) 94%);
  --card-border: rgba(240,89,72,0.1);
  --icon-bg: rgba(240,89,72,0.15);
  --icon-color: var(--coral);
}
.feature-card--lavender {
  --card-bg: linear-gradient(147deg, rgb(243,234,248) 6%, rgb(234,216,245) 41%, rgba(135,79,175,0.08) 94%);
  --card-border: rgba(204,151,229,0.1);
  --icon-bg: rgba(204,151,229,0.15);
  --icon-color: var(--purple-mid);
}
.feature-card--copper {
  --card-bg: linear-gradient(147deg, rgb(252,237,223) 6%, rgb(244,221,201) 41%, rgba(224,152,90,0.08) 94%);
  --card-border: rgba(224,152,90,0.1);
  --icon-bg: rgba(224,152,90,0.15);
  --icon-color: var(--copper);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-large);
  flex-shrink: 0;
  background: var(--icon-bg);
  color: var(--icon-color);
}
.feature-card__icon svg {
  width: 26px;
  height: 26px;
}

.feature-card__title {
  font-size: 22px;
  color: var(--plum-deep);
  line-height: 1.2;
}

.feature-card__body {
  font-size: 18px;
  color: var(--neutral-dark);
  line-height: 1.4;
}

.feature-card--horizontal {
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  padding: 36px 32px;
  height: auto;
}

.card-professions__item {
  border-radius: var(--radius-xlarge);
  overflow: hidden;
  position: relative;
  height: 460px;
  cursor: pointer;
}
.card-professions__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (hover: hover) {
  .card-professions__item:hover img {
    transform: scale(1.05);
  }
}
.card-professions__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(48, 13, 51, 0) 50%, rgba(48, 13, 51, 0.4) 100%);
}

.card-professions__item-content {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-professions__item-tag {
  display: none !important;
}

.card-professions__item-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 26px;
  color: var(--white);
}

.card-professions__item-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.profession-card {
  border-radius: var(--radius-xlarge);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(48, 13, 51, 0.08);
  background: var(--white);
  transition: transform var(--duration-normal) var(--easing), box-shadow var(--duration-normal) var(--easing);
}
.profession-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.profession-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(240, 89, 72, 0.1);
}
.profession-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--coral);
}

.profession-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--plum-deep);
  line-height: 1.2;
}

.profession-card__desc {
  font-size: 15px;
  color: var(--neutral-dark);
  line-height: 1.5;
}

.bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.bento__image {
  position: relative;
  border-radius: var(--radius-xlarge);
  overflow: hidden;
  min-height: 533px;
}
.bento__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.bento__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(48, 13, 51, 0) 40%, rgba(48, 13, 51, 0.6) 100%);
  pointer-events: none;
}

.bento__stats {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-large);
  display: flex;
  overflow: hidden;
  z-index: 1;
}

.bento__stat {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.bento__stat + .bento__stat {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.bento__stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--white);
  line-height: 1;
}

.bento__stat-label {
  font-size: 12px;
  font-weight: 550;
  color: rgba(250, 235, 220, 0.75);
  text-align: center;
}

.bento__stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bento__full {
  grid-column: 1/-1;
}

.bento__full .feature-card {
  height: auto;
}

.bento .feature-card {
  border-radius: var(--radius-xlarge);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-small);
  height: 100%;
}

.bento .feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}
.bento .feature-card__icon svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 1024px) {
  .bento {
    grid-template-columns: 1fr;
  }
  .bento__image {
    min-height: 360px;
  }
  .feature-card--horizontal {
    flex-direction: column;
  }
  .card-professions__item {
    height: 340px;
  }
}
@media (max-width: 768px) {
  .bento__image {
    min-height: 300px;
  }
  .bento__stats {
    flex-direction: column;
    gap: 0;
  }
  .bento__stat + .bento__stat {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
  .card-professions__item {
    height: 260px;
  }
}
.form-card {
  background: var(--white);
  border-radius: 24px;
  padding: 53px 49px 1px;
  box-shadow: 0 2px 32px rgba(48, 13, 51, 0.06);
  border: 1px solid rgba(48, 13, 51, 0.08);
}

.form-section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.5vw, 38px);
  line-height: 1.15;
  font-weight: 400;
  color: var(--plum-deep);
  margin-bottom: 19px;
}

.form-section-subtitle {
  font-size: 16px;
  color: var(--neutral-dark);
  line-height: 1.5;
  margin-bottom: 28px;
}

.form-section-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--plum-deep);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.form-section-label__note {
  font-weight: 400;
  color: rgba(48, 13, 51, 0.4);
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 19px;
}
.form-group--region {
  margin-top: 24px;
}
.form-group--shift {
  margin-bottom: 12px;
}
.form-group--shift .radio-group {
  margin-top: 8px;
}

.form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--plum-deep);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.form-label span {
  color: var(--coral);
}
.form-label__optional {
  font-weight: 400;
  color: rgba(48, 13, 51, 0.4);
  font-size: 12px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--cream-light);
  border: 1.5px solid rgba(48, 13, 51, 0.15);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--plum-deep);
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.form-input::-moz-placeholder, .form-select::-moz-placeholder, .form-textarea::-moz-placeholder {
  color: rgba(48, 13, 51, 0.35);
}
.form-input::placeholder,
.form-select::placeholder,
.form-textarea::placeholder {
  color: rgba(48, 13, 51, 0.35);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(48, 13, 51, 0.4);
}

.form-select {
  color: rgba(48, 13, 51, 0.35);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23300D33' stroke-opacity='0.4' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-select option {
  color: var(--plum-deep);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.form-divider {
  height: 1px;
  background: rgba(48, 13, 51, 0.08);
  margin: 8px 0 24px;
}

.form-submit {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  padding-bottom: 40px;
}
.form-submit .btn {
  width: 100%;
  justify-content: center;
  border-radius: 12px;
  padding: 18px 33px;
  font-size: 16px;
}

.form-submit-note {
  font-size: 12px;
  color: rgba(48, 13, 51, 0.45);
  text-align: center;
  line-height: 1.5;
}

.form-group--stafftype {
  margin-bottom: 24px;
}

.form-label__required {
  color: var(--coral);
  font-weight: inherit;
}

.checkbox-group-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(48, 13, 51, 0.4);
  margin: 0 0 10px;
}
.checkbox-group-title--spaced {
  margin-top: 16px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.checkbox-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--plum-deep);
  line-height: 1.4;
}
.checkbox-option input[type=checkbox] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1px solid rgba(48, 13, 51, 0.2);
  border-radius: 3px;
  accent-color: var(--plum-deep);
  cursor: pointer;
}

.radio-group {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--plum-deep);
}
.radio-option input[type=radio] {
  width: 17px;
  height: 17px;
  border: 1px solid rgba(48, 13, 51, 0.2);
  accent-color: var(--plum-deep);
  cursor: pointer;
}

.file-upload {
  position: relative;
}
.file-upload input[type=file] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
.file-upload__ui {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream-light);
  border: 1.5px solid rgba(48, 13, 51, 0.2);
  border-radius: 10px;
  padding: 10px 16px;
}
.file-upload__icon {
  width: 20px;
  height: 20px;
  color: rgba(48, 13, 51, 0.5);
  flex-shrink: 0;
}
.file-upload__text {
  font-size: 14px;
  color: rgba(48, 13, 51, 0.5);
  line-height: 1.6;
}
.file-upload__text strong {
  color: var(--coral);
  font-weight: 600;
}

.is-valid {
  border-color: #28a745 !important;
}

.is-invalid {
  border-color: #dc3545 !important;
}

.invalid-feedback {
  font-size: 13px;
  color: #dc3545;
  margin-top: 4px;
}

.userform .field {
  margin-bottom: 19px;
}
.userform label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--plum-deep);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.userform input[type=text],
.userform input[type=email],
.userform input[type=tel],
.userform input[type=url],
.userform input[type=number],
.userform input[type=date],
.userform select,
.userform textarea {
  width: 100%;
  background: var(--cream-light);
  border: 1.5px solid rgba(48, 13, 51, 0.15);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--plum-deep);
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.userform input[type=text]::-moz-placeholder, .userform input[type=email]::-moz-placeholder, .userform input[type=tel]::-moz-placeholder, .userform input[type=url]::-moz-placeholder, .userform input[type=number]::-moz-placeholder, .userform input[type=date]::-moz-placeholder, .userform select::-moz-placeholder, .userform textarea::-moz-placeholder {
  color: rgba(48, 13, 51, 0.35);
}
.userform input[type=text]::placeholder,
.userform input[type=email]::placeholder,
.userform input[type=tel]::placeholder,
.userform input[type=url]::placeholder,
.userform input[type=number]::placeholder,
.userform input[type=date]::placeholder,
.userform select::placeholder,
.userform textarea::placeholder {
  color: rgba(48, 13, 51, 0.35);
}
.userform input[type=text]:focus,
.userform input[type=email]:focus,
.userform input[type=tel]:focus,
.userform input[type=url]:focus,
.userform input[type=number]:focus,
.userform input[type=date]:focus,
.userform select:focus,
.userform textarea:focus {
  border-color: rgba(48, 13, 51, 0.4);
}
.userform select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23300D33' stroke-opacity='0.4' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.userform textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}
.userform .btn-toolbar {
  margin-top: 24px;
  padding-bottom: 40px;
}
.userform .btn-toolbar .action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: var(--font-body);
  font-weight: 550;
  font-size: 16px;
  padding: 18px 33px;
  border-radius: 12px;
  background: var(--coral);
  color: var(--white);
  border: 1px solid var(--coral);
  cursor: pointer;
  transition: all var(--duration-normal) var(--easing);
}
.userform .btn-toolbar .action:hover {
  background: #D94839;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

@media (max-width: 768px) {
  .form-card {
    padding: 32px 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
  .radio-group {
    flex-direction: column;
    gap: 10px;
  }
}
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  color: rgba(250, 235, 220, 0.6);
  margin-bottom: 16px;
}
.breadcrumb a {
  color: rgba(250, 235, 220, 0.6);
  transition: color var(--duration-fast);
}
.breadcrumb a:hover {
  color: var(--white);
}
.breadcrumb .separator {
  margin: 0 4px;
}
.breadcrumb--back a::before {
  content: "← ";
}

.tab-bar {
  display: flex;
  gap: 8px;
  padding: 16px 0;
  position: sticky;
  top: 98px;
  z-index: 100;
  background: var(--bg-primary);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.tab-bar::-webkit-scrollbar {
  display: none;
}

.tab-bar__pill,
.tab-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--plum-deep);
  background: transparent;
  border: 1px solid var(--neutral-light);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--duration-normal) var(--easing);
}
.tab-bar__pill.active, .tab-bar__pill:hover,
.tab-bar__item.active,
.tab-bar__item:hover {
  background: var(--plum-deep);
  color: var(--cream-light);
  border-color: var(--plum-deep);
}

.tab-bar__count {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.6;
}

.toc-sidebar {
  position: sticky;
  top: 120px;
  background: var(--cream-light);
  border: 1px solid var(--plum-deep);
  border-radius: var(--radius-xlarge);
  padding: 28px 24px;
}
.toc-sidebar__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--plum-deep);
  margin-bottom: 16px;
}
.toc-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toc-sidebar__link {
  font-size: 15px;
  color: var(--neutral-dark);
  padding: 4px 0;
  border-left: 2px solid transparent;
  padding-left: 12px;
  transition: color var(--duration-fast), border-color var(--duration-fast);
}
.toc-sidebar__link:hover, .toc-sidebar__link.active {
  color: var(--coral);
  border-color: var(--coral);
}

.partner-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--plum-deep);
  background: transparent;
  border: 1px solid var(--neutral-light);
}

.stats-callout {
  background: #4e0c58;
}

.stats-callout__header {
  text-align: center;
  margin-bottom: 64px;
}
.stats-callout__header .eyebrow {
  color: var(--copper);
  margin-bottom: 16px;
}

.stats-callout__headline {
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.1;
  color: var(--white);
}

.stats-callout__inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 56px;
}

.stats-callout__stat {
  text-align: center;
}

.stats-callout__number {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}

.stats-callout__label {
  font-size: 16px;
  color: var(--white);
  margin-top: 8px;
  white-space: nowrap;
}

.stats-callout__divider {
  width: 1px;
  height: 62px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  margin-top: 3px;
}

@media (max-width: 1024px) {
  .stats-callout__inner {
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .stats-callout__inner {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .stats-callout__divider {
    display: none;
  }
  .stats-callout__number {
    font-size: 40px;
  }
  .stats-callout__label {
    white-space: normal;
  }
  .stats-callout__header {
    margin-bottom: 40px;
  }
}
.testimonials {
  background: #fff6ed;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 56px;
}
.testimonials__header .eyebrow {
  color: var(--coral);
  margin-bottom: 16px;
}

.testimonials__headline {
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.1;
  color: var(--plum-deep);
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-slider {
  overflow: hidden;
  border-radius: var(--radius-xlarge);
  margin-top: 24px;
}

.testimonial-slider__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 56px 64px;
  text-align: center;
  border-radius: var(--radius-xlarge);
  border: 1px solid transparent;
}
.testimonial-slide--lavender {
  background: linear-gradient(165deg, rgb(243, 234, 248) 1%, rgb(234, 216, 245) 35%, rgba(135, 79, 175, 0.08) 101%);
  border-color: rgba(204, 151, 229, 0.2);
}
.testimonial-slide--coral {
  background: linear-gradient(169deg, rgb(253, 240, 232) 6%, rgba(240, 89, 72, 0.3) 67%, rgba(240, 89, 72, 0.1) 93%);
  border-color: rgba(240, 89, 72, 0.12);
}
.testimonial-slide--copper {
  background: linear-gradient(171deg, rgb(252, 237, 223) 6%, rgb(244, 221, 201) 41%, rgba(224, 152, 90, 0.08) 94%);
  border-color: rgba(224, 152, 90, 0.15);
}

.testimonial-slide__quote {
  font-family: var(--font-body);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  color: var(--plum-deep);
  line-height: 1.4;
  margin-bottom: 20px;
}

.testimonial-slide__attribution {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: rgba(48, 13, 51, 0.5);
}

.testimonial-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.testimonial-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  border: none;
  background: rgba(48, 13, 51, 0.2);
  cursor: pointer;
  padding: 0;
  transition: background var(--duration-normal), width var(--duration-normal);
}
.testimonial-slider__dot.active {
  background: rgba(48, 13, 51, 0.6);
  width: 24px;
}

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

.testimonial-card {
  border-radius: var(--radius-xlarge);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  min-height: 480px;
  box-shadow: 0 2px 12px 0 rgba(48, 13, 51, 0.04);
}
.testimonial-card:nth-child(1) {
  background: linear-gradient(147deg, rgb(253, 240, 232) 6%, rgb(252, 226, 212) 41%, rgba(240, 89, 72, 0.08) 94%);
  border: 1px solid rgba(240, 89, 72, 0.1);
}
.testimonial-card:nth-child(3) {
  background: linear-gradient(147deg, rgb(243, 234, 248) 6%, rgb(234, 216, 245) 41%, rgba(135, 79, 175, 0.08) 94%);
  border: 1px solid rgba(204, 151, 229, 0.1);
}

.testimonial-card__marks {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--copper);
  line-height: 1;
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  line-height: 1.45;
  color: var(--plum-deep);
  flex: 1;
  margin-top: 8px;
}

.testimonial-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--plum-deep);
  margin-top: 8px;
}

.testimonial-card__role {
  font-size: 12px;
  color: var(--neutral-dark);
  margin-top: 2px;
}

.testimonial-image-card {
  position: relative;
  border-radius: var(--radius-xlarge);
  overflow: hidden;
  min-height: 480px;
}
.testimonial-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(48, 13, 51, 0) 40%, rgba(48, 13, 51, 0.7) 100%);
  pointer-events: none;
}
.testimonial-image-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.testimonial-image-card__info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-large);
  padding: 17px 21px;
  z-index: 1;
}

.testimonial-image-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.testimonial-image-card__role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
}

@media (max-width: 1024px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    min-height: auto;
  }
  .testimonial-image-card {
    min-height: 400px;
  }
  .testimonial-slide {
    padding: 40px 32px;
  }
}
@media (max-width: 768px) {
  .testimonials__header {
    margin-bottom: 32px;
  }
  .testimonial-card {
    padding: 32px 24px;
  }
  .testimonial-image-card {
    min-height: 320px;
  }
  .testimonial-slide {
    padding: 32px 20px;
  }
}
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.card-professions__marquee-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
}
.card-professions__marquee-wrap::before, .card-professions__marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.card-professions__marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--cream-light) 30%, transparent);
}
.card-professions__marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--cream-light) 30%, transparent);
}

.card-professions__marquee {
  display: flex;
  gap: 12px;
  animation: marquee-scroll 30s linear infinite;
  width: -moz-max-content;
  width: max-content;
}
.card-professions__marquee:hover {
  animation-play-state: paused;
}

.card-professions__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--cream-dark);
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  color: var(--plum-deep);
  white-space: nowrap;
  transition: all var(--duration-normal) var(--easing);
}
.card-professions__pill svg {
  width: 18px;
  height: 18px;
  color: var(--coral);
  flex-shrink: 0;
  transition: color var(--duration-normal) var(--easing);
}
.card-professions__pill:hover {
  background: #4e0c58;
  color: var(--cream-light);
}
.card-professions__pill:hover svg {
  color: var(--cream-light);
}

.cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(163deg, #4e0c58 0%, #5a1f5e 100%);
}

.cta__rings-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}

.cta__ring {
  position: absolute;
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.28;
  will-change: transform;
  transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cta__headline {
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: 1;
  color: var(--white);
  margin-bottom: 32px;
}

.cta__body {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

@media (max-width: 768px) {
  .cta__actions {
    flex-direction: column;
    align-items: center;
  }
}
.layout-clinical {
  background: var(--bg-primary);
  text-align: center;
}
.layout-clinical .eyebrow {
  margin-bottom: 24px;
}
.layout-clinical__headline {
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.1;
  color: var(--plum-deep);
  max-width: 920px;
  margin: 0 auto 24px;
}
.layout-clinical__body {
  font-size: 20px;
  color: var(--plum-deep);
  max-width: 680px;
  margin: 0 auto 48px;
  line-height: 1.3;
}
.layout-clinical__grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}
.layout-clinical__card {
  border-radius: var(--radius-xlarge);
  overflow: hidden;
  position: relative;
  height: 430px;
}
.layout-clinical__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s var(--easing);
  will-change: transform;
}
@media (hover: hover) {
  .layout-clinical__card:hover img {
    transform: scale(1.05);
  }
}
.layout-clinical__card--center {
  background: linear-gradient(147deg, #FDF0E8 0%, #FCE2D4 40%, rgba(240, 89, 72, 0.08) 100%);
  border: 1px solid rgba(240, 89, 72, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.layout-clinical__stat-number {
  font-family: var(--font-display);
  font-size: clamp(64px, 7vw, 100px);
  font-weight: 400;
  color: var(--plum-deep);
  line-height: 1;
  font-variant-numeric: proportional-nums;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.layout-clinical__stat-label {
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--plum-deep);
  margin-top: 8px;
}
.layout-clinical__checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
}
.layout-clinical__check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  color: var(--plum-deep);
}
.layout-clinical__check svg {
  width: 24px;
  height: 24px;
  color: var(--coral);
  flex-shrink: 0;
}

.metrics-bar {
  background: #4E0C58;
  padding: 90px var(--padding-global);
  text-align: center;
}
.metrics-bar__headline {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 56px;
}
.metrics-bar__stats {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 56px;
}
.metrics-bar__stat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  width: 160px;
  flex-shrink: 0;
}
.metrics-bar__stat-number {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1;
  color: var(--white);
  display: block;
  width: 100%;
  text-align: center;
}
.metrics-bar__stat-label {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
}
.metrics-bar__divider {
  width: 1px;
  height: clamp(40px, 5vw, 56px);
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  margin-top: 0;
}

.layout-story {
  background: var(--bg-primary);
}
.layout-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.layout-story__image {
  border-radius: var(--radius-xlarge);
  overflow: hidden;
  position: relative;
  height: 670px;
}
.layout-story__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.layout-story__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(48, 13, 51, 0) 60%, rgba(48, 13, 51, 0.2) 100%);
}
.layout-story__content {
  padding: 24px 0;
}
.layout-story .eyebrow {
  margin-bottom: 24px;
}
.layout-story__headline {
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.1;
  color: var(--plum-deep);
  margin-bottom: 32px;
}
.layout-story__body {
  font-size: 18px;
  color: var(--neutral-dark);
  line-height: 1.4;
  margin-bottom: 24px;
}
.layout-story__pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--neutral-dark);
  line-height: 1.4;
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--neutral-lighter);
}
.layout-story__founder {
  display: flex;
  align-items: center;
  gap: 16px;
}
.layout-story__founder-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.layout-story__founder-name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  color: var(--plum-deep);
}
.layout-story__founder-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  color: var(--text-secondary);
}

@media (max-width: 1024px) {
  .layout-clinical__grid {
    grid-template-columns: 1fr;
  }
  .layout-clinical__grid .layout-clinical__card {
    height: 300px;
  }
  .metrics-bar__stats {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .metrics-bar__divider {
    width: 80px;
    height: 1px;
  }
  .layout-story__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .layout-story__image {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .layout-clinical__checks {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .metrics-bar {
    padding: 60px var(--padding-global);
  }
}
.page-content {
  padding: 64px 0;
  background: var(--bg-primary);
}
.page-content h2 {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--plum-deep);
  margin: 48px 0 16px;
  line-height: 1.2;
}
.page-content h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--plum-deep);
  margin: 32px 0 12px;
}
.page-content p {
  font-size: 18px;
  color: var(--neutral-dark);
  line-height: 1.6;
  margin-bottom: 24px;
}
.page-content a {
  color: var(--coral);
  transition: color var(--duration-fast);
}
.page-content a:hover {
  color: var(--link-hover);
}
.page-content ul, .page-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
  list-style: disc;
}
.page-content ul li, .page-content ol li {
  font-size: 18px;
  color: var(--neutral-dark);
  line-height: 1.6;
  margin-bottom: 8px;
}
.page-content ol {
  list-style: decimal;
}
.page-content blockquote {
  border-left: 3px solid var(--coral);
  padding: 16px 24px;
  margin: 32px 0;
  font-style: italic;
  color: var(--plum-deep);
  font-size: 20px;
  line-height: 1.5;
}
.page-content img {
  border-radius: var(--radius-large);
  margin: 32px 0;
}
.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
}
.page-content table th, .page-content table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--neutral-lighter);
  text-align: left;
  font-size: 16px;
}
.page-content table th {
  font-weight: 600;
  color: var(--plum-deep);
}
.page-content table td {
  color: var(--neutral-dark);
}

.feature-why {
  position: relative;
  overflow: hidden;
}
.feature-why__header {
  text-align: center;
  margin-bottom: 64px;
}
.feature-why__header .eyebrow {
  color: var(--coral);
  margin-bottom: 20px;
}
.feature-why__headline {
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.1;
  color: var(--plum-deep);
  max-width: 900px;
  margin: 0 auto 20px;
  text-wrap: balance;
}
.feature-why__subhead {
  font-size: 18px;
  color: var(--neutral-dark);
  line-height: 1.4;
  max-width: 620px;
  margin: 0 auto;
  text-wrap: pretty;
}
.feature-why__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-why__content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.feature-why__stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 40px 64px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 48px;
}
.feature-why__stat {
  text-align: center;
  width: 200px;
  flex-shrink: 0;
}
.feature-why__stat-number {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(36px, 3.5vw, 50px);
  color: var(--white);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  display: block;
}
.feature-why__stat-label {
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--white);
  margin-top: 8px;
  display: block;
}
.feature-why__body {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--white);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}
.feature-why__body .accent {
  color: var(--coral);
}
.feature-why.section-dark {
  background: #4e0c58;
}
.feature-why.section-dark .eyebrow {
  color: var(--coral);
  margin-bottom: 24px;
}
.feature-why.section-dark .feature-why__headline {
  color: var(--white);
  max-width: 820px;
  margin: 0 auto 48px;
}

.card-professions {
  background: var(--cream-light);
}
.card-professions__headline {
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.1;
  color: var(--plum-deep);
  text-align: center;
  margin-bottom: 16px;
}
.card-professions__headline span {
  color: var(--plum-deep);
}
.card-professions__subhead {
  font-size: 18px;
  color: var(--neutral-dark);
  text-align: center;
  margin-bottom: 34px;
}
.card-professions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.card-professions__grid--2col {
  grid-template-columns: repeat(2, 1fr);
}
.card-professions__item {
  border-radius: var(--radius-xlarge);
  overflow: hidden;
  position: relative;
  height: 430px;
}
.card-professions__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (hover: hover) {
  .card-professions__item:hover img {
    transform: scale(1.05);
  }
}
.card-professions__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(48, 13, 51, 0) 40%, rgba(48, 13, 51, 0.45) 100%);
}
.card-professions__item--large {
  grid-column: 1/-1;
  height: 520px;
}
.card-professions__item--small {
  height: 340px;
}
.card-professions__item--nursing img {
  -o-object-position: center top;
     object-position: center top;
}
.card-professions__item--allied img {
  -o-object-position: center 15%;
     object-position: center 15%;
  transform: scale(1.55);
  transform-origin: center 15%;
}
@media (hover: hover) {
  .card-professions__item--small.card-professions__item--allied:hover img {
    transform: scale(1.62);
  }
}
.card-professions__item-content {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  z-index: 1;
}
.card-professions__item-tag {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  opacity: 0.8;
  margin-bottom: 8px;
  display: block;
}
.card-professions__item-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 30px;
  color: var(--white);
  margin-bottom: 8px;
}
.card-professions__item-desc {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--white);
  opacity: 0.9;
}

@media (max-width: 1024px) {
  .feature-why__cards {
    grid-template-columns: 1fr;
  }
  .feature-why__stats {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 32px;
  }
  .feature-why__stat {
    width: auto;
  }
  .card-professions__grid {
    grid-template-columns: 1fr;
  }
  .card-professions__item {
    height: 300px;
  }
  .card-professions__item--large {
    height: 360px;
  }
  .card-professions__item--small {
    height: 280px;
  }
}
@media (max-width: 768px) {
  .feature-why__header {
    margin-bottom: 40px;
  }
}
.category-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #faebdc;
  border-bottom: 1px solid rgba(48, 13, 51, 0.08);
  height: 79px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-nav__inner {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 16px;
}
.category-nav__inner::-webkit-scrollbar {
  display: none;
}
.category-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 29px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--plum-deep);
  border: 1px solid rgba(48, 13, 51, 0.15);
  border-radius: var(--radius-full);
  background: transparent;
  transition: all var(--duration-normal) var(--easing);
  white-space: nowrap;
  text-decoration: none;
}
.category-nav__link:hover {
  background: rgba(255, 246, 237, 0.7);
}
.category-nav__link.active {
  background: #fff6ed;
  border-color: rgba(48, 13, 51, 0.15);
}
.category-nav__count {
  font-size: 15px;
  font-weight: 600;
  color: var(--coral);
}

.spec-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 28px;
  background: var(--neutral-lightest);
  border-radius: var(--radius-large);
  border: 1px solid var(--neutral-lighter);
  transition: all var(--duration-normal) var(--easing);
  text-decoration: none;
  color: inherit;
}
.spec-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(240, 89, 72, 0.2);
}
.spec-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(240, 89, 72, 0.08);
  border-radius: var(--radius-medium);
  flex-shrink: 0;
  color: var(--coral);
}
.spec-card__icon svg {
  width: 24px;
  height: 24px;
}
.spec-card:hover .spec-card__icon {
  background: rgba(240, 89, 72, 0.14);
}
.spec-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--plum-deep);
  line-height: 1.2;
}
.spec-card__desc {
  font-size: 15px;
  color: rgba(48, 13, 51, 0.6);
  line-height: 1.6;
  flex: 1;
}
.spec-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--coral);
  margin-top: auto;
}
.spec-card__arrow svg {
  width: 16px;
  height: 16px;
}

.sono {
  background: var(--neutral-lightest);
}
.sono__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  align-items: start;
}
.sono__left {
  position: sticky;
  top: 103px;
}
.sono__headline {
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.1;
  color: var(--plum-deep);
  margin: 16px 0 20px;
}
.sono__subhead {
  font-size: 16px;
  color: rgba(48, 13, 51, 0.65);
  line-height: 1.65;
  margin-bottom: 32px;
}
.sono__image {
  border-radius: var(--radius-xlarge);
  overflow: hidden;
  margin-top: 32px;
}
.sono__image img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.sono__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.allied {
  background: #4e0c58;
}
.allied__inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.allied__header {
  max-width: 720px;
}
.allied__headline {
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.1;
  color: var(--cream-light);
  margin: 16px 0 20px;
}
.allied__subhead {
  font-size: 16px;
  color: rgba(250, 235, 220, 0.7);
  line-height: 1.65;
}
.allied__group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.allied__group-label {
  font-family: var(--font-body);
  font-weight: 550;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--copper);
}
.allied__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.allied__grid--2col {
  grid-template-columns: repeat(2, 1fr);
}
.allied .spec-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(250, 235, 220, 0.1);
}
.allied .spec-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(224, 152, 90, 0.3);
}
.allied .spec-card__icon {
  background: rgba(224, 152, 90, 0.12);
  color: var(--copper);
}
.allied .spec-card:hover .spec-card__icon {
  background: rgba(224, 152, 90, 0.2);
}
.allied .spec-card__name {
  color: var(--cream-light);
}
.allied .spec-card__desc {
  color: rgba(250, 235, 220, 0.65);
}

.nursing {
  background: var(--cream-light);
}
.nursing__header {
  max-width: 720px;
  margin-bottom: 56px;
}
.nursing__headline {
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.1;
  color: var(--plum-deep);
  margin: 16px 0 20px;
}
.nursing__subhead {
  font-size: 16px;
  color: rgba(48, 13, 51, 0.65);
  line-height: 1.65;
}
.nursing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.nursing .spec-card {
  background: transparent;
  border-color: rgba(48, 13, 51, 0.12);
}
.nursing .spec-card:hover {
  background: rgba(240, 89, 72, 0.05);
  border-color: rgba(240, 89, 72, 0.1);
  transform: translateY(-4px);
  box-shadow: none;
}

@media (max-width: 1024px) {
  .sono__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .sono__left {
    position: static;
  }
  .sono__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .allied__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .allied__grid--2col {
    grid-template-columns: 1fr 1fr;
  }
  .nursing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .category-nav {
    height: auto;
    padding: 12px 0;
  }
  .category-nav__inner {
    gap: 6px;
    padding: 0 12px;
  }
  .category-nav__link {
    padding: 8px 0;
    font-size: 14px;
    flex: 1;
    justify-content: center;
  }
  .sono__grid {
    grid-template-columns: 1fr;
  }
  .allied__inner {
    gap: 40px;
  }
  .allied__grid {
    grid-template-columns: 1fr;
  }
  .allied__grid--2col {
    grid-template-columns: 1fr;
  }
  .nursing__header {
    margin-bottom: 36px;
  }
  .nursing__grid {
    grid-template-columns: 1fr;
  }
  .spec-card {
    padding: 24px 20px;
  }
}
.manifesto {
  background: #4e0c58;
  padding: 120px var(--padding-global);
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: "";
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(135, 79, 175, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.manifesto__inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.manifesto__question {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(32px, 4.2vw, 64px);
  line-height: 1.1;
  color: var(--white);
  max-width: 810px;
  margin: 0 auto 28px;
}
.manifesto__question em {
  color: var(--lavender);
  font-style: italic;
}
.manifesto__answer {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(250, 235, 220, 0.7);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.promise {
  background: var(--cream-light);
  padding-top: var(--padding-section-large);
}
.promise__header {
  text-align: center;
  margin-bottom: 64px;
}
.promise__header .eyebrow {
  margin-bottom: 16px;
}
.promise__headline {
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.1;
  color: var(--plum-deep);
  max-width: 680px;
  margin: 0 auto;
}
.promise__stack {
  display: flex;
  flex-direction: column;
}

.promise-card {
  background: var(--cream-light);
  border-radius: 0;
  position: sticky;
  top: var(--nav-height);
  min-height: 115vh;
  display: flex;
  align-items: flex-start;
  padding: 80px 0 0;
}
.promise-card:nth-child(1) {
  z-index: 1;
}
.promise-card:nth-child(2) {
  z-index: 2;
}
.promise-card:nth-child(3) {
  z-index: 3;
  min-height: 108vh;
}
.promise-card--coral {
  --card-accent: var(--coral);
  --check-fill: rgba(240,89,72,0.1);
  --check-stroke: #F05948;
}
.promise-card--purple {
  --card-accent: #874FAF;
  --check-fill: rgba(135,79,175,0.1);
  --check-stroke: #874FAF;
}
.promise-card--copper {
  --card-accent: var(--copper);
  --check-fill: rgba(224,152,90,0.12);
  --check-stroke: #E0985A;
}
.promise-card__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-global);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  width: 100%;
}
.promise-card__content {
  display: flex;
  flex-direction: column;
}
.promise-card__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 550;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--card-accent);
  margin-bottom: 14px;
  line-height: 1.5;
}
.promise-card__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.5vw, 38px);
  color: var(--plum-deep);
  margin-bottom: 18px;
  line-height: 1.15;
}
.promise-card__title em {
  color: var(--card-accent);
}
.promise-card__body {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 32px;
  max-width: 420px;
}
.promise-card__checks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  padding: 0;
}
.promise-card__check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--plum-deep);
  font-weight: 450;
  line-height: 1.5;
}
.promise-card__check-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.promise-card__img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: var(--shadow-medium);
}

.story {
  background: #4e0c58;
  position: relative;
  overflow: clip;
}
.story::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(240, 89, 72, 0.08) 0%, transparent 65%);
  pointer-events: none;
}
.story::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(135, 79, 175, 0.12) 0%, transparent 65%);
  pointer-events: none;
}
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.story__left {
  position: sticky;
  top: 120px;
}
.story__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 36px;
}
.story__quote em {
  color: var(--copper);
}
.story__founder {
  display: flex;
  align-items: center;
  gap: 16px;
}
.story__founder-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid rgba(250, 235, 220, 0.2);
  flex-shrink: 0;
}
.story__founder-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
}
.story__founder-title {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(250, 235, 220, 0.6);
  margin-top: 2px;
}
.story__portrait {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  border-radius: var(--radius-xlarge);
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.story__body {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(250, 235, 220, 0.8);
  line-height: 1.4;
}
.story__body p + p {
  margin-top: 24px;
}
.story__body strong {
  color: var(--copper);
  font-weight: 600;
}
.story__rings {
  position: absolute;
  left: -850px;
  top: 780px;
  width: 1760px;
  height: 1020px;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.6s var(--easing) 0.15s, transform 1.6s var(--easing) 0.15s;
}
.story.rings-visible .story__rings {
  opacity: 0.28;
  transform: translateY(0);
}
.story__ring-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 1760px;
  height: 1020px;
  display: block;
  max-width: none;
}

.awards {
  background: #fff6ed;
}
.awards__header {
  text-align: center;
  margin-bottom: 56px;
}
.awards__header .eyebrow {
  margin-bottom: 16px;
}
.awards__headline {
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.1;
  margin-bottom: 16px;
}
.awards__subhead {
  font-size: 16px;
  color: var(--neutral-dark);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}
.awards__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: center;
}
.awards__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 24px;
  background: rgba(48, 13, 51, 0.04);
  border: 1px solid rgba(48, 13, 51, 0.2);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--plum-deep);
  white-space: nowrap;
}

.team {
  background: var(--cream-light);
}
.team__header {
  text-align: center;
  margin-bottom: 64px;
}
.team__header .eyebrow {
  margin-bottom: 16px;
}
.team__headline {
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.1;
  color: var(--plum-deep);
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border-radius: var(--radius-xlarge);
  border: 1px solid rgba(48, 13, 51, 0.15);
  overflow: hidden;
  box-shadow: var(--shadow-small);
  transition: transform var(--duration-normal) var(--easing), box-shadow var(--duration-normal) var(--easing);
}
@media (hover: hover) {
  .team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
  }
  .team-card:hover .team-card__body {
    background: #ffffff;
  }
}
.team-card__photo {
  width: 100%;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  display: block;
  flex-shrink: 0;
}
.team-card__body {
  padding: 24px 24px 28px;
  flex: 1;
  transition: background var(--duration-normal) var(--easing);
}
.team-card__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--plum-deep);
}
.team-card__role {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--neutral-dark);
  margin-top: 2px;
  margin-bottom: 16px;
}
.team-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--plum-deep);
  line-height: 1.5;
  opacity: 0.7;
}

.partners {
  background: var(--cream-dark);
}
.partners__inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.partners__inner .eyebrow {
  margin-bottom: 16px;
}
.partners__headline {
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.1;
  color: var(--plum-deep);
  margin-bottom: 12px;
}
.partners__subhead {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 56px;
  line-height: 1.6;
}
.partners__marquee-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  padding: 8px 0;
}
.partners__marquee-wrap::before, .partners__marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.partners__marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--cream-dark), transparent);
}
.partners__marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--cream-dark), transparent);
}
.partners__track {
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  animation: partners-scroll 30s linear infinite;
}
.partners__track:hover {
  animation-play-state: paused;
}
.partners__logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 48px;
  white-space: nowrap;
}
.partners__logo-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: rgba(48, 13, 51, 0.25);
}
.partners__logo-name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  color: rgba(48, 13, 51, 0.45);
  letter-spacing: 0.01em;
}
.partners__logo-sep {
  display: none;
}

@keyframes partners-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 1024px) {
  .promise-card {
    position: static;
    min-height: auto;
    display: block;
    padding: 64px 0;
  }
  .promise-card__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .promise-card__img {
    aspect-ratio: 16/9;
  }
  .story__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .story__left {
    position: static;
  }
  .story__portrait {
    max-width: 100%;
  }
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .manifesto {
    padding: 72px var(--padding-global);
  }
  .promise-card {
    padding: 48px 0;
  }
  .promise-card__body {
    font-size: 15px;
  }
  .team__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
.blog-hero {
  background: var(--cream-light);
  padding: 140px 0 48px;
}
.blog-hero__headline {
  font-size: clamp(48px, 5vw, 72px);
  color: var(--plum-deep);
  margin-bottom: 16px;
}
.blog-hero__headline em {
  font-style: italic;
}
.blog-hero__subhead {
  font-size: 18px;
  color: var(--neutral-dark);
  max-width: 600px;
  line-height: 1.5;
}

.featured__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--plum-deep);
  border-radius: var(--radius-xlarge);
  overflow: hidden;
}
.featured__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.featured__content {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.featured__tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(224, 152, 90, 0.2);
  color: var(--copper);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: -moz-fit-content;
  width: fit-content;
}
.featured__title {
  font-size: clamp(24px, 2.5vw, 32px);
  color: var(--cream-light);
  line-height: 1.2;
}
.featured__title a {
  color: inherit;
}
.featured__excerpt {
  font-size: 16px;
  color: rgba(250, 235, 220, 0.7);
  line-height: 1.5;
}
.featured__meta {
  font-size: 14px;
  color: rgba(250, 235, 220, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}

.posts {
  background: var(--cream-dark);
}
.posts__header {
  margin-bottom: 40px;
}
.posts__headline {
  font-size: clamp(28px, 3vw, 40px);
  color: var(--plum-deep);
}
.posts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.posts__empty {
  font-size: 18px;
  color: var(--neutral-dark);
  text-align: center;
  padding: 48px 0;
}

.post-card {
  border-radius: var(--radius-large);
  overflow: hidden;
  background: var(--cream-light);
  border: 1px solid rgba(48, 13, 51, 0.08);
  transition: transform var(--duration-normal) var(--easing), box-shadow var(--duration-normal) var(--easing);
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.post-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.post-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.post-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.post-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.post-card__tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(224, 152, 90, 0.15);
  color: var(--copper);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: -moz-fit-content;
  width: fit-content;
}
.post-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--plum-deep);
  line-height: 1.25;
}
.post-card__excerpt {
  font-size: 15px;
  color: var(--neutral-dark);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card__meta {
  font-size: 13px;
  color: var(--neutral);
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-header {
  background: var(--cream-pale, var(--cream-light));
  padding: 140px 0 48px;
}
.post-header__inner {
  max-width: 860px;
}
.post-header__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--neutral-dark);
  margin-bottom: 24px;
  transition: color var(--duration-fast);
}
.post-header__back svg {
  flex-shrink: 0;
}
.post-header__back:hover {
  color: var(--coral);
}
.post-header__tag {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(240, 89, 72, 0.1);
  color: var(--coral);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.post-header__title {
  font-size: clamp(32px, 4vw, 56px);
  color: var(--plum-deep);
  line-height: 1.08;
  margin-bottom: 28px;
}
.post-header__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--neutral);
  flex-wrap: wrap;
}
.post-header__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-header__author {
  font-weight: 600;
  color: var(--plum-deep);
  font-size: 15px;
}
.post-header__dot {
  color: var(--neutral);
  font-size: 14px;
  line-height: 1;
}
.post-header__date, .post-header__readtime {
  font-size: 14px;
  color: var(--neutral);
}

.post-hero-image {
  background: var(--cream-pale, var(--cream-light));
  padding-bottom: 48px;
}
.post-hero-image__wrap {
  max-height: 520px;
  border-radius: 20px;
  overflow: hidden;
}
.post-hero-image__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.post-body {
  background: var(--cream-pale, var(--cream-light));
  padding: 40px 0 80px;
}
.post-body__layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 80px;
}

.post-content {
  font-size: 19px;
  color: var(--neutral-dark);
  line-height: 1.75;
}
.post-content h2, .post-content__heading {
  font-size: clamp(22px, 2.5vw, 32px);
  color: var(--plum-deep);
  margin: 48px 0 20px;
  line-height: 1.2;
  scroll-margin-top: 100px;
}
.post-content h2:first-child, .post-content__heading:first-child {
  margin-top: 0;
}
.post-content h3 {
  font-size: 22px;
  color: var(--plum-deep);
  margin: 36px 0 14px;
}
.post-content p {
  margin-bottom: 22px;
}
.post-content a {
  color: var(--coral);
}
.post-content a:hover {
  color: var(--link-hover);
}
.post-content ul, .post-content ol {
  padding-left: 24px;
  margin-bottom: 22px;
}
.post-content ul {
  list-style: none;
}
.post-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
.post-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper);
}
.post-content ol {
  list-style: decimal;
}
.post-content ol li {
  margin-bottom: 10px;
}
.post-content img {
  border-radius: var(--radius-large);
  margin: 28px 0;
  max-width: 100%;
  height: auto;
}

.post-content blockquote,
.post-blockquote {
  border-left: 3px solid var(--copper);
  background: rgba(224, 152, 90, 0.06);
  padding: 20px 28px;
  margin: 32px 0;
  font-style: italic;
  font-size: 19px;
  line-height: 1.65;
  color: var(--plum-deep);
  border-radius: 0 var(--radius-medium, 8px) var(--radius-medium, 8px) 0;
}
.post-content blockquote p,
.post-blockquote p {
  margin-bottom: 0;
}

.post-divider {
  border: none;
  height: 1px;
  background: var(--neutral-lighter);
  margin: 40px 0;
}

.post-sidebar__sticky {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.post-sidebar__toc {
  background: linear-gradient(135deg, rgba(240, 89, 72, 0.06) 0%, rgba(224, 152, 90, 0.06) 100%);
  border-radius: var(--radius-xlarge);
  padding: 24px 20px;
}
.post-sidebar__toc-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--neutral);
  margin-bottom: 14px;
}
.post-sidebar__toc-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.post-sidebar__link {
  font-size: 14px;
  color: var(--neutral-dark);
  padding: 6px 12px;
  border-left: 2px solid transparent;
  border-radius: 0 4px 4px 0;
  transition: color var(--duration-fast), border-color var(--duration-fast), background var(--duration-fast);
  display: block;
  text-decoration: none;
  line-height: 1.35;
}
.post-sidebar__link:hover {
  color: var(--coral);
  border-color: var(--coral);
}
.post-sidebar__link.active {
  color: var(--coral);
  border-color: var(--coral);
  background: rgba(240, 89, 72, 0.06);
  font-weight: 500;
}
.post-sidebar__cta {
  background: var(--plum-deep);
  border-radius: var(--radius-xlarge);
  padding: 28px 24px;
  text-align: center;
}
.post-sidebar__cta-headline {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--cream-light);
  margin-bottom: 16px;
  line-height: 1.2;
}

.post-author {
  background: var(--cream-dark);
  padding: 48px 0;
}
.post-author__card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  max-width: 860px;
}
.post-author__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
.post-author__info {
  flex: 1;
}
.post-author__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--neutral);
  margin-bottom: 6px;
}
.post-author__name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--plum-deep);
  line-height: 1.2;
}
.post-author__role {
  font-size: 14px;
  color: var(--coral);
  margin-top: 4px;
}
.post-author__bio {
  font-size: 15px;
  color: var(--neutral-dark);
  line-height: 1.55;
  margin-top: 10px;
}

.post-nav {
  background: var(--cream-dark);
  padding-bottom: 48px;
}
.post-nav__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 40px 0;
  border-top: 1px solid rgba(48, 13, 51, 0.1);
}
.post-nav__link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: inherit;
  text-decoration: none;
}
.post-nav__link--next {
  text-align: right;
}
.post-nav__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--neutral);
}
.post-nav__title {
  font-size: 16px;
  color: var(--plum-deep);
  transition: color var(--duration-fast);
}
.post-nav__link:hover .post-nav__title {
  color: var(--coral);
}

@media (max-width: 1024px) {
  .featured__grid {
    grid-template-columns: 1fr;
  }
  .posts__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .post-body__layout {
    grid-template-columns: 1fr;
  }
  .post-sidebar {
    display: none;
  }
}
@media (max-width: 768px) {
  .posts__grid {
    grid-template-columns: 1fr;
  }
  .post-nav__grid {
    grid-template-columns: 1fr;
  }
  .post-author__card {
    flex-direction: column;
    align-items: flex-start;
  }
}
.specialty-hero .header__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.glance {
  background: #4e0c58;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.glance__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  padding: 56px var(--padding-global, 64px);
}
.glance__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.glance__label {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--copper);
  text-align: center;
}
.glance__value {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  text-align: center;
  white-space: nowrap;
}
.glance__divider {
  width: 1px;
  height: 52px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.specialty-role {
  background: var(--cream-light);
}
.specialty-role__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.specialty-role__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.specialty-role__headline {
  font-size: clamp(28px, 3vw, 40px);
  color: var(--plum-deep);
  line-height: 1.15;
}
.specialty-role__body {
  font-size: 18px;
  color: rgba(48, 13, 51, 0.65);
  line-height: 1.4;
}
.specialty-role__body p {
  margin-bottom: 20px;
}
.specialty-role__body p:last-child {
  margin-bottom: 0;
}
.specialty-role__image {
  border-radius: 24px;
  overflow: hidden;
}
.specialty-role__image img {
  width: 100%;
  height: 695px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.advantage {
  background: #fff6ed;
}
.advantage__header {
  text-align: center;
  margin-bottom: 64px;
}
.advantage__header .eyebrow {
  margin-bottom: 16px;
}
.advantage__headline {
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.1;
  text-align: center;
}
.advantage__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.adv-card {
  border-radius: 24px;
  padding: 41px 37px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  border: 1px solid transparent;
}
.adv-card:nth-child(1) {
  background: linear-gradient(147deg, #fdf0e8 6%, #fce2d4 41%, rgba(240, 89, 72, 0.08) 94%);
  border-color: rgba(240, 89, 72, 0.1);
}
.adv-card:nth-child(2) {
  background: linear-gradient(147deg, #f3eaf8 6%, #ead8f5 41%, rgba(135, 79, 175, 0.08) 94%);
  border-color: rgba(204, 151, 229, 0.1);
}
.adv-card:nth-child(3) {
  background: linear-gradient(147deg, #fceddf 6%, #f4ddc9 41%, rgba(224, 152, 90, 0.08) 94%);
  border-color: rgba(224, 152, 90, 0.1);
}
.adv-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  flex-shrink: 0;
}
.adv-card__icon svg {
  width: 24px;
  height: 24px;
}
.adv-card:nth-child(1) .adv-card__icon {
  background: rgba(240, 89, 72, 0.15);
  color: var(--coral);
}
.adv-card:nth-child(2) .adv-card__icon {
  background: rgba(204, 151, 229, 0.15);
  color: var(--purple-mid);
}
.adv-card:nth-child(3) .adv-card__icon {
  background: rgba(224, 152, 90, 0.15);
  color: var(--copper);
}
.adv-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--plum-deep);
}
.adv-card__body {
  font-size: 16px;
  color: rgba(48, 13, 51, 0.6);
  line-height: 1.65;
}

.requirements {
  background: #4e0c58;
}
.requirements__header {
  text-align: center;
  margin-bottom: 64px;
}
.requirements__header .eyebrow {
  margin-bottom: 16px;
}
.requirements__headline {
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.1;
  text-align: center;
  color: var(--white);
}
.requirements__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.req-group {
  background: rgba(255, 246, 237, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: background var(--duration-normal) var(--easing), border-color var(--duration-normal) var(--easing), transform var(--duration-normal) var(--easing);
}
.req-group:hover {
  background: rgba(255, 246, 237, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
}
.req-group__title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}

.req-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  list-style: none;
  padding-left: 0;
}
.req-list__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.req-list__check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}
.req-list__text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--white);
}
.req-list__text strong {
  font-weight: 600;
}

.training {
  background: var(--cream-light);
}
.training__layout {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
.training__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.training__intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.training__intro .eyebrow {
  margin-bottom: 0;
}
.training__headline {
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.1;
}
.training__body {
  font-size: 18px;
  color: rgba(48, 13, 51, 0.5);
  line-height: 1.5;
}
.training__card {
  background: linear-gradient(165deg, #fceddf 6%, #f4ddc9 41%, rgba(224, 152, 90, 0.08) 94%);
  border: 1px solid rgba(224, 152, 90, 0.1);
  border-radius: 24px;
  padding: 30px;
}
.training__card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--plum-deep);
  margin-bottom: 12px;
}
.training__card-body {
  font-size: 16px;
  color: rgba(48, 13, 51, 0.6);
  line-height: 1.65;
}
.training__right {
  flex: 1;
  border-bottom: 1px solid rgba(48, 13, 51, 0.2);
}

.accordion__item {
  border-top: 1px solid rgba(48, 13, 51, 0.2);
}

.accordion__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  gap: 24px;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  color: var(--plum-deep);
  font-weight: 400;
  line-height: 1.2;
}

.accordion__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--plum-deep);
}

.accordion__icon--minus {
  display: none;
}

.accordion__item.open .accordion__icon--plus {
  display: none;
}

.accordion__item.open .accordion__icon--minus {
  display: block;
}

.accordion__body {
  overflow: hidden;
  max-height: 0;
  padding-bottom: 0;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(48, 13, 51, 0.75);
  transition: max-height 0.65s cubic-bezier(0.16, 1, 0.3, 1), padding-bottom 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.accordion__body p {
  margin-bottom: 14px;
}
.accordion__body p:last-child {
  margin-bottom: 0;
}
.accordion__body ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 0;
  margin-top: 12px;
  list-style: none;
}
.accordion__body li {
  padding-left: 18px;
  position: relative;
  font-size: 16px;
}
.accordion__body li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--coral);
}
.accordion__body strong {
  font-weight: 600;
  color: var(--coral);
}

.accordion__item.open .accordion__body {
  max-height: 600px;
  padding-bottom: 24px;
}

@media (max-width: 1024px) {
  .specialty-role__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .specialty-role__image img {
    height: auto;
    aspect-ratio: 16/9;
  }
  .advantage__cards {
    grid-template-columns: 1fr;
  }
  .requirements__grid {
    grid-template-columns: 1fr;
  }
  .glance__inner {
    flex-wrap: wrap;
    gap: 40px;
  }
  .training__layout {
    flex-direction: column;
    gap: 48px;
  }
}
@media (max-width: 768px) {
  .glance__inner {
    gap: 32px;
    padding: 40px 24px;
  }
  .glance__divider {
    display: none;
  }
}
@keyframes hero-slide-up {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rings-in {
  from {
    opacity: 0;
    transform: translate(40px, 40px);
  }
  to {
    opacity: 0.4;
    transform: translate(0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-header__headline, .page-header__subhead, .page-header__eyebrow {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .page-header__ring-img {
    animation: none !important;
    opacity: 0.4 !important;
    transform: none !important;
  }
}
.page-header {
  background: #4e0c58;
  padding: 112px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-header__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(224, 171, 250, 0.1) 0%, transparent 60%), radial-gradient(ellipse at 30% 80%, rgba(135, 79, 175, 0.12) 0%, transparent 50%);
  pointer-events: none;
}
.page-header__inner {
  max-width: 580px;
  position: relative;
  z-index: 1;
  padding-top: 40px;
}
.page-header__eyebrow {
  color: var(--lavender);
  margin-bottom: 18px;
  animation: hero-slide-up 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.1s both;
}
.page-header__headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  animation: hero-slide-up 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.3s both;
}
.page-header__headline em {
  font-style: italic;
}
.page-header__subhead {
  font-size: 20px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.85);
  max-width: 534px;
  position: relative;
  z-index: 1;
  animation: hero-slide-up 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.55s both;
}
.page-header__rings {
  position: absolute;
  right: -580px;
  top: 150px;
  width: 1376px;
  height: 797px;
  pointer-events: none;
  z-index: 0;
}
.page-header__ring-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 1376px;
  height: 797px;
  display: block;
  max-width: none;
  animation: rings-in 1s cubic-bezier(0.25, 1, 0.5, 1) both;
}
.page-header__ring-img:nth-child(1) {
  animation-delay: 0.1s;
}
.page-header__ring-img:nth-child(2) {
  animation-delay: 0.28s;
}
.page-header__ring-img:nth-child(3) {
  animation-delay: 0.46s;
}
.page-header__ring-img:nth-child(4) {
  animation-delay: 0.64s;
}

.form-section {
  background: #fff6ed;
}
.form-section__grid {
  display: grid;
  grid-template-columns: 1fr 649px;
  gap: 70px;
  align-items: start;
}
.form-section__grid--contact {
  grid-template-columns: 1fr 540px;
  gap: 80px;
}

.trust {
  position: sticky;
  top: 100px;
}
.trust__headline {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--plum-deep);
  margin-bottom: 20px;
}
.trust__body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--neutral-dark);
  margin-bottom: 24px;
  max-width: 461px;
}
.trust__perks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.trust__perk {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.trust__perk-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--coral);
  border-radius: 4px;
  margin-top: 8px;
}
.trust__perk-text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--plum-deep);
}
.trust__divider {
  height: 1px;
  background: rgba(48, 13, 51, 0.1);
  margin-bottom: 20px;
}
.trust__steps-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(48, 13, 51, 0.4);
  margin-bottom: 14px;
  display: block;
}
.trust__steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.trust__step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.trust__step-num {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: #4e0c58;
  color: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
}
.trust__step-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust__step-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--plum-deep);
  line-height: 1.6;
}
.trust__step-text span {
  font-size: 14px;
  line-height: 1.55;
  color: var(--neutral-dark);
}
.trust__contact {
  font-size: 15px;
  line-height: 1.6;
  color: var(--neutral-dark);
}
.trust__contact a {
  color: var(--coral);
  font-weight: 500;
}

.contact-section {
  background: var(--cream-light);
}

.contact-info__headline {
  font-size: clamp(28px, 3vw, 40px);
  color: var(--plum-deep);
  line-height: 1.15;
  margin-bottom: 16px;
}
.contact-info__body {
  font-size: 18px;
  color: var(--neutral-dark);
  line-height: 1.5;
  margin-bottom: 32px;
}
.contact-info__items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(240, 89, 72, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info__icon svg {
  width: 22px;
  height: 22px;
  color: var(--coral);
}
.contact-info__label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--neutral);
  margin-bottom: 2px;
}
.contact-info__value {
  font-size: 16px;
  color: var(--plum-deep);
  font-weight: 500;
  transition: color var(--duration-fast);
}
.contact-info__value:hover {
  color: var(--coral);
}
.contact-info__hours {
  padding-top: 24px;
  border-top: 1px solid var(--neutral-lighter);
}
.contact-info__hours-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--plum-deep);
  margin-bottom: 4px;
}
.contact-info__hours-text {
  font-size: 15px;
  color: var(--neutral-dark);
}

.form-success {
  text-align: center;
  padding: 80px 0;
}
.form-success svg {
  margin-bottom: 24px;
}
.form-success__title {
  font-size: 28px;
  color: var(--plum-deep);
  margin-bottom: 12px;
}
.form-success__body {
  font-size: 18px;
  color: var(--neutral-dark);
  max-width: 480px;
  margin: 0 auto 32px;
}

@media (max-width: 1024px) {
  .form-section__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .trust {
    position: static;
  }
}
@media (max-width: 768px) {
  .page-header {
    padding: 88px 0 56px;
  }
  .page-header__headline {
    font-size: clamp(36px, 9vw, 50px);
  }
  .page-header__subhead {
    font-size: 16px;
  }
  .page-header__inner {
    width: 100%;
  }
  .trust__headline {
    font-size: 28px;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.dot-sep {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  vertical-align: middle;
  margin: 0 0.375rem;
}
/*# sourceMappingURL=main.css.map */
