@font-face {
  font-family: "TT Norms Black";
  src: local("TT Norms Black"), local("TTNorms-Black"),
       url("../fonts/TTNorms-Black.otf?v=1") format("opentype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: "egalite";
  src: local("egalite"), local("egalite-bold"),
       url("../fonts/egalite-bold.otf?v=1") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --navy: #151f42;
  --navy-soft: #202b53;
  --purple: #9b59b6;
  --purple-dark: #8e4fa7;
  --blue: #4865dc;
  --ink: #454545;
  --muted: #727272;
  --surface: #ffffff;
  --surface-soft: #f5f5f7;
  --footer: #343434;
  --footer-dark: #292929;
  --line: #e6e3e8;
  --header-height: 76px;
  --shadow: 0 10px 30px rgba(18, 25, 53, 0.1);
  --radius: 14px;
  --content: 1180px;
  --font-display: "TT Norms Black", "Arial Black", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 280px;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--purple-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover,
a:focus-visible {
  color: var(--purple);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(155, 89, 182, 0.42);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  padding: 10px 14px;
  color: #fff;
  background: var(--purple-dark);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.content-shell,
.nav-shell,
.intro-inner {
  width: min(100% - 32px, var(--content));
  margin-inline: auto;
}

.section-anchor {
  scroll-margin-top: calc(var(--header-height) + 12px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(21, 31, 66, 0.08);
  box-shadow: 0 2px 14px rgba(18, 25, 53, 0.08);
  backdrop-filter: blur(12px);
}

.nav-shell {
  position: relative;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(205px, calc(100vw - 132px));
  text-decoration: none;
}

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

.menu-toggle {
  width: 46px;
  min-width: 46px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 8px 12px;
  border: 1px solid #d8d8dc;
  border-radius: 9px;
  color: #555;
  background: #f6f6f7;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  cursor: pointer;
}

.menu-toggle__icon {
  width: 20px;
  height: 16px;
  display: grid;
  align-content: space-between;
}

.menu-toggle__icon span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.primary-nav {
  position: absolute;
  top: calc(100% + 1px);
  left: -16px;
  right: -16px;
  display: grid;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 24px rgba(18, 25, 53, 0.1);
  transform-origin: top;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.primary-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-link {
  position: relative;
  padding: 15px 24px;
  color: #5b5b5b;
  border-top: 1px solid #efeff1;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.075em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: var(--purple-dark);
  background: #faf8fb;
}

/* HuT display typography: TT Norms Black from the supplied HuTmR package. */
.menu-toggle,
.nav-link,
.intro-heading h1,
.lead-copy strong,
.section-heading h2,
.appointment-card h3,
.footer-block h2 {
  font-family: var(--font-display);
  font-synthesis: none;
}

.intro {
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(155, 89, 182, 0.19), transparent 34%),
    radial-gradient(circle at 12% 82%, rgba(72, 101, 220, 0.14), transparent 31%),
    var(--navy);
}

.intro-inner {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-content: center;
  gap: 26px;
  padding-block: 42px 52px;
}

.hero-logo-wrap {
  position: relative;
  width: min(78vw, 320px);
  margin-inline: auto;
}

.hero-logo-wrap::before {
  content: "";
  position: absolute;
  inset: 14% 8% 5%;
  z-index: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(22px);
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.22));
}

.intro-copy {
  min-width: 0;
}

.intro-heading {
  margin-bottom: 20px;
}

.intro-heading h1 {
  margin: 0 0 6px;
  color: #b879c9;
  font-size: clamp(2.5rem, 13vw, 4.25rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.intro-subtitle {
  margin: 0;
  color: #eeeaf2;
  font-size: clamp(1.2rem, 6vw, 1.75rem);
  line-height: 1.25;
  font-weight: 300;
}

.intro-panel {
  padding: 20px 18px;
  color: #eeeeef;
  background: rgba(255, 255, 255, 0.085);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.12);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.intro-panel a {
  color: #d7b0e5;
}

.intro-panel a:hover,
.intro-panel a:focus-visible {
  color: #fff;
}

.lead-list {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lead-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
}

.lead-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  margin-top: 2px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 900;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.lead-copy strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.02rem;
}

.lead-copy p {
  margin: 0;
}

.appointments {
  padding-block: 64px;
  background: var(--surface);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 12px;
  color: var(--purple);
  font-size: clamp(2rem, 9vw, 2.55rem);
  line-height: 1.14;
  font-weight: 900;
}

.section-heading p {
  margin: 0;
  color: #727272;
}

.section-divider {
  width: 46px;
  height: 3px;
  display: block;
  margin: 24px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
}

.appointment-grid {
  display: grid;
  gap: 18px;
}

.appointment-card {
  position: relative;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 26px rgba(18, 25, 53, 0.055);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.appointment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  width: 52px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  transition: width 0.28s ease, height 0.28s ease, box-shadow 0.28s ease;
}

.appointment-card h3 {
  margin: 4px 0 15px;
  color: var(--purple);
  font-size: 1.42rem;
  line-height: 1.25;
  font-weight: 900;
  transition: transform 0.24s ease, color 0.24s ease;
}

.appointment-card p {
  margin: 0;
  color: #696969;
  white-space: pre-line;
}


.egalite-wordmark {
  font-family: "egalite", "Segoe UI", Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: none;
  font-synthesis: none;
}

.site-footer {
  color: #d3d3d3;
  background: var(--footer);
}

.footer-main {
  display: grid;
  gap: 34px;
  padding-block: 48px;
}

.footer-block h2 {
  margin: 0 0 18px;
  color: #b879c9;
  font-size: 1.28rem;
  line-height: 1.25;
  font-weight: 900;
}

.footer-block p {
  margin: 0;
}

.footer-block a {
  color: #e0c5e7;
}

.footer-block a:hover,
.footer-block a:focus-visible {
  color: #fff;
}

.contact-list,
.social-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list {
  display: grid;
  gap: 11px;
}

.contact-list li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.contact-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: #565656;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.footer-side {
  display: grid;
  align-content: start;
  gap: 32px;
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-list a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  box-shadow: 0 6px 16px rgba(72, 101, 220, 0.16);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.social-list a:hover,
.social-list a:focus-visible {
  color: #fff;
  filter: brightness(1.08);
  box-shadow: 0 9px 20px rgba(155, 89, 182, 0.24);
  transform: translateY(-2px);
}

.social-list svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.sub-footer {
  background: var(--footer-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sub-footer-inner {
  display: grid;
  gap: 6px;
  padding-block: 18px;
  text-align: center;
}

.sub-footer p {
  margin: 0;
  color: #aaa;
  font-size: 0.88rem;
}

.sub-footer a {
  color: #c8a5d3;
}

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(86, 86, 86, 0.92);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, visibility 0.2s, transform 0.2s ease, background 0.2s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover,
.scroll-top:focus-visible {
  color: #fff;
  background: var(--purple-dark);
}

.scroll-top svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

@media (min-width: 700px) {
  :root {
    --header-height: 86px;
  }

  .content-shell,
  .nav-shell,
  .intro-inner {
    width: min(100% - 56px, var(--content));
  }

  .brand {
    width: 245px;
  }

  .menu-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    align-self: stretch;
    align-items: stretch;
    gap: 2px;
    border: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-link {
    display: flex;
    align-items: center;
    padding: 0 18px;
    border: 0;
    background: transparent;
  }

  .nav-link::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--purple-dark);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
  }

  .nav-link:hover,
  .nav-link:focus-visible,
  .nav-link.is-active {
    background: transparent;
  }

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

  .intro-inner {
    gap: 34px;
    padding-block: 64px 72px;
  }

  .hero-logo-wrap {
    width: min(50vw, 390px);
  }

  .intro-panel {
    padding: 28px 26px;
  }

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

  .appointment-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
    gap: 64px;
    padding-block: 58px;
  }

  .sub-footer-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    text-align: left;
  }

  .sub-footer-inner p:last-child {
    text-align: right;
  }
}

@media (min-width: 980px) {
  .intro-inner {
    min-height: min(760px, calc(100svh - var(--header-height)));
    grid-template-columns: minmax(0, 1.42fr) minmax(330px, 0.78fr);
    align-items: center;
    column-gap: clamp(38px, 6vw, 90px);
  }

  .hero-logo-wrap {
    grid-column: 2;
    grid-row: 1;
    width: min(100%, 430px);
  }

  .intro-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .intro-panel {
    max-width: 720px;
  }

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

  .appointment-card:last-child:nth-child(odd) {
    grid-column: auto;
  }
}

@media (min-width: 1200px) {
  .brand {
    width: 265px;
  }

  .intro-inner {
    padding-block: 72px 82px;
  }

  .hero-logo-wrap {
    width: 455px;
  }
}



/* ===== HuT V6: subtle desktop micro-interactions ===== */
@media (hover: hover) and (pointer: fine) {
  .appointment-card:hover {
    transform: translateY(-7px);
    border-color: rgba(155, 89, 182, 0.34);
    background: linear-gradient(180deg, #ffffff 0%, #fdfbfe 100%);
    box-shadow: 0 18px 42px rgba(18, 25, 53, 0.13), 0 6px 18px rgba(155, 89, 182, 0.08);
  }

  .appointment-card:hover::before {
    width: calc(100% - 44px);
    height: 4px;
    box-shadow: 0 3px 12px rgba(155, 89, 182, 0.2);
  }

  .appointment-card:hover h3 {
    transform: translateY(-1px);
    color: var(--purple-dark);
  }

  .intro-panel:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.105);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.16);
  }

  .lead-list li:hover .lead-icon {
    transform: scale(1.1) rotate(-4deg);
    box-shadow: 0 5px 14px rgba(155, 89, 182, 0.28);
  }

  .contact-list li:hover .contact-icon {
    transform: translateY(-2px) scale(1.05);
    background: linear-gradient(135deg, var(--blue), var(--purple));
    box-shadow: 0 7px 16px rgba(155, 89, 182, 0.2);
  }

  .brand:hover img {
    transform: translateY(-1px) scale(1.012);
  }

  .brand img {
    transition: transform 0.22s ease;
  }

  .hero-logo-wrap:hover .hero-logo {
    transform: translateY(-4px) scale(1.012);
    filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.26));
  }

  .hero-logo {
    transition: transform 0.28s ease, filter 0.28s ease;
  }

  .scroll-top:hover,
  .scroll-top:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  }
}
/* ===== /HuT V6: subtle desktop micro-interactions ===== */

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

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