@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@1,700&family=Merriweather:wght@400;700;900&display=block");

:root {
  --page: #ffffff;
  --text: #202124;
  --muted: #5f6368;
  --line: #dadce0;
  --accent: #992ECD;
  --accent-2: #f28c28;
  --soft: #f8f4fb;
  --title-font: "Merriweather", Georgia, "Times New Roman", serif;
  --max: 960px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: #5f1fb0;
}

.inline-chat-link {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #5f1fb0;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.inline-chat-link:hover {
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: #fff;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, padding-bottom 430ms cubic-bezier(.16, 1, .3, 1);
}

.site-header.is-scrolled {
  border-bottom-color: #000;
  background: #000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.site-header.is-scrolled .nav a,
.site-header.is-scrolled .nav button {
  color: #f1f1f1;
}

.site-header.is-scrolled .nav a[aria-current="page"],
.site-header.is-scrolled .nav button[aria-expanded="true"] {
  color: #992ECD;
}

.site-header.is-scrolled .nav-overflow-toggle[aria-expanded="true"],
.site-header.is-scrolled .nav-overflow.has-current-overflow .nav-overflow-toggle {
  color: #992ECD;
}

.site-header.is-scrolled .nav-overflow-menu,
.site-header.is-scrolled .nav-mobile-menu {
  border-color: #2a2a2a;
  background: #111;
}

.site-header.is-scrolled .nav-overflow-menu a,
.site-header.is-scrolled .nav-mobile-menu a {
  color: #f1f1f1;
}

.site-header.is-scrolled .nav-overflow-menu a:hover,
.site-header.is-scrolled .nav-overflow-menu a[aria-current="page"],
.site-header.is-scrolled .nav-mobile-menu a:hover,
.site-header.is-scrolled .nav-mobile-menu a[aria-current="page"] {
  background: #252525;
  color: #fff;
}

.site-header.is-scrolled .nav-indicator {
  background: #992ECD;
}

.topbar {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  width: 100%;
  margin: 0 auto;
  padding: 8px 20px;
  min-height: 58px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  text-decoration: none;
  flex: 0 1 auto;
  min-width: 0;
}

.brand-wordmark {
  display: block;
  width: 108px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
  min-width: 108px;
}

.brand-mark {
  display: block;
  width: 44px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 auto;
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  flex: 0 1 auto;
  min-width: 0;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.nav a,
.nav button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 32px;
  padding: 5px 9px;
  border-bottom: 3px solid transparent;
  color: #3c4043;
  font-family: "Merriweather", Georgia, serif;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  cursor: pointer;
  transition: color 180ms ease;
}

.nav a[aria-current="page"],
.nav button[aria-expanded="true"] {
  color: var(--accent);
}

.nav-overflow-toggle[aria-expanded="true"],
.nav-overflow.has-current-overflow .nav-overflow-toggle {
  color: var(--accent);
}

.nav-link.is-overflowed {
  display: none;
}

.nav-overflow,
.nav-mobile {
  position: relative;
  display: none;
  flex: 0 0 auto;
}

.nav-overflow.is-visible {
  display: block;
}

.nav-overflow-toggle,
.nav-mobile-toggle {
  width: 36px;
  padding-left: 0;
  padding-right: 0;
}

.nav-overflow-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 0;
  line-height: 0;
}

.nav-overflow-toggle span {
  display: block;
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
}

.nav-mobile-toggle {
  position: relative;
}

.nav-mobile-toggle span {
  position: absolute;
  left: 50%;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
  transition: top 190ms ease, opacity 140ms ease, transform 220ms cubic-bezier(.2, .8, .2, 1);
}

.nav-mobile-toggle span:nth-child(1) {
  top: 10px;
}

.nav-mobile-toggle span:nth-child(2) {
  top: 15px;
}

.nav-mobile-toggle span:nth-child(3) {
  top: 20px;
}

.nav-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 15px;
  transform: translateX(-50%) rotate(45deg);
}

.nav-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) scaleX(.35);
}

.nav-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 15px;
  transform: translateX(-50%) rotate(-45deg);
}

.nav-overflow-menu,
.nav-mobile-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  gap: 2px;
  min-width: 190px;
  padding: 6px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(.86, .82);
  transform-origin: top right;
  transition: opacity 220ms ease, transform 360ms cubic-bezier(.16, 1, .3, 1);
}

.nav-overflow-menu {
  transform-origin: top center;
}

.nav-overflow-menu.is-open,
.nav-mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.nav-overflow-menu a,
.nav-mobile-menu a {
  position: relative;
  justify-content: flex-start;
  width: 100%;
  min-height: 34px;
  border-bottom: 0;
  color: #3c4043;
  transition: background-color 120ms ease, color 120ms ease;
}

.nav-mobile-menu a {
  min-height: 43px;
  opacity: 0;
  transform: translateX(42px);
  transition: opacity 220ms ease, transform 360ms cubic-bezier(.16, 1, .3, 1), background-color 120ms ease, color 120ms ease;
}

.nav-mobile-menu.is-open a {
  opacity: 1;
  transform: translateX(0);
}

.nav-mobile-menu.is-open a:nth-child(1) { transition-delay: 70ms; }
.nav-mobile-menu.is-open a:nth-child(2) { transition-delay: 100ms; }
.nav-mobile-menu.is-open a:nth-child(3) { transition-delay: 130ms; }
.nav-mobile-menu.is-open a:nth-child(4) { transition-delay: 160ms; }
.nav-mobile-menu.is-open a:nth-child(5) { transition-delay: 190ms; }
.nav-mobile-menu.is-open a:nth-child(6) { transition-delay: 220ms; }
.nav-mobile-menu.is-open a:nth-child(7) { transition-delay: 250ms; }
.nav-mobile-menu.is-open a:nth-child(8) { transition-delay: 280ms; }
.nav-mobile-menu.is-open a:nth-child(9) { transition-delay: 310ms; }

.nav-mobile-menu:not(.is-open) a {
  transition-delay: 0ms;
}

.nav-overflow-menu a[hidden] {
  display: none;
}

.nav-overflow-menu a::after,
.nav-mobile-menu a::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 3px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0;
  transform: scaleX(.7);
  transform-origin: left center;
  transition: opacity 130ms ease, transform 160ms cubic-bezier(.2, .8, .2, 1);
}

.nav-overflow-menu a:hover::after,
.nav-mobile-menu a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-overflow-menu a:hover,
.nav-overflow-menu a[aria-current="page"],
.nav-mobile-menu a:hover,
.nav-mobile-menu a[aria-current="page"] {
  background: #f8f0fc;
  color: #111;
}

.nav-indicator {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: var(--accent);
  opacity: 0;
  pointer-events: none;
  transform: translateX(0);
  transition: transform 280ms cubic-bezier(.2, .8, .2, 1), width 280ms cubic-bezier(.2, .8, .2, 1), opacity 160ms ease, background-color 180ms ease;
}

.nav-indicator-readying {
  transition: none;
}

.hero {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(270deg, #fff 0%, #f0d6ff 58%, #c16bea 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 36px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 46px 28px;
}

.hero h1 {
  margin: 0 0 14px;
  font-family: var(--title-font);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.08;
}

.hero p {
  max-width: 680px;
  margin: 0;
  color: #3c4043;
  font-size: 18px;
}

.hero-logo {
  width: 100%;
  aspect-ratio: 1.3;
  object-fit: contain;
}

.main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 38px 28px 56px;
}

.content h2 {
  margin: 34px 0 12px;
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.25;
}

.content h3 {
  margin: 26px 0 8px;
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.3;
}

.content p {
  margin: 0 0 16px;
}

.lead {
  font-size: 18px;
}

.home-about {
  display: block;
}

.home-about::after {
  display: table;
  clear: both;
  content: "";
}

.home-about h2 {
  margin-top: 0;
}

.video-embed.home-about-video {
  float: right;
  width: min(46.5%, 420px);
  margin: 26px 0 20px 34px;
}

.notice {
  margin: 22px 0;
  padding: 16px 18px;
  border-left: 5px solid var(--accent-2);
  background: #fff7ed;
}

.button-section {
  margin: 32px 0 6px;
  text-align: center;
}

.content .button-section h2 {
  margin: 0 0 14px;
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 22px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid #3c4043;
  background: #fff;
  color: #202124;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 20px 0 34px;
}

.service-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(60, 64, 67, 0.08);
  color: inherit;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 180ms ease, transform 180ms cubic-bezier(.2, .8, .2, 1);
}

.service-card-link {
  cursor: pointer;
}

.service-card-link:hover,
.service-card-link:focus-visible {
  border-color: #c56ee8;
  box-shadow: 0 14px 30px rgba(153, 46, 205, 0.17);
  transform: translateY(-3px);
}

.service-card-link:focus-visible {
  outline: 3px solid rgba(153, 46, 205, 0.3);
  outline-offset: 3px;
}

.service-card-link:hover h3,
.service-card-link:focus-visible h3 {
  color: var(--accent);
}

.service-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.service-card-image-contain {
  object-fit: contain;
  padding: 18px;
  background: #fbf8fd;
}

.service-card-body {
  padding: 15px 16px 18px;
}

.content .service-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.service-card p {
  margin-bottom: 0;
  color: #3c4043;
  font-size: 15px;
  line-height: 1.5;
}

.article {
  position: relative;
  margin: 0 0 28px;
  padding: 22px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  box-shadow: 0 8px 22px rgba(60, 64, 67, 0.08);
  overflow: hidden;
}

.article-with-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 320px);
  column-gap: 28px;
  align-items: start;
}

.article-with-media time,
.article-with-media h2,
.article-with-media p,
.article-with-media .article-list {
  grid-column: 1;
}

.article time {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  margin: 0 0 10px;
  padding: 4px 10px;
  border: 1px solid #e9d4f2;
  border-radius: 999px;
  background: #fbf3ff;
  color: #6f1f93;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.content .article h2 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.25;
}

.article p {
  max-width: 76ch;
}

.article p:last-child,
.article-list:last-child {
  margin-bottom: 0;
}

.article-image {
  margin: 18px 0 6px;
}

.article-image figure {
  margin: 0;
}

.article-media-stack {
  grid-column: 2;
  grid-row: 1 / span 20;
  width: 100%;
  margin: 0;
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.article-media-stack figure {
  margin: 0 0 16px;
}

.article-image img,
.article-media-stack img {
  display: block;
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.article-media-stack img {
  max-height: 240px;
}

.article-media-stack img.article-image-contain {
  max-height: none;
  object-fit: contain;
}

.article-image figcaption,
.article-media-stack figcaption {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.article-video {
  width: 100%;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #000;
  overflow: hidden;
}

.video-embed.article-video {
  margin: 0;
}

.article-video-figure {
  margin: 0 0 16px;
}

.article-list {
  max-width: 76ch;
  margin: 0 0 16px;
}

.list {
  padding-left: 22px;
}

.member-list {
  display: block;
  margin: 14px 0 28px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  list-style: none;
  background: #fff;
}

.member-list li {
  position: relative;
  padding: 13px 16px 13px 38px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.member-list li:last-child {
  border-bottom: 0;
}

.member-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 1.35em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.member-list-staff li::before {
  background: var(--accent-2);
}

.member-list-members li::before {
  background: #188038;
}

.member-list li:nth-child(even) {
  background: #fbf8fd;
}

.member-list li:hover {
  background: #f8f0fc;
}

.ogo-intro {
  max-width: 840px;
  margin: 0 0 36px;
}

.ogo-profiles {
  display: grid;
  gap: 36px;
}

.ogo-profile {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.ogo-profile-image {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #fff;
}

.ogo-profile-body {
  padding-top: 10px;
}

.content .ogo-profile-role {
  margin: 0 0 4px;
  font-family: var(--title-font);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  line-height: 1.02;
}

.content .ogo-profile-name {
  margin: 0 0 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(26px, 2.3vw, 36px);
  font-weight: 400;
  line-height: 1.12;
}

.ogo-profile-color,
.ogo-profile-detail {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.35;
}

.ogo-profile-color {
  margin-bottom: 10px;
}

.ogo-color {
  font-family: "Lato", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
}

.ogo-color-purple {
  color: #3f238b;
}

.ogo-color-orange {
  color: #f28c28;
}

.ogo-color-red {
  color: #e21b1b;
}

.ogo-color-gold {
  color: #f2b51b;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.image-gallery figure {
  margin: 0;
}

.image-gallery img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border: 1px solid var(--line);
  background: #fff;
}

.image-gallery figcaption {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
}

.presskit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin: 22px 0 34px;
}

.presskit-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.presskit-card-head h3,
.presskit-audio h3 {
  margin: 0 0 4px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.25;
}

.presskit-card-head p,
.presskit-meta,
.presskit-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.presskit-preview {
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.presskit-preview img {
  display: block;
  max-width: 100%;
  max-height: 150px;
  object-fit: contain;
}

.presskit-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid #1557b0;
  border-radius: 8px;
  background: #1a73e8;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.presskit-download:hover {
  background: #1557b0;
}

.presskit-audio-list {
  display: grid;
  gap: 22px;
  margin: 20px 0 34px;
}

.presskit-audio {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 22px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.presskit-audio-copy p {
  margin-bottom: 10px;
}

.presskit-audio-embed {
  display: grid;
  gap: 12px;
}

.presskit-audio-embed iframe {
  width: 100%;
  height: 82px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.video-embed {
  margin: 26px 0;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-embed-aside {
  float: right;
  width: min(42%, 420px);
  margin: 8px 0 20px 28px;
}

.widget-shell {
  margin: 28px 0;
  border: 1px solid var(--line);
  background: #fff;
}

.contact-service {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  gap: 34px;
  align-items: start;
}

.contact-service-copy h2 {
  margin-top: 0;
}

.contact-service-small {
  color: var(--muted);
  font-size: 14px;
}

.contact-chat-panel {
  position: sticky;
  top: 82px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.contact-chat-panel .omaservice-frame {
  height: min(760px, calc(100vh - 104px));
  min-height: 620px;
}

.omaservice-frame {
  display: block;
  width: 100%;
  height: min(740px, calc(100vh - 96px));
  min-height: 560px;
  border: 0;
  background: #fff;
}

.floating-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  justify-items: end;
  gap: 10px;
  pointer-events: none;
}

.floating-chat-panel {
  position: relative;
  width: min(390px, calc(100vw - 32px));
  height: min(620px, calc(100vh - 120px));
  overflow: hidden;
  border: 1px solid #202124;
  background: #111111;
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(14px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 260ms ease, transform 260ms cubic-bezier(.2, .85, .25, 1), visibility 0s linear 260ms;
}

.floating-chat.is-open .floating-chat-panel,
.floating-chat.is-panel-open .floating-chat-panel {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
}

.floating-chat-maximize {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 4px;
  top: -2px;
  height: 37px;
  width: 37px;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: #111111;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.7);
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
}

.floating-chat.is-max-visible .floating-chat-maximize {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  visibility: visible;
  transition-delay: 0s;
}

.floating-chat-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #111111;
}

.floating-chat:not(.is-open):not(.is-panel-open) .floating-chat-frame {
  pointer-events: none;
}

.floating-chat-actions {
  position: relative;
  width: 106px;
  height: 72px;
  pointer-events: auto;
}

.floating-chat-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  width: 62px;
  min-width: 62px;
  height: 62px;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: #111111;
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.36);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  overflow: visible;
  transform: scale(1);
  transform-origin: center;
  transition: transform 220ms cubic-bezier(.2, .8, .2, 1), box-shadow 180ms ease;
}

.floating-chat-toggle img {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
  opacity: 1;
  transform: scale(1) rotate(0deg);
  transition: opacity 160ms ease, transform 180ms ease;
}

.floating-chat-toggle .close-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  opacity: 0;
  transform: scale(0.65) rotate(-45deg);
  transition: opacity 160ms ease, transform 180ms ease;
}

.floating-chat-toggle::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #fff;
  opacity: 0;
  pointer-events: none;
}

.floating-chat-badge {
  position: absolute;
  right: 0;
  top: 0;
  display: none;
  width: 23px;
  height: 23px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  font-size: 10.7px;
  font-weight: 800;
  line-height: 19px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.35);
  transform: scale(0.82);
  transform-origin: center;
}

.floating-chat-badge.visible {
  display: block;
  animation: floatingChatBadgeIn 180ms cubic-bezier(.22, .68, 0, 1.2) both;
}

@keyframes floatingChatBadgeIn {
  from {
    opacity: 0;
    transform: scale(0.45);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.floating-chat.is-open .floating-chat-toggle,
.floating-chat.is-closing .floating-chat-toggle {
  width: 62px;
  min-width: 62px;
  height: 62px;
  padding: 0;
  transform: scale(0.84);
}

.floating-chat.is-pressing:not(.is-open):not(.is-closing) .floating-chat-toggle {
  transform: scale(0.86);
  transition-duration: 90ms;
}

.floating-chat.is-pressing.is-open .floating-chat-toggle,
.floating-chat.is-pressing.is-closing .floating-chat-toggle {
  transform: scale(0.72);
  transition-duration: 90ms;
}

.floating-chat.is-open .floating-chat-toggle img,
.floating-chat.is-closing .floating-chat-toggle img {
  opacity: 0;
  transform: scale(0.65) rotate(45deg);
}

.floating-chat.is-open .floating-chat-toggle .close-label,
.floating-chat.is-closing .floating-chat-toggle .close-label {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.floating-chat.is-release-bouncing:not(.is-open):not(.is-closing) .floating-chat-toggle {
  animation: chatToggleReleaseClosed 210ms cubic-bezier(.2, .8, .2, 1);
}

.floating-chat.is-release-bouncing.is-open .floating-chat-toggle,
.floating-chat.is-release-bouncing.is-closing .floating-chat-toggle {
  animation: chatToggleReleaseOpen 210ms cubic-bezier(.2, .8, .2, 1);
}

.floating-chat-toggle.notification-blink {
  animation: chatToggleNotifyShake 720ms ease-in-out;
}

@keyframes chatToggleNotifyShake {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  15% { transform: translateX(-3px) rotate(-4deg); }
  30% { transform: translateX(3px) rotate(4deg); }
  45% { transform: translateX(-2px) rotate(-2.5deg); }
  60% { transform: translateX(2px) rotate(2.5deg); }
  75% { transform: translateX(-1px) rotate(-1deg); }
  90% { transform: translateX(1px) rotate(1deg); }
}

@keyframes chatToggleReleaseClosed {
  0% {
    transform: scale(0.86);
  }
  58% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes chatToggleReleaseOpen {
  0% {
    transform: scale(0.72);
  }
  58% {
    transform: scale(0.91);
  }
  100% {
    transform: scale(0.84);
  }
}

@media (max-width: 520px) {
  .floating-chat {
    right: 12px;
    bottom: 12px;
  }

  .floating-chat-panel {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: calc(78px + env(safe-area-inset-bottom, 0px));
    width: 100vw;
    height: auto;
    border: 0;
    border-radius: 0;
    transform: translateY(18px);
    transform-origin: center;
    z-index: 0;
  }

  .floating-chat.is-open .floating-chat-panel,
  .floating-chat.is-panel-open .floating-chat-panel {
    transform: translateY(0);
  }

  .floating-chat-actions {
    z-index: 2;
  }

  .floating-chat-maximize {
    display: none !important;
  }

  .floating-chat.is-open .floating-chat-actions,
  .floating-chat.is-panel-open .floating-chat-actions,
  .floating-chat.is-closing .floating-chat-actions {
    position: fixed;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    width: calc(100vw - 24px);
    height: 54px;
  }

  .floating-chat.is-open .floating-chat-toggle,
  .floating-chat.is-panel-open .floating-chat-toggle,
  .floating-chat.is-closing .floating-chat-toggle {
    right: 0;
    top: 0;
    width: 100%;
    min-width: 0;
    height: 54px;
    border-radius: 999px;
    background: #000;
    transform: none;
  }

  .floating-chat.is-pressing.is-open .floating-chat-toggle,
  .floating-chat.is-pressing.is-panel-open .floating-chat-toggle,
  .floating-chat.is-pressing.is-closing .floating-chat-toggle {
    transform: scale(0.98);
  }

  .floating-chat.is-release-bouncing.is-open .floating-chat-toggle,
  .floating-chat.is-release-bouncing.is-panel-open .floating-chat-toggle,
  .floating-chat.is-release-bouncing.is-closing .floating-chat-toggle {
    animation: none;
  }

  .floating-chat.is-open .floating-chat-toggle img,
  .floating-chat.is-panel-open .floating-chat-toggle img,
  .floating-chat.is-closing .floating-chat-toggle img {
    opacity: 0;
    transform: scale(0.65) rotate(45deg);
  }

  .floating-chat.is-open .floating-chat-toggle .close-label,
  .floating-chat.is-panel-open .floating-chat-toggle .close-label,
  .floating-chat.is-closing .floating-chat-toggle .close-label {
    font-size: 0;
    opacity: 1;
    transform: none;
  }

  .floating-chat.is-open .floating-chat-toggle .close-label::after,
  .floating-chat.is-panel-open .floating-chat-toggle .close-label::after,
  .floating-chat.is-closing .floating-chat-toggle .close-label::after {
    content: "Sluiten";
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
  }
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 28px;
}

@media (min-width: 1180px) {
  :root {
    --max: min(1240px, calc(100vw - 160px));
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 52px;
  }

  .article-with-media {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    column-gap: 42px;
  }

  .article-media-stack img {
    max-height: 260px;
  }
}

@media (max-width: 820px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-logo {
    display: none;
  }

  .video-embed-aside {
    float: none;
    width: 100%;
    margin: 26px 0;
  }

  .article {
    padding: 18px 16px 20px;
  }

  .content .article h2 {
    font-size: 22px;
  }

  .article-media-stack {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    margin: 18px 0 20px;
    padding-left: 0;
    border-left: 0;
  }

  .article-with-media {
    display: block;
  }

  .article-media-stack img {
    max-height: 420px;
  }

  .home-about {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .home-about-copy {
    order: 1;
  }

  .video-embed.home-about-video {
    float: none;
    order: 2;
    width: 100%;
    margin: 10px 0 24px;
  }

  .ogo-profile {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .ogo-profile-image {
    max-width: 360px;
  }

  .ogo-profile-body {
    padding-top: 0;
  }

  .presskit-audio {
    grid-template-columns: 1fr;
  }

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

  .contact-chat-panel {
    position: static;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    overflow: hidden;
    --mobile-menu-height: 421px;
  }

  .site-header.is-mobile-menu-open {
    padding-bottom: var(--mobile-menu-height);
  }

  .brand-wordmark {
    width: 108px;
    min-width: 108px;
  }

  .nav > .nav-link,
  .nav-overflow {
    display: none !important;
  }

  .nav-mobile {
    display: block;
    position: static;
  }

  .nav {
    position: static;
    flex: 0 0 auto;
  }

  .nav-mobile-menu {
    position: absolute;
    left: 0;
    right: auto;
    top: 58px;
    width: 100%;
    min-width: 0;
    max-width: none;
    padding: 8px 14px 14px;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    box-shadow: none;
    transform: translateY(-18px);
    transform-origin: top center;
    transition: opacity 180ms ease, transform 430ms cubic-bezier(.16, 1, .3, 1);
  }

  .nav-mobile-menu a {
    justify-content: center;
    text-align: center;
    transform: translateY(-14px) scale(.98);
  }
}

@media (max-width: 520px) {
  .topbar,
  .hero-inner,
  .main,
  .footer-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .topbar {
    gap: 10px;
  }

  .brand-mark {
    width: 40px;
    height: 31px;
  }

  .brand-wordmark {
    height: 38px;
  }

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