
@font-face {
  font-family: "Geist Local";
  src: url("../fonts/geist-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Geist Local";
  src: url("../fonts/geist-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0300-0304, U+0308-0309, U+0323, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212;
}

:root {
  --ink: #20182f;
  --ink-soft: #463b55;
  --deep: #24143d;
  --deep-2: #321954;
  --violet: #7b55d9;
  --violet-dark: #5d34b5;
  --lilac: #cbb8ff;
  --lilac-soft: #eee7ff;
  --peach: #ffb08b;
  --peach-soft: #fff0e8;
  --mint: #91dac9;
  --mint-soft: #e1f5ef;
  --blue: #9bbfff;
  --blue-soft: #e8f0ff;
  --gold: #d5ad59;
  --cream: #f8f4ee;
  --cream-2: #fcfaf7;
  --paper: #fffefd;
  --line: rgba(32, 24, 47, 0.13);
  --muted: #6f6679;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(42, 25, 66, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream-2);
  color: var(--ink);
  font-family: 'Geist Local', Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea {
  font-family: inherit;
}

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

button,
input,
textarea {
  border: 0;
}

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

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

::selection {
  background: var(--lilac);
  color: var(--ink);
}

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

.shell {
  width: min(1320px, calc(100% - 80px));
  margin-inline: auto;
}

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

.award-bar {
  position: relative;
  z-index: 80;
  min-height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px 24px;
  background: var(--deep);
  color: #fff;
  font-size: 12px;
  font-weight: 710;
  letter-spacing: 0.075em;
  text-align: center;
  text-transform: uppercase;
}

.award-bar__detail {
  color: var(--lilac);
  font-weight: 560;
}

.award-bar__spark {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.award-bar__spark svg {
  width: 100%;
  height: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(28px, 4vw, 68px);
  border-bottom: 1px solid rgba(32, 24, 47, 0.08);
  background: rgba(252, 250, 247, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  display: block;
  flex: 0 0 auto;
  line-height: 0;
}

.brand__logo {
  width: 132px;
  height: auto;
}

.brand__mark {
  position: relative;
  grid-row: 1 / 3;
  width: 43px;
  height: 43px;
  display: block;
  transform: rotate(-7deg);
}

.brand__mark > span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 17px;
  height: 27px;
  border-radius: 100% 100% 75% 75%;
  transform-origin: 50% 100%;
  mix-blend-mode: multiply;
}

.brand__mark > span:nth-child(1) {
  background: var(--violet);
  transform: translate(-50%, -100%) rotate(0deg);
}

.brand__mark > span:nth-child(2) {
  background: var(--peach);
  transform: translate(-50%, -100%) rotate(90deg);
}

.brand__mark > span:nth-child(3) {
  background: var(--mint);
  transform: translate(-50%, -100%) rotate(180deg);
}

.brand__mark > span:nth-child(4) {
  background: var(--blue);
  transform: translate(-50%, -100%) rotate(270deg);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(19px, 2.15vw, 36px);
  font-size: 14px;
  font-weight: 630;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  padding: 9px 0;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--violet);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

.main-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 47px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  transition: transform 220ms ease, background 220ms ease;
}

.nav-cta:hover {
  background: var(--violet-dark);
  transform: translateY(-2px);
}

.nav-cta svg {
  width: 17px;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  width: 19px;
  height: 1.5px;
  background: #fff;
  transition: transform 220ms ease;
}

.menu-button span:first-child {
  transform: translateY(-4px);
}

.menu-button span:last-child {
  transform: translateY(4px);
}

.menu-button.is-active span:first-child {
  transform: rotate(45deg);
}

.menu-button.is-active span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100svh - 139px);
  overflow: hidden;
  background: var(--cream);
}

.hero__background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #f8f4ee 0%, rgba(248, 244, 238, 0.99) 31%, rgba(248, 244, 238, 0.88) 47%, rgba(248, 244, 238, 0.05) 71%),
    linear-gradient(0deg, rgba(248, 244, 238, 0.08), rgba(248, 244, 238, 0.08)),
    url("../images/jana-story.jpg") center 40% / cover no-repeat;
}

.hero__background::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 17%, rgba(203, 184, 255, 0.52), transparent 18%),
    linear-gradient(180deg, transparent 75%, rgba(248, 244, 238, 0.95));
  content: "";
}

.hero__inner {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - 139px);
  display: flex;
  align-items: center;
  padding-top: 52px;
  padding-bottom: 86px;
}

.hero__copy {
  width: min(735px, 58%);
}

.eyebrow,
.overline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--violet-dark);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.155em;
  line-height: 1.35;
  text-transform: uppercase;
}

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

.hero h1 {
  max-width: 760px;
  margin: 22px 0 25px;
  font-size: clamp(54px, 5.2vw, 85px);
  font-weight: 680;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

h1 em,
h2 em {
  color: var(--violet);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero h1 small {
  display: block;
  max-width: 690px;
  margin-top: 15px;
  color: var(--ink);
  font-size: 0.44em;
  font-weight: 620;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.hero__lead {
  max-width: 660px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.65;
}

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

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 720;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease;
}

.button svg,
.text-link svg,
.social-callout a svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

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

.button--primary {
  background: var(--violet-dark);
  box-shadow: 0 14px 34px rgba(93, 52, 181, 0.27);
  color: #fff;
}

.button--primary:hover {
  background: var(--ink);
  box-shadow: 0 17px 40px rgba(32, 24, 47, 0.25);
}

.button--text {
  min-height: 46px;
  padding: 0;
  border-radius: 0;
  color: var(--ink);
}

.button--text:hover {
  color: var(--violet-dark);
  transform: none;
}

.play-icon {
  width: 31px;
  height: 31px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.hero__proof {
  display: flex;
  gap: 0;
  margin-top: 48px;
}

.hero__proof > div {
  min-width: 145px;
  padding-right: 27px;
  margin-right: 27px;
  border-right: 1px solid var(--line);
}

.hero__proof > div:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: 0;
}

.hero__proof strong,
.hero__proof span {
  display: block;
}

.hero__proof strong {
  font-size: 24px;
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.hero__proof span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.035em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero__mobile-visual {
  display: none;
}

.hero-award {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: 310px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(42, 25, 66, 0.16);
  backdrop-filter: blur(15px);
}

.hero-award img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.hero-award span,
.hero-award strong,
.hero-award small {
  display: block;
  line-height: 1.2;
}

.hero-award span {
  color: #a87c2e;
  font-size: 10px;
  font-weight: 790;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-award strong {
  margin: 4px 0 3px;
  font-size: 16px;
  font-weight: 760;
}

.hero-award small {
  color: var(--muted);
  font-size: 11px;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 25px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 690;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: relative;
  width: 26px;
  height: 42px;
  border: 1px solid rgba(32, 24, 47, 0.28);
  border-radius: 99px;
}

.scroll-cue span::after {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 7px;
  border-radius: 3px;
  background: var(--violet);
  content: "";
  animation: scrollDot 1.7s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  80% { opacity: 0; transform: translate(-50%, 17px); }
  100% { opacity: 0; transform: translate(-50%, 17px); }
}

.talent-orbit {
  position: absolute;
  z-index: 1;
  width: 290px;
  height: 290px;
  border: 1px solid rgba(123, 85, 217, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  right: 22%;
  top: 4%;
}

.talent-orbit::before {
  position: absolute;
  inset: 38px;
  border: 1px solid rgba(123, 85, 217, 0.09);
  border-radius: inherit;
  content: "";
}

.talent-orbit i {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.talent-orbit i:nth-child(1) {
  top: 16px;
  left: 83px;
  background: var(--violet);
}

.talent-orbit i:nth-child(2) {
  right: 12px;
  top: 126px;
  background: var(--peach);
}

.talent-orbit i:nth-child(3) {
  bottom: 27px;
  left: 38px;
  background: var(--mint);
}

.trust-strip {
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.25);
  background: var(--violet-dark);
  color: #fff;
}

.trust-strip__track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 31px;
  padding-left: 30px;
  animation: ticker 38s linear infinite;
}

.trust-strip__track span {
  font-size: 12px;
  font-weight: 660;
  letter-spacing: 0.13em;
  white-space: nowrap;
  text-transform: uppercase;
}

.trust-strip__track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--peach);
}

@keyframes ticker {
  to { transform: translateX(-40%); }
}

.audience {
  background:
    radial-gradient(circle at 95% 10%, rgba(203, 184, 255, 0.28), transparent 23%),
    var(--cream-2);
}

.section-heading h2 {
  margin: 17px 0 0;
  font-size: clamp(43px, 4.25vw, 67px);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.7fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 62px;
}

.split-heading > p {
  max-width: 460px;
  margin: 0 0 5px auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

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

.audience-card {
  position: relative;
  min-height: 355px;
  display: grid;
  grid-template-columns: 43% 57%;
  overflow: hidden;
  border: 1px solid rgba(32, 24, 47, 0.09);
  border-radius: 27px;
  background: var(--paper);
  box-shadow: 0 12px 45px rgba(42, 25, 66, 0.06);
  transition: transform 300ms cubic-bezier(.2,.75,.3,1), box-shadow 300ms ease;
}

.audience-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.audience-card__image {
  position: relative;
  min-height: 355px;
  overflow: hidden;
}

.audience-card__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(32, 24, 47, 0.23));
  content: "";
}

.audience-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.75,.3,1);
}

.audience-card:hover .audience-card__image img {
  transform: scale(1.045);
}

.audience-card__number {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  color: var(--ink);
  font-size: 10px;
  font-weight: 780;
  backdrop-filter: blur(8px);
}

.audience-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 38px 34px 32px;
}

.audience-card__body::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 95px;
  height: 8px;
  border-radius: 0 0 0 20px;
  content: "";
}

.audience-card--violet .audience-card__body::before { background: var(--lilac); }
.audience-card--peach .audience-card__body::before { background: var(--peach); }
.audience-card--mint .audience-card__body::before { background: var(--mint); }
.audience-card--blue .audience-card__body::before { background: var(--blue); }

.audience-card__eyebrow {
  color: var(--violet-dark);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.audience-card h3 {
  margin: 17px 0 15px;
  font-size: clamp(21px, 1.65vw, 27px);
  font-weight: 680;
  letter-spacing: -0.045em;
  line-height: 1.18;
}

.audience-card p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: var(--ink);
  font-size: 13px;
  font-weight: 740;
}

.text-link svg {
  transition: transform 220ms ease;
}

a:hover .text-link svg,
.text-link:hover svg {
  transform: translateX(4px);
}

.test-teaser {
  padding: 35px 0;
  background: var(--cream);
}

.test-teaser__inner {
  position: relative;
  min-height: 205px;
  display: grid;
  grid-template-columns: 115px minmax(0, 1fr) auto;
  gap: 35px;
  align-items: center;
  overflow: hidden;
  padding: 35px 42px;
  border: 1px solid rgba(93, 52, 181, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 0%, rgba(255, 176, 139, 0.36), transparent 29%),
    linear-gradient(125deg, #eee7ff 0%, #f7f2ff 55%, #fff7ef 100%);
}

.test-teaser__inner::after {
  position: absolute;
  right: 24%;
  bottom: -95px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(123, 85, 217, .16);
  border-radius: 50%;
  content: "";
}

.test-teaser__badge {
  width: 105px;
  height: 105px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 50%;
  background: var(--violet-dark);
  box-shadow: 0 15px 35px rgba(93, 52, 181, .25);
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-style: italic;
}

.test-teaser h2 {
  margin: 8px 0 7px;
  font-size: clamp(28px, 2.7vw, 42px);
  font-weight: 680;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.test-teaser p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.button--dark {
  position: relative;
  z-index: 2;
  background: var(--ink);
  color: #fff;
}

.button--dark:hover {
  background: var(--violet-dark);
}

.navigator {
  overflow: hidden;
  background: var(--deep);
  color: #fff;
}

.navigator__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
  gap: clamp(55px, 7vw, 110px);
  align-items: center;
}

.navigator__visual {
  position: relative;
  padding: 30px 25px 45px 0;
}

.navigator__photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 150px 150px 27px 27px;
  box-shadow: 0 30px 80px rgba(8, 3, 18, 0.36);
}

.navigator__photo-wrap img {
  width: 100%;
  aspect-ratio: 0.88;
  object-fit: cover;
}

.navigator__photo-wrap::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: inherit;
  content: "";
}

.navigator__note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  min-width: 186px;
  padding: 16px 18px;
  border-radius: 15px;
  background: rgba(255,255,255,.9);
  color: var(--ink);
  backdrop-filter: blur(12px);
}

.navigator__note span,
.navigator__note strong {
  display: block;
}

.navigator__note span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 690;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.navigator__note strong {
  margin-top: 3px;
  font-size: 14px;
}

.navigator__mini-card {
  position: absolute;
  right: -2px;
  top: 10px;
  width: 165px;
  height: 165px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 19px;
  border-radius: 50%;
  background: var(--peach);
  color: var(--ink);
  text-align: center;
  transform: rotate(7deg);
}

.mini-card__icon {
  width: 30px;
  margin-bottom: 7px;
  color: var(--violet-dark);
}

.navigator__mini-card > span:last-child {
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .05em;
  line-height: 1.35;
  text-transform: uppercase;
}

.navigator__brandline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 33px;
}

.brand__mark--small {
  width: 32px;
  height: 32px;
}

.brand__mark--small > span {
  width: 13px;
  height: 21px;
}

.navigator__brandline strong {
  font-size: 16px;
  letter-spacing: -0.02em;
}

.navigator .overline {
  color: var(--peach);
}

.navigator h2 {
  max-width: 720px;
  margin: 15px 0 23px;
  font-size: clamp(43px, 4.05vw, 66px);
  font-weight: 620;
  letter-spacing: -0.061em;
  line-height: 1.02;
}

.navigator h2 em {
  color: var(--lilac);
}

.navigator__lead {
  max-width: 650px;
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: 17px;
  line-height: 1.75;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  margin: 31px 0 37px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: rgba(255,255,255,.85);
  font-size: 14px;
  line-height: 1.5;
}

.check-list li > span {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(145, 218, 201, .14);
  color: var(--mint);
  font-size: 11px;
}

.navigator__action {
  display: flex;
  align-items: center;
  gap: 25px;
}

.button--light {
  background: #fff;
  color: var(--ink);
}

.button--light:hover {
  background: var(--peach);
}

.navigator__action > div strong,
.navigator__action > div span {
  display: block;
}

.navigator__action > div strong {
  font-size: 19px;
  letter-spacing: -.03em;
}

.navigator__action > div span {
  color: rgba(255,255,255,.55);
  font-size: 11px;
}

.navigator__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.navigator__orb--one {
  top: -180px;
  right: -120px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(203, 184, 255, .13);
}

.navigator__orb--two {
  bottom: -230px;
  left: 32%;
  width: 420px;
  height: 420px;
  background: rgba(123, 85, 217, .1);
}

.approach {
  background:
    radial-gradient(circle at 10% 100%, rgba(145, 218, 201, .24), transparent 22%),
    var(--cream-2);
}

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

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

.section-heading--center > p {
  max-width: 620px;
  margin: 24px auto 0;
  color: var(--muted);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--line);
}

.approach-grid article {
  position: relative;
  min-height: 395px;
  padding: 43px 42px;
  background: var(--paper);
}

.approach-number {
  position: absolute;
  top: 31px;
  right: 33px;
  color: rgba(32, 24, 47, .28);
  font-size: 11px;
  font-weight: 770;
}

.approach-icon {
  position: relative;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  margin-bottom: 37px;
  border-radius: 50%;
}

.approach-icon--violet { background: var(--lilac-soft); }
.approach-icon--peach { background: var(--peach-soft); }
.approach-icon--mint { background: var(--mint-soft); }

.radar-dot {
  width: 14px;
  height: 14px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 12px rgba(123,85,217,.18), 0 0 0 24px rgba(123,85,217,.08);
}

.connect-line {
  position: relative;
  width: 50px;
  height: 2px;
  background: var(--peach);
  transform: rotate(-25deg);
}

.connect-line::before,
.connect-line::after {
  position: absolute;
  top: 50%;
  width: 13px;
  height: 13px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--peach);
  content: "";
  transform: translateY(-50%);
}

.connect-line::before { left: -3px; }
.connect-line::after { right: -3px; }

.arrow-rise {
  color: #23947b;
  font-family: Georgia, serif;
  font-size: 46px;
  line-height: 1;
}

.approach-grid h3 {
  margin: 0 0 15px;
  font-size: 28px;
  font-weight: 680;
  letter-spacing: -.045em;
}

.approach-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.award-section {
  min-height: 760px;
  display: grid;
  grid-template-columns: 50% 50%;
  background: #171021;
  color: #fff;
}

.award-section__photo {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.award-section__photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, #171021 100%);
  content: "";
}

.award-section__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}

.award-section__content {
  position: relative;
  align-self: center;
  max-width: 720px;
  padding: 85px clamp(55px, 7vw, 120px) 85px 85px;
}

.award-section__content::before {
  position: absolute;
  top: -80px;
  right: 0;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(213, 173, 89, .13);
  border-radius: 50%;
  content: "";
}

.award-section__badge-wrap {
  width: 124px;
  height: 124px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid rgba(213, 173, 89, .3);
  border-radius: 50%;
  background: rgba(213, 173, 89, .07);
}

.award-section__badge-wrap img {
  width: 100px;
}

.award-section .overline {
  color: var(--gold);
}

.award-section h2 {
  margin: 17px 0 24px;
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 600;
  letter-spacing: -.06em;
  line-height: 1.03;
}

.award-section h2 em {
  color: #e8ce92;
}

.award-section p {
  max-width: 630px;
  margin: 0 0 34px;
  color: rgba(255,255,255,.66);
  font-size: 17px;
  line-height: 1.78;
}

.button--outline-light {
  border-color: rgba(255,255,255,.29);
  background: transparent;
  color: #fff;
}

.button--outline-light:hover {
  border-color: var(--peach);
  background: var(--peach);
  color: var(--ink);
}

.story {
  overflow: hidden;
  background: var(--cream);
}

.story__grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(60px, 8vw, 125px);
  align-items: center;
}

.story h2 {
  max-width: 630px;
  margin: 18px 0 28px;
  font-size: clamp(43px, 4.3vw, 67px);
  font-weight: 630;
  letter-spacing: -.06em;
  line-height: 1.03;
}

.story__lead {
  max-width: 620px;
  margin: 0 0 17px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 550;
  line-height: 1.6;
}

.story__copy > p:not(.story__lead) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.story__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 37px 0 31px;
}

.story__facts > div {
  padding: 18px 14px 16px;
  border-top: 1px solid var(--line);
}

.story__facts strong,
.story__facts span {
  display: block;
}

.story__facts strong {
  color: var(--violet-dark);
  font-size: 26px;
  letter-spacing: -.04em;
  line-height: 1.1;
}

.story__facts span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .05em;
  line-height: 1.35;
  text-transform: uppercase;
}

.text-link--large {
  font-size: 15px;
}

.story__visual {
  position: relative;
  min-height: 690px;
}

.story__visual::before {
  position: absolute;
  top: -42px;
  right: -80px;
  width: 530px;
  height: 530px;
  border-radius: 50%;
  background: var(--lilac-soft);
  content: "";
}

.story__photo-main {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 72%;
  height: 78%;
  overflow: hidden;
  border-radius: 210px 210px 25px 25px;
  box-shadow: var(--shadow);
}

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

.story__photo-small {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 45%;
  height: 43%;
  overflow: hidden;
  border: 9px solid var(--cream);
  border-radius: 18px;
  box-shadow: 0 20px 55px rgba(42,25,66,.16);
  transform: rotate(-3deg);
}

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

.story__signature {
  position: absolute;
  z-index: 3;
  right: 3%;
  bottom: 8%;
  color: var(--violet-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  font-style: italic;
  transform: rotate(-8deg);
}

.references {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(123,85,217,.28), transparent 25%),
    var(--deep);
  color: #fff;
}

.references::after {
  position: absolute;
  right: -220px;
  bottom: -280px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  content: "";
}

.references__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.eyebrow--light {
  color: var(--peach);
}

.references h2 {
  max-width: 800px;
  margin: 18px 0 0;
  font-size: clamp(44px, 4.4vw, 69px);
  font-weight: 620;
  letter-spacing: -.06em;
  line-height: 1.03;
}

.references h2 em {
  color: var(--lilac);
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 13px;
}

.slider-controls button {
  width: 49px;
  height: 49px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 17px;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
}

.slider-controls button:hover {
  background: var(--peach);
  color: var(--ink);
}

.slider-controls span {
  color: rgba(255,255,255,.48);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
}

.testimonial-wrap {
  position: relative;
  z-index: 1;
  max-width: 1030px;
  margin: 76px auto 65px;
  text-align: center;
}

.quote-mark {
  width: 55px;
  margin: 0 auto 31px;
  color: var(--peach);
}

.testimonial-wrap blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.15vw, 48px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.3;
  animation: quoteIn 420ms ease both;
}

@keyframes quoteIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-author {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 33px;
  text-align: left;
}

.author-initial {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lilac);
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 20px;
}

.testimonial-author strong,
.testimonial-author span {
  display: block;
}

.testimonial-author strong {
  font-size: 13px;
}

.testimonial-author div span {
  color: rgba(255,255,255,.48);
  font-size: 11px;
}

.references__footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.references__footer p {
  max-width: 700px;
  margin: 0;
  color: rgba(255,255,255,.55);
  font-size: 15px;
}

.inspiration {
  background: var(--cream-2);
}

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

.inspiration-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.inspiration-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.inspiration-card__image {
  position: relative;
  height: 270px;
  overflow: hidden;
}

.inspiration-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms ease;
}

.inspiration-card:hover .inspiration-card__image img {
  transform: scale(1.05);
}

.inspiration-card__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(32,24,47,.22));
  content: "";
}

.inspiration-card__image > span {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
}

.inspiration-card__image > span svg {
  width: 19px;
}

.inspiration-card__body {
  min-height: 235px;
  display: flex;
  flex-direction: column;
  padding: 27px 28px 25px;
}

.inspiration-card__body > span {
  color: var(--violet-dark);
  font-size: 9px;
  font-weight: 780;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.inspiration-card__body h3 {
  margin: 13px 0 20px;
  font-size: 23px;
  font-weight: 650;
  letter-spacing: -.04em;
  line-height: 1.24;
}

.inspiration-card__body small {
  margin-top: auto;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
}

.social-callout {
  display: grid;
  grid-template-columns: 58px minmax(0,1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  padding: 23px 27px;
  border-radius: 20px;
  background: linear-gradient(105deg, var(--lilac-soft), var(--peach-soft));
}

.social-callout__icon {
  width: 51px;
  height: 51px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--violet-dark);
  color: #fff;
  font-size: 29px;
}

.social-callout div strong,
.social-callout div span {
  display: block;
}

.social-callout div strong {
  font-size: 14px;
}

.social-callout div span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 14px;
}

.social-callout a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 730;
}

.faq-section {
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, .63fr) minmax(0, 1.37fr);
  gap: clamp(60px, 10vw, 155px);
}

.faq-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-intro h2 {
  margin: 17px 0 22px;
  font-size: clamp(40px, 4vw, 62px);
  font-weight: 640;
  letter-spacing: -.058em;
  line-height: 1.04;
}

.faq-intro p {
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 16px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 29px 3px;
  font-size: 18px;
  font-weight: 640;
  letter-spacing: -.025em;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--violet-dark);
  font-size: 20px;
  font-weight: 400;
  transition: transform 220ms ease, background 220ms ease;
}

.faq-list details[open] summary span {
  background: var(--lilac);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 780px;
  margin: -4px 65px 30px 3px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.contact {
  min-height: 830px;
  display: grid;
  grid-template-columns: minmax(300px, 34%) minmax(0, 66%);
  background: var(--deep);
  color: #fff;
}

.contact__visual {
  position: relative;
  min-height: 830px;
  overflow: hidden;
}

.contact__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 65%, var(--deep));
  content: "";
}

.contact__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% center;
}

.contact__content {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(360px, 1.1fr);
  gap: clamp(45px, 5vw, 85px);
  align-items: center;
  padding: 100px clamp(50px, 6vw, 105px) 100px 60px;
}

.contact .overline {
  color: var(--peach);
}

.contact__copy h2 {
  max-width: 610px;
  margin: 17px 0 24px;
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 610;
  letter-spacing: -.06em;
  line-height: 1.04;
}

.contact__copy h2 em {
  color: var(--lilac);
}

.contact__copy > p {
  max-width: 580px;
  margin: 0 0 32px;
  color: rgba(255,255,255,.62);
  font-size: 16px;
  line-height: 1.78;
}

.contact__details {
  display: grid;
  gap: 17px;
  margin-top: 40px;
}

.contact__details a {
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.contact__details span,
.contact__details strong {
  display: block;
}

.contact__details span {
  color: rgba(255,255,255,.42);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact__details strong {
  margin-top: 3px;
  font-size: 14px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(30px, 3.4vw, 48px);
  border: 1px solid rgba(255,255,255,.21);
  border-radius: 27px;
  background: #fff;
  box-shadow: 0 35px 90px rgba(5,2,10,.32);
  color: var(--ink);
}

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

.contact-form label:not(.consent) {
  display: grid;
  gap: 7px;
}

.contact-form label > span {
  font-size: 11px;
  font-weight: 720;
  letter-spacing: .04em;
}

.contact-form label > span small {
  color: var(--muted);
  font-weight: 500;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(32,24,47,.13);
  border-radius: 12px;
  outline: none;
  background: #fbfafc;
  color: var(--ink);
  font-size: 15px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  min-height: 112px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(123,85,217,.1);
}

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

.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.consent input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  accent-color: var(--violet-dark);
}

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

.form-note {
  display: block;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.footer {
  padding: 70px 0 25px;
  background: #130d1b;
  color: #fff;
}

.brand--footer {
  width: fit-content;
  padding: 13px 15px;
  border-radius: 18px;
  background: rgba(255,255,255,.96);
}

.brand--footer .brand__logo {
  width: 220px;
}

.footer__top {
  display: grid;
  grid-template-columns: 260px minmax(0, 580px) 54px;
  justify-content: space-between;
  gap: 50px;
  align-items: center;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer__top p {
  margin: 0;
  color: rgba(255,255,255,.48);
  font-size: 30px;
  line-height: 1.2;
}

.footer__back {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  font-size: 20px;
  transition: background 200ms ease, color 200ms ease;
}

.footer__back:hover {
  background: var(--peach);
  color: var(--ink);
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  padding-top: 45px;
  padding-bottom: 42px;
}

.footer__links > div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer__links strong {
  margin-bottom: 9px;
  color: var(--lilac);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.footer__links a,
.footer__links span {
  width: fit-content;
  color: rgba(255,255,255,.52);
  font-size: 13px;
  transition: color 180ms ease;
}

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

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.07);
  color: rgba(255,255,255,.3);
  font-size: 11px;
  letter-spacing: .05em;
}

.mobile-booking {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(.2,.75,.3,1);
}

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

@media (scripting: none) {
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1240px) {
  .shell {
    width: min(1180px, calc(100% - 56px));
  }

  .main-nav {
    gap: 19px;
  }

  .hero__copy {
    width: 62%;
  }

  .hero-award {
    right: 1%;
  }

  .audience-card {
    min-height: 380px;
    grid-template-columns: 40% 60%;
  }

  .audience-card__image {
    min-height: 380px;
  }

  .audience-card__body {
    padding: 34px 28px 28px;
  }

  .contact {
    grid-template-columns: 28% 72%;
  }

  .contact__content {
    gap: 38px;
    padding-right: 50px;
    padding-left: 40px;
  }
}

@media (max-width: 1080px) {
  .site-header {
    height: 86px;
    padding-inline: 28px;
  }

  .brand__logo {
    width: 150px;
  }

  .menu-button {
    position: relative;
    display: grid;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 24px 28px 31px;
    border-bottom: 1px solid var(--line);
    background: rgba(255,255,255,.98);
    box-shadow: 0 24px 45px rgba(32,24,47,.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 200ms ease, transform 200ms ease;
  }

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

  .main-nav > a:not(.nav-cta) {
    padding: 13px 3px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .main-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    width: fit-content;
    margin-top: 18px;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    min-height: 820px;
  }

  .hero__background {
    background:
      linear-gradient(90deg, #f8f4ee 0%, rgba(248, 244, 238, .99) 38%, rgba(248, 244, 238, .78) 61%, rgba(248, 244, 238, .08) 100%),
      url("../images/jana-story.jpg") 56% center / cover no-repeat;
  }

  .hero__copy {
    width: 64%;
  }

  .hero h1 {
    font-size: clamp(52px, 7vw, 73px);
  }

  .hero-award {
    width: 285px;
  }

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

  .audience-card {
    grid-template-columns: 37% 63%;
    min-height: 330px;
  }

  .audience-card__image {
    min-height: 330px;
  }

  .audience-card h3 {
    max-width: 570px;
    font-size: 28px;
  }

  .navigator__grid {
    grid-template-columns: .88fr 1.12fr;
    gap: 55px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .award-section__content {
    padding-left: 55px;
    padding-right: 45px;
  }

  .story__grid {
    gap: 60px;
  }

  .story__visual {
    min-height: 610px;
  }

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

  .contact__visual {
    display: none;
  }

  .contact__content {
    max-width: 1180px;
    margin: 0 auto;
    padding: 100px 54px;
  }
}

@media (max-width: 850px) {
  .shell {
    width: calc(100% - 40px);
  }

  .section {
    padding: 96px 0;
  }

  .award-bar__detail {
    display: none;
  }

  .hero__background {
    display: none;
  }

  .hero__inner {
    min-height: auto;
    display: grid;
    padding-top: 72px;
    padding-bottom: 65px;
  }

  .hero__copy {
    width: 100%;
  }

  .hero h1 {
    max-width: 700px;
    font-size: clamp(49px, 10vw, 68px);
  }

  .hero__lead {
    max-width: 680px;
  }

  .hero__mobile-visual {
    position: relative;
    display: block;
    height: 460px;
    margin-top: 24px;
    overflow: hidden;
    border-radius: 210px 210px 25px 25px;
    background:
      radial-gradient(circle at 50% 45%, #fff 0%, #eee7ff 65%, #dbcaff 100%);
  }

  .hero__mobile-visual::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(123,85,217,.12);
    border-radius: inherit;
    content: "";
  }

  .hero__mobile-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
  }

  .hero-award {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: -35px;
  }

  .scroll-cue,
  .talent-orbit {
    display: none;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 45px;
  }

  .split-heading > p {
    max-width: 650px;
    margin: 0;
  }

  .test-teaser__inner {
    grid-template-columns: 90px 1fr;
  }

  .test-teaser__badge {
    width: 85px;
    height: 85px;
    font-size: 25px;
  }

  .test-teaser .button {
    grid-column: 1 / -1;
    width: fit-content;
    margin-left: 125px;
  }

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

  .navigator__visual {
    max-width: 620px;
    margin: 0 auto;
  }

  .navigator__photo-wrap img {
    aspect-ratio: 1.18;
  }

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

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

  .approach-grid article {
    min-height: 310px;
  }

  .award-section {
    grid-template-columns: 1fr;
  }

  .award-section__photo {
    min-height: 520px;
  }

  .award-section__photo::after {
    background: linear-gradient(180deg, transparent 65%, #171021 100%);
  }

  .award-section__content {
    max-width: none;
    padding: 35px 45px 90px;
  }

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

  .story__visual {
    max-width: 660px;
    width: 100%;
    margin: 0 auto;
  }

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

  .testimonial-wrap {
    margin-top: 55px;
  }

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

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

  .inspiration-card {
    display: grid;
    grid-template-columns: 42% 58%;
  }

  .inspiration-card__image {
    height: 100%;
    min-height: 250px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .faq-intro {
    position: static;
  }

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

  .contact__copy {
    max-width: 700px;
  }

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

  .footer__top p {
    grid-row: 2;
  }

  .footer__back {
    grid-column: 2;
    grid-row: 1 / 3;
  }

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

@media (max-width: 580px) {
  html {
    scroll-padding-top: 78px;
  }

  body {
    padding-bottom: 70px;
  }

  .shell {
    width: calc(100% - 30px);
  }

  .section {
    padding: 78px 0;
  }

  .award-bar {
    min-height: 34px;
    padding: 6px 12px;
    font-size: 9px;
    letter-spacing: .055em;
  }

  .site-header {
    height: 78px;
    padding-inline: 15px;
  }

  .brand__logo {
    width: 132px;
  }

  .brand__mark {
    width: 36px;
    height: 36px;
  }

  .brand__mark > span {
    width: 14px;
    height: 23px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  .hero__inner {
    padding-top: 54px;
    padding-bottom: 45px;
  }

  .eyebrow,
  .overline {
    font-size: 9px;
    letter-spacing: .12em;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(44px, 13.5vw, 60px);
    line-height: .98;
  }

  .hero h1 small {
    font-size: .47em;
    line-height: 1.18;
  }

  .hero__lead {
    font-size: 17px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
  }

  .hero__actions .button--primary {
    width: 100%;
  }

  .hero__actions .button--text {
    justify-content: flex-start;
  }

  .hero__proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 34px;
  }

  .hero__proof > div {
    min-width: 0;
    padding-right: 10px;
    margin-right: 10px;
  }

  .hero__proof strong {
    font-size: 19px;
  }

  .hero__proof span {
    font-size: 8px;
  }

  .hero__mobile-visual {
    height: 390px;
    margin-top: 17px;
  }

  .hero-award {
    padding: 14px;
  }

  .hero-award img {
    width: 68px;
    height: 68px;
  }

  .trust-strip {
    padding: 16px 0;
  }

  .section-heading h2,
  .story h2,
  .references h2,
  .faq-intro h2 {
    font-size: 41px;
  }

  .audience-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .audience-card__image {
    min-height: 235px;
    height: 235px;
  }

  .audience-card__body {
    padding: 29px 25px 27px;
  }

  .audience-card h3 {
    font-size: 24px;
  }

  .test-teaser {
    padding: 20px 0;
  }

  .test-teaser__inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 27px 23px;
  }

  .test-teaser__badge {
    width: 68px;
    height: 68px;
    font-size: 21px;
  }

  .test-teaser h2 {
    font-size: 31px;
  }

  .test-teaser .button {
    grid-column: auto;
    width: 100%;
    margin-left: 0;
  }

  .navigator {
    padding-top: 85px;
    padding-bottom: 85px;
  }

  .navigator__visual {
    padding-right: 0;
  }

  .navigator__photo-wrap {
    border-radius: 120px 120px 22px 22px;
  }

  .navigator__photo-wrap img {
    aspect-ratio: .9;
  }

  .navigator__mini-card {
    right: -5px;
    width: 122px;
    height: 122px;
  }

  .navigator__note {
    min-width: 160px;
  }

  .navigator h2 {
    font-size: 41px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

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

  .navigator__action .button {
    width: 100%;
  }

  .approach-grid article {
    min-height: 0;
    padding: 35px 27px;
  }

  .award-section__photo {
    min-height: 400px;
  }

  .award-section__content {
    padding: 30px 22px 75px;
  }

  .award-section h2,
  .contact__copy h2 {
    font-size: 41px;
  }

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

  .story__facts > div {
    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: center;
  }

  .story__facts span {
    margin-top: 0;
  }

  .story__visual {
    min-height: 480px;
  }

  .story__photo-main {
    width: 82%;
    height: 78%;
  }

  .story__photo-small {
    width: 51%;
    height: 39%;
  }

  .story__signature {
    font-size: 42px;
  }

  .references__top {
    gap: 27px;
  }

  .testimonial-wrap {
    margin-bottom: 48px;
  }

  .testimonial-wrap blockquote {
    font-size: 27px;
    line-height: 1.35;
  }

  .references__footer .button {
    width: 100%;
  }

  .inspiration-card {
    grid-template-columns: 1fr;
  }

  .inspiration-card__image {
    height: 230px;
    min-height: 0;
  }

  .inspiration-card__body {
    min-height: 215px;
  }

  .social-callout {
    grid-template-columns: 48px 1fr;
    padding: 19px;
  }

  .social-callout__icon {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }

  .social-callout a {
    grid-column: 1 / -1;
  }

  .faq-list summary {
    padding: 23px 0;
    font-size: 16px;
  }

  .faq-list details p {
    margin-right: 12px;
    margin-left: 0;
  }

  .contact__content {
    padding: 78px 15px;
  }

  .contact-form {
    padding: 26px 20px;
  }

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

  .footer {
    padding-top: 55px;
  }

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

  .footer__top p,
  .footer__back {
    grid-column: auto;
    grid-row: auto;
  }

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

  .footer__bottom {
    flex-direction: column;
  }

  .mobile-booking {
    position: fixed;
    z-index: 90;
    right: 10px;
    bottom: 10px;
    left: 10px;
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    background: var(--violet-dark);
    box-shadow: 0 12px 35px rgba(42,25,66,.3);
    color: #fff;
    font-size: 12px;
    font-weight: 750;
  }

  .mobile-booking svg {
    width: 18px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

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