@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/raleway-400.ttf") format("truetype");
}

@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/raleway-600.ttf") format("truetype");
}

@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/raleway-700.ttf") format("truetype");
}

@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/assets/fonts/raleway-800.ttf") format("truetype");
}

:root {
  --color-background: #f3f0ea;
  --color-background-strong: #e9e3d8;
  --color-surface: rgba(255, 255, 255, 0.93);
  --color-surface-solid: #ffffff;
  --color-text: #18202a;
  --color-muted: #586273;
  --color-line: rgba(24, 32, 42, 0.12);
  --color-dark: #101922;
  --color-accent: #d6a35b;
  --color-accent-strong: #d76b28;
  --color-accent-soft: rgba(214, 163, 91, 0.18);
  --shadow-lg: 0 24px 72px rgba(11, 18, 28, 0.18);
  --shadow-sm: 0 14px 36px rgba(11, 18, 28, 0.08);
  --radius-xl: 32px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --content-width: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(214, 163, 91, 0.12), transparent 28%),
    linear-gradient(180deg, #efebe4 0%, #fbfaf8 100%);
  color: var(--color-text);
  font-family: "Raleway", "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

main {
  display: block;
}

.container {
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 0 auto;
}

.page {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--color-line);
  background: rgba(248, 246, 241, 0.92);
  backdrop-filter: blur(16px);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.15rem 0;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  min-height: 3rem;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.35rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0;
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--color-text);
}

.nav-link[aria-current="page"] {
  padding-bottom: calc(0.5rem - 2px);
  border-bottom: 2px solid var(--color-accent-strong);
}

.hero,
.subhero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::before,
.subhero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(8, 13, 20, 0.82), rgba(8, 13, 20, 0.28)),
    var(--hero-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.04);
}

.hero::after,
.subhero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10rem;
  background: linear-gradient(180deg, transparent, rgba(16, 25, 34, 0.58));
}

.hero {
  display: flex;
  align-items: flex-end;
  min-height: clamp(480px, 74vh, 760px);
  background: var(--color-dark);
}

.hero__content,
.subhero__content {
  position: relative;
  z-index: 1;
}

.hero__content {
  padding: clamp(4rem, 10vw, 7rem) 0;
  max-width: 44rem;
}

.hero__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  line-height: 1.04;
}

.hero__copy,
.subhero__copy {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-top: 2rem;
}

.subhero {
  padding: 4rem 0 3rem;
  background: linear-gradient(140deg, rgba(16, 25, 34, 0.98), rgba(30, 62, 98, 0.88));
}

.subhero__content {
  display: grid;
  gap: 0.9rem;
  max-width: 48rem;
}

.subhero__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.3rem, 4.4vw, 4rem);
  line-height: 1.08;
}

.eyebrow {
  margin: 0;
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section {
  padding: 5rem 0;
}

.section--soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.7));
}

.section-intro {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.section-heading {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.1;
}

.section-copy {
  max-width: 62rem;
  margin: 0;
  color: var(--color-muted);
  font-size: 1.02rem;
}

.split-stack {
  display: grid;
  gap: 1.5rem;
}

.split-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  box-shadow: var(--shadow-lg);
}

.split-card:nth-child(even) {
  grid-template-columns: 0.95fr 1.05fr;
}

.split-card:nth-child(even) .split-card__media {
  order: 2;
}

.split-card:nth-child(even) .split-card__body {
  order: 1;
}

.split-card__media {
  min-height: 100%;
  background: var(--color-background-strong);
}

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

.split-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.card-kicker {
  margin: 0;
  color: var(--color-accent-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.card-title {
  margin: 0;
  font-size: clamp(1.55rem, 2.8vw, 2.3rem);
  line-height: 1.15;
}

.card-text {
  margin: 0;
  color: var(--color-muted);
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.9rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.button--light {
  background: #ffffff;
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}

.button--light:hover {
  background: #fff5e9;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.62);
  color: #ffffff;
}

.button--ghost:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.button--dark {
  background: var(--color-dark);
  color: #ffffff;
}

.button--dark:hover {
  background: #1f2c3b;
}

.button--outline {
  border-color: var(--color-text);
  color: var(--color-text);
}

.button--outline:hover {
  background: var(--color-text);
  color: #ffffff;
}

.button--muted {
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.button--muted:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.5rem;
}

.contact-card {
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  box-shadow: var(--shadow-lg);
}

.contact-card--highlight {
  overflow: hidden;
  padding: 0;
}

.contact-card__panel {
  padding: 1.65rem 1.75rem 1.9rem;
}

.contact-image {
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(145deg, rgba(16, 25, 34, 0.98), rgba(64, 115, 171, 0.78));
}

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

.contact-card h2,
.contact-card h3 {
  margin: 0;
}

.contact-card p {
  margin: 0.8rem 0 0;
  color: var(--color-muted);
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.info-block {
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
  background: rgba(16, 25, 34, 0.04);
}

.info-block h3 {
  color: var(--color-text);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.info-block p,
.info-block ul {
  margin: 0.5rem 0 0;
  color: var(--color-muted);
}

.info-block ul {
  padding-left: 1rem;
}

.support-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.support-links .button {
  min-width: 12rem;
}

.form-grid,
.form-row {
  display: grid;
  gap: 1rem;
}

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

.field-label {
  display: grid;
  gap: 0.45rem;
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 700;
}

.field {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(24, 32, 42, 0.14);
  border-radius: 18px;
  background: #ffffff;
  color: var(--color-text);
}

.field:focus {
  outline: none;
  border-color: var(--color-accent-strong);
  box-shadow: 0 0 0 4px rgba(215, 107, 40, 0.12);
}

.field--textarea {
  min-height: 180px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.form-status[data-state="warning"] {
  color: #b45309;
}

.form-status[data-state="success"] {
  color: #047857;
}

.value-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.value-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  color: var(--color-muted);
}

.value-list__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  min-height: 2rem;
  border-radius: 999px;
  background: var(--color-accent-soft);
  color: var(--color-accent-strong);
  font-size: 0.85rem;
  font-weight: 800;
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.9);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 2rem 0 3rem;
}

.footer-brand {
  margin: 0;
  color: var(--color-text);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-copy {
  margin: 0;
  color: var(--color-muted);
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  width: min(calc(100% - 2rem), 470px);
  padding: 1.25rem;
  border-radius: 24px;
  background: rgba(12, 18, 27, 0.96);
  color: #ffffff;
  box-shadow: var(--shadow-lg);
}

.cookie-banner h2 {
  margin: 0;
  font-size: 1.1rem;
}

.cookie-banner p {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cookie-banner.is-hidden {
  display: none;
}

.is-hidden {
  display: none !important;
}

.chat-widget {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 45;
}

.chat-launcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-width: 4rem;
  min-height: 4rem;
  padding: 0 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffb24e, #da6e2a 55%, #2d74b8);
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(16, 25, 34, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.chat-widget--open .chat-launcher {
  opacity: 0;
  transform: translateY(10px) scale(0.9);
  pointer-events: none;
}

.chat-launcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(16, 25, 34, 0.32);
}

.chat-launcher__pulse {
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 2px solid rgba(215, 107, 40, 0.26);
  animation: chatPulse 2.8s ease-out infinite;
}

.chat-launcher__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
}

.chat-launcher__dots {
  display: inline-flex;
  gap: 0.22rem;
}

.chat-launcher__dots span {
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 999px;
  background: currentColor;
  animation: chatDots 1.1s infinite ease-in-out;
}

.chat-launcher__dots span:nth-child(2) {
  animation-delay: 0.12s;
}

.chat-launcher__dots span:nth-child(3) {
  animation-delay: 0.24s;
}

.chat-launcher__label {
  position: relative;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 1rem);
  width: min(24rem, calc(100vw - 2rem));
  max-height: min(44rem, 76vh);
  overflow: hidden;
  border: 1px solid rgba(24, 32, 42, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 26px 72px rgba(16, 25, 34, 0.28);
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.chat-widget--open .chat-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chat-widget--open .chat-launcher__pulse {
  animation-play-state: paused;
  opacity: 0;
}

.chat-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.1rem 1rem;
  background: linear-gradient(135deg, #101922, #27486d);
  color: #ffffff;
}

.chat-panel__eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.chat-panel__title {
  margin: 0.3rem 0 0;
  font-size: 1.35rem;
  line-height: 1.15;
}

.chat-panel__subtitle {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.chat-panel__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 1.2rem;
  line-height: 1;
}

.chat-panel__body {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.chat-helper {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.93rem;
}

.chat-intake-form,
.chat-compose {
  display: grid;
  gap: 0.85rem;
}

.chat-field {
  display: grid;
  gap: 0.35rem;
}

.chat-field span {
  color: var(--color-text);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.chat-input {
  width: 100%;
  padding: 0.86rem 0.95rem;
  border: 1px solid rgba(24, 32, 42, 0.14);
  border-radius: 16px;
  background: #ffffff;
  color: var(--color-text);
}

.chat-input:focus {
  outline: none;
  border-color: var(--color-accent-strong);
  box-shadow: 0 0 0 4px rgba(215, 107, 40, 0.12);
}

.chat-actions,
.chat-session__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.chat-compose .chat-actions {
  justify-content: flex-end;
}

.chat-session__meta {
  align-items: flex-start;
  margin-bottom: 0.85rem;
}

.chat-session__name {
  margin: 0;
  color: var(--color-text);
  font-size: 0.94rem;
  font-weight: 800;
}

.chat-status-pill {
  display: inline-flex;
  margin-top: 0.35rem;
  padding: 0.32rem 0.6rem;
  border-radius: 999px;
  background: rgba(16, 25, 34, 0.08);
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chat-link-button {
  padding: 0;
  color: var(--color-accent-strong);
  font-size: 0.8rem;
  font-weight: 800;
}

.chat-send-button {
  min-height: 2.55rem;
  padding: 0.68rem 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.chat-send-button:disabled {
  opacity: 0.72;
  cursor: wait;
}

.chat-session.is-hidden,
.chat-intake.is-hidden {
  display: none;
}

.chat-transcript {
  display: grid;
  gap: 0.75rem;
  max-height: 18rem;
  padding-right: 0.2rem;
  overflow-y: auto;
}

.chat-message {
  display: grid;
  gap: 0.3rem;
}

.chat-message--assistant {
  justify-items: start;
}

.chat-message--user {
  justify-items: end;
}

.chat-message__author {
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.chat-message__meta-row {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.chat-bubble {
  max-width: 92%;
  padding: 0.82rem 0.95rem;
  border-radius: 18px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.chat-message--assistant .chat-bubble {
  background: rgba(16, 25, 34, 0.06);
  color: var(--color-text);
  border-top-left-radius: 8px;
}

.chat-message--user .chat-bubble {
  background: linear-gradient(135deg, #f29a44, #d76b28);
  color: #ffffff;
  border-top-right-radius: 8px;
}

.chat-message__time {
  color: var(--color-muted);
  font-size: 0.72rem;
}

.chat-message__delivery {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  color: #1c8d54;
  opacity: 0.76;
  font-size: 0.72rem;
  font-weight: 800;
}

.chat-message__tick {
  font-size: 0.84rem;
  line-height: 1;
}

.chat-message__delivery-text {
  color: var(--color-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
}

.chat-status-text {
  min-height: 0;
  margin: 0;
  color: var(--color-muted);
  font-size: 0.84rem;
}

.chat-status-text[data-state="error"] {
  color: #b42318;
}

.chat-status-text[data-state="success"] {
  color: #047857;
}

.chat-draft-note {
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  background: rgba(16, 25, 34, 0.05);
  color: var(--color-muted);
  font-size: 0.84rem;
}

@keyframes chatPulse {
  0% {
    opacity: 0.9;
    transform: scale(0.96);
  }

  70% {
    opacity: 0;
    transform: scale(1.2);
  }

  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

@keyframes chatDots {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.58;
  }

  40% {
    transform: translateY(-3px);
    opacity: 1;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .header-inner {
    justify-content: flex-end;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
    padding: 1rem 1.2rem;
    border: 1px solid var(--color-line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .nav-link {
    width: 100%;
  }

  .split-card,
  .split-card:nth-child(even),
  .contact-layout,
  .form-row {
    grid-template-columns: 1fr;
  }

  .split-card:nth-child(even) .split-card__media,
  .split-card:nth-child(even) .split-card__body {
    order: initial;
  }

  .hero__actions,
  .card-actions,
  .form-actions,
  .support-links,
  .cookie-banner__actions {
    flex-direction: column;
  }

  .button,
  .support-links .button {
    width: 100%;
  }

  .chat-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .chat-compose .chat-actions {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }

  .chat-send-button {
    width: auto;
  }

  .footer-inner {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .header-inner {
    padding: 0.9rem 0;
  }

  .hero__content,
  .subhero {
    padding-top: 3.4rem;
  }

  .section {
    padding: 4rem 0;
  }

  .chat-widget {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .chat-panel {
    width: min(24rem, calc(100vw - 1.5rem));
    max-height: 78vh;
  }

  .chat-launcher {
    min-width: 3.75rem;
    min-height: 3.75rem;
    padding: 0 1rem;
  }

  .chat-launcher__label {
    display: none;
  }

  .cookie-banner {
    right: 0.75rem;
    bottom: 0.75rem;
    width: calc(100% - 1.5rem);
  }
}
