:root {
  --bg: #f8f3ee;
  --bg-soft: #efe1d9;
  --panel: rgba(255, 255, 255, 0.64);
  --panel-strong: rgba(255, 255, 255, 0.9);
  --ink: #1b1412;
  --ink-soft: rgba(27, 20, 18, 0.7);
  --rose: #a84249;
  --rose-deep: #7d3036;
  --rose-soft: #d5a7a8;
  --gold: #cdb08d;
  --champagne: #f4e8dc;
  --line: rgba(31, 24, 22, 0.13);
  --shadow: 0 30px 80px rgba(27, 20, 18, 0.18);
  --radius: 30px;
  --container: min(1200px, calc(100vw - 40px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top, rgba(180, 137, 112, 0.18), transparent 28%),
    radial-gradient(circle at 80% 12%, rgba(168, 66, 73, 0.12), transparent 22%),
    var(--bg);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.08), transparent 30%, rgba(255,255,255,0.04)),
    repeating-linear-gradient(
      120deg,
      rgba(255,255,255,0.02) 0,
      rgba(255,255,255,0.02) 1px,
      transparent 1px,
      transparent 7px
    );
  mix-blend-mode: screen;
  opacity: 0.8;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.24), transparent 36%);
  opacity: 0.8;
}

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

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

button, input {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.72rem;
  letter-spacing: 0.28rem;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 700;
}

.eyebrow--soft {
  color: var(--ink-soft);
}

h1, h2, h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3.5rem, 6vw, 8rem);
  line-height: 0.82;
}

h2 {
  font-size: clamp(2.8rem, 4vw, 4.4rem);
}

h3 {
  font-size: clamp(2rem, 2.5vw, 2.8rem);
}

p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 1rem;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(248, 243, 238, 0.72);
  border-bottom: 1px solid rgba(27, 20, 18, 0.08);
  box-shadow: 0 12px 32px rgba(27,20,18,0.02);
}

.nav-wrap {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(180px, 32vw);
  filter: drop-shadow(0 8px 14px rgba(27,20,18,0.08));
}

.brand img {
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.8rem;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.main-nav a {
  position: relative;
  transition: color 0.25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -8px 0;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.main-nav a:hover {
  color: var(--ink);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.74rem;
  box-shadow: 0 18px 40px rgba(168, 66, 73, 0.28);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -18%;
  width: 38%;
  height: 160%;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.38), transparent 80%);
  transform: rotate(18deg);
  animation: shimmer 4s ease-in-out infinite;
}

.button:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 24px 44px rgba(168, 66, 73, 0.28);
}

.button--small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.68rem;
}

.button--ghost {
  background: rgba(255,255,255,0.12);
  border-color: rgba(27, 20, 18, 0.18);
  color: var(--ink);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 770px;
  padding: 90px 0 60px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(168, 66, 73, 0.18), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(212, 181, 124, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.2), rgba(248,243,238,0));
  filter: saturate(1.08);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-right: 24px;
}

.hero__content::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  left: -120px;
  top: -130px;
  background: radial-gradient(circle, rgba(201,166,123,0.18), rgba(201,166,123,0.06) 32%, transparent 70%);
  filter: blur(10px);
  z-index: -1;
}

.hero::before,
.story::before,
.services::before,
.portfolio::before,
.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.2), transparent 25%, transparent 75%, rgba(255,255,255,0.12));
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 32px;
}

.hero__content h1 {
  max-width: 620px;
  font-size: clamp(5rem, 7vw, 9rem);
  line-height: 0.78;
  letter-spacing: -0.06em;
}

.hero__content .eyebrow {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.hero__lead {
  max-width: 620px;
  margin-top: 22px;
  font-size: 1.08rem;
}

.cta-row {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 20px;
  max-width: 660px;
  margin-top: 42px;
}

.hero__stats div {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.hero__stats strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.04em;
}

.hero__stats span {
  display: block;
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__visual {
  position: relative;
  min-height: 660px;
  transition: transform 0.3s ease;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 8% 8% 4% 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 166, 123, 0.38), rgba(168, 66, 73, 0.12) 35%, transparent 70%);
  filter: blur(28px);
  pointer-events: none;
}

.card-stack {
  position: absolute;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.42);
  backdrop-filter: blur(4px);
  transition: transform 0.4s ease;
}

.card-stack img {
  height: 100%;
  object-fit: cover;
}

.card-stack--one {
  top: 30px;
  right: 120px;
  width: min(390px, 70%);
  height: 560px;
  transform: rotate(8deg);
  box-shadow: 0 38px 78px rgba(27,20,18,0.2);
}

.card-stack--two {
  bottom: 0;
  right: 0;
  width: min(340px, 58%);
  height: 420px;
  transform: rotate(-8deg);
  box-shadow: 0 28px 64px rgba(27,20,18,0.16);
}

.floating-note {
  position: absolute;
  left: 24px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(27, 20, 18, 0.78);
  backdrop-filter: blur(12px);
  color: white;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(27, 20, 18, 0.18);
}

.floating-note span {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
  opacity: 0.72;
}

.floating-note strong {
  font-size: 0.92rem;
  font-weight: 600;
}

.brand-bar {
  padding: 18px 0 0;
}

.brand-bar__inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 20px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,0.26);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  text-align: center;
  color: var(--ink-soft);
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.story__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.story__image {
  position: relative;
  padding: 24px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(212, 175, 165, 0.2));
  box-shadow: var(--shadow);
}

.story__image img {
  border-radius: 28px;
  height: 680px;
  object-fit: cover;
}

.story__content {
  display: grid;
  gap: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--rose-dark, var(--rose));
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.text-link::after {
  content: "→";
  transition: transform 0.25s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  padding: 28px 26px;
  background: rgba(255,255,255,0.42);
  border: 1px solid rgba(27,20,18,0.08);
  border-radius: 26px;
  box-shadow: 0 22px 54px rgba(27,20,18,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -30%;
  width: 55%;
  height: 160%;
  background: linear-gradient(120deg, transparent 28%, rgba(255,255,255,0.5), transparent 72%);
  transform: rotate(18deg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 58px rgba(27,20,18,0.1);
  border-color: rgba(168,66,73,0.16);
}

.service-card:hover::before {
  opacity: 1;
}

.service-index {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--rose);
}

.service-card h3 {
  font-size: clamp(2rem, 2vw, 2.8rem);
  margin-bottom: 14px;
}

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

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
  min-height: 420px;
}

.portfolio-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 10%, rgba(27,20,18,0.14) 100%);
  pointer-events: none;
}

.portfolio-item--tall {
  grid-row: span 2;
  min-height: 700px;
}

.portfolio-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
}

.portfolio-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.1) contrast(1.04);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.process-step {
  background: rgba(255,255,255,0.42);
  border: 1px solid rgba(27,20,18,0.08);
  border-radius: 22px;
  padding: 24px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.process-step:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 66, 73, 0.18);
  box-shadow: 0 20px 46px rgba(27,20,18,0.08);
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(168, 66, 73, 0.12);
  color: var(--rose-deep);
  font-weight: 800;
  margin-bottom: 24px;
}

.process-step h3 {
  margin-bottom: 12px;
  font-size: 2.2rem;
}

.testimonial {
  padding-top: 40px;
}

.testimonial__wrap {
  display: grid;
  gap: 18px;
  background: linear-gradient(135deg, rgba(27,20,18,0.94), rgba(111, 76, 62, 0.92));
  color: white;
  padding: clamp(40px, 5vw, 70px);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.testimonial__quote p {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1.5rem, 2.5vw, 3rem);
  font-family: "Cormorant Garamond", serif;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.testimonial__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.site-footer {
  padding: 40px 0 120px;
}

.footer__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  background: rgba(255,255,255,0.3);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(28px, 4vw, 60px);
}

.footer__cta {
  display: flex;
  justify-content: flex-end;
}

.floating-tools {
  position: fixed;
  right: 24px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  z-index: 30;
}

.whatsapp-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1fbf5a);
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.34);
  transition: transform 0.25s ease;
}

.whatsapp-button::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(37, 211, 102, 0.38);
  animation: pulse 2.4s ease-out infinite;
}

.whatsapp-button:hover {
  transform: translateY(-4px) scale(1.04);
}

.whatsapp-button svg {
  width: 26px;
  height: 26px;
  fill: white;
}

.chatbox {
  width: min(310px, calc(100vw - 32px));
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(27,20,18,0.08);
  border-radius: 20px 20px 18px 18px;
  box-shadow: 0 22px 52px rgba(27,20,18,0.15);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.chatbox__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #231d1c, #473833);
  color: white;
  position: relative;
}

.chatbox__header::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transform: translateX(-100%);
  animation: sheen 6s ease-in-out infinite;
}

.chatbox__avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), #d4a09a);
  font-weight: 800;
  font-size: 0.75rem;
}

.chatbox__header div:nth-of-type(2) {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.chatbox__header strong {
  font-size: 0.76rem;
}

.chatbox__header span {
  font-size: 0.65rem;
  opacity: 0.8;
}

.chatbox__toggle {
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: white;
  cursor: pointer;
  font-size: 1.2rem;
}

.chatbox__body {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: rgba(248,243,238,0.8);
}

.message {
  max-width: 82%;
  padding: 10px 12px;
  border-radius: 16px;
  font-size: 0.8rem;
  line-height: 1.45;
}

.message--incoming {
  background: rgba(255,255,255,0.9);
  color: var(--ink);
  border: 1px solid rgba(27,20,18,0.06);
}

.message--outgoing {
  margin-left: auto;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: white;
}

.chatbox__input-row {
  display: flex;
  gap: 8px;
  padding: 12px 14px 16px;
  background: rgba(255,255,255,0.9);
}

.chatbox__input-row input {
  flex: 1;
  border: 1px solid rgba(27,20,18,0.1);
  border-radius: 999px;
  padding: 0 12px;
  height: 40px;
  color: var(--ink-soft);
  background: #f5f3f1;
}

.chatbox__input-row button {
  border: none;
  border-radius: 999px;
  min-width: 72px;
  height: 40px;
  background: var(--ink);
  color: white;
  font-weight: 700;
  cursor: pointer;
}

.intro {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: #120d0b;
  z-index: 60;
  overflow: hidden;
  transition: opacity 1.2s ease, visibility 1.2s ease;
}

.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 8, 7, 0.2), rgba(10, 8, 7, 0.62)),
    radial-gradient(circle at center, rgba(168, 66, 73, 0.18), transparent 38%);
  z-index: 1;
}

.intro__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,9,7,0.18), rgba(12,9,7,0.74)),
    rgba(12,9,7,0.16);
  z-index: 2;
}

.intro__photo-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  animation: introPhotoZoom 3.2s cubic-bezier(0.14, 0.82, 0.22, 1) forwards;
}

.intro__photo {
  position: absolute;
  inset: -8% -8% -8% -8%;
  background-image: url('https://images.unsplash.com/photo-1520854221256-17451cc331bf?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center center;
  filter: saturate(0.94) contrast(1.08) brightness(0.66) sepia(0.08);
  transform: scale(1.1);
  animation: introPhotoFade 2.4s ease-out forwards;
}

.intro__content {
  position: relative;
  z-index: 3;
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  animation: introTextReveal 1.4s ease-out 0.45s forwards;
}

.intro__content .eyebrow {
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.32rem;
  text-shadow: 0 8px 26px rgba(0,0,0,0.3);
}

.intro__content h1 {
  color: white;
  font-size: clamp(2.9rem, 5.5vw, 6.2rem);
  margin-top: 12px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.28);
  letter-spacing: -0.06em;
  text-transform: none;
}

.intro.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.8s ease;
  will-change: transform, opacity;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes introPhotoZoom {
  0% {
    transform: scale(1.08);
    opacity: 0.35;
  }
  100% {
    transform: scale(1.18);
    opacity: 1;
  }
}

@keyframes introPhotoFade {
  0% {
    opacity: 0.25;
    filter: saturate(0.8) contrast(1.04) brightness(0.58) sepia(0.12) blur(2px);
  }
  100% {
    opacity: 1;
    filter: saturate(0.94) contrast(1.08) brightness(0.66) sepia(0.08) blur(0px);
  }
}

@keyframes introTextReveal {
  0% {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
  }
}

@keyframes shimmer {
  0%, 100% {
    transform: translateX(-30%) rotate(18deg);
    opacity: 0;
  }
  20%, 80% {
    opacity: 1;
  }
  50% {
    transform: translateX(250%) rotate(18deg);
    opacity: 0.4;
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.96);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.14);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes sheen {
  0% {
    transform: translateX(-120%);
  }
  35%, 100% {
    transform: translateX(120%);
  }
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero__grid,
  .story__grid,
  .process-grid,
  .service-grid,
  .portfolio-grid,
  .brand-bar__inner,
  .footer__grid {
    grid-template-columns: 1fr;
  }

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

  .hero__visual {
    min-height: 520px;
  }

  .service-grid,
  .process-grid,
  .portfolio-grid {
    display: grid;
  }

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

@media (max-width: 620px) {
  .nav-wrap {
    justify-content: space-between;
  }

  .button--small {
    display: none;
  }

  .hero {
    min-height: 650px;
    padding-top: 55px;
  }

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

  .card-stack--one {
    right: 30px;
    width: 70%;
  }

  .card-stack--two {
    width: 60%;
  }

  .floating-note {
    left: 12px;
    bottom: 12px;
  }

  .chatbox {
    width: min(290px, calc(100vw - 18px));
  }

  .floating-tools {
    right: 12px;
    bottom: 12px;
  }
}
