:root {
  --bg: #030707;
  --bg-soft: #071313;
  --panel: rgba(9, 18, 18, 0.78);
  --panel-strong: rgba(6, 13, 13, 0.92);
  --line: rgba(133, 255, 238, 0.18);
  --line-bright: rgba(104, 242, 230, 0.48);
  --text: #effaf6;
  --muted: rgba(239, 250, 246, 0.72);
  --dim: rgba(239, 250, 246, 0.48);
  --aqua: #55f7e6;
  --cyan: #80d9ff;
  --gold: #e2bf73;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.52);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(72, 232, 210, 0.18), transparent 28rem),
    radial-gradient(circle at 78% 35%, rgba(226, 191, 115, 0.12), transparent 26rem),
    linear-gradient(180deg, #050908 0%, #020404 100%);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

body.chat-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 30;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at center, transparent 0, rgba(0, 0, 0, 0.42) 78%);
  background-size: 100% 4px, 100% 100%;
  mix-blend-mode: screen;
  opacity: 0.24;
}

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

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

.expedition-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: min(1160px, calc(100% - 36px));
  min-height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(133, 255, 238, 0.22);
  border-radius: 0;
  background: rgba(5, 10, 10, 0.72);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
}

.expedition-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 178px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--aqua);
  border-radius: 50%;
  color: var(--aqua);
  font-family: Georgia, serif;
  font-size: 21px;
  box-shadow: 0 0 22px rgba(85, 247, 230, 0.16);
}

.expedition-brand strong,
.expedition-brand small {
  display: block;
}

.expedition-brand strong {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 14px;
}

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

.expedition-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 34px);
  color: var(--muted);
  font-size: 12px;
}

.expedition-nav a,
.expedition-nav button {
  position: relative;
  padding: 8px 0;
}

.expedition-nav button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.expedition-nav a::after,
.expedition-nav button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--aqua);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.expedition-nav a:hover::after,
.expedition-nav button:hover::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--line-bright);
  color: var(--text);
  font-weight: 800;
  font-size: 13px;
}

.header-cta {
  color: #03100f;
  border: 0;
  background: linear-gradient(135deg, var(--aqua), var(--cyan));
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

body.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

body.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero-expedition {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 160px max(28px, calc((100vw - 1160px) / 2)) 42px;
}

.hero-backdrop,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-backdrop img,
.hero-backdrop video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) saturate(0.82) brightness(0.68);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.24) 52%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.20) 0%, #030707 96%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding-bottom: 96px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid var(--line-bright);
  border-radius: 999px;
  color: var(--aqua);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 900;
}

.story-card .eyebrow {
  margin-bottom: 18px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 0.98;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 22px 0 24px;
  color: var(--aqua);
  font-size: clamp(48px, 8vw, 118px);
  text-transform: uppercase;
  text-shadow: 0 0 28px rgba(85, 247, 230, 0.32);
}

.hero-content p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 21px);
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button-primary {
  border: 0;
  color: #03100f;
  background: linear-gradient(135deg, var(--aqua), var(--cyan));
}

.button-ghost {
  background: rgba(0, 0, 0, 0.22);
}

.button-rabbit {
  border-color: rgba(85, 247, 230, 0.42);
  background:
    radial-gradient(circle at 18% 50%, rgba(85, 247, 230, 0.16), transparent 34%),
    rgba(0, 0, 0, 0.28);
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
}

.button-rabbit:hover {
  box-shadow: 0 0 32px rgba(85, 247, 230, 0.16);
}

.route-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.route-strip a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
}

.route-strip span {
  color: var(--aqua);
  font-weight: 900;
}

.route-strip strong {
  font-size: 13px;
}

.section,
.discover-section,
.contact-section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.intro-section,
.split-section,
.story-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.section-copy h2,
.center-head h2,
.discover-copy h2,
.contact-section h2 {
  margin: 18px 0 0;
  font-size: clamp(34px, 5vw, 72px);
}

.prose p,
.section-copy p,
.contact-section p,
.story-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.center-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.tour-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: end;
  margin-top: 46px;
}

.tour-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--panel);
  box-shadow: var(--shadow);
  color: inherit;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.tour-card:nth-child(2) {
  min-height: 410px;
  border-color: var(--line-bright);
}

.tour-card:hover,
.tour-card:focus-visible {
  border-color: var(--line-bright);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42), 0 0 34px rgba(85, 247, 230, 0.12);
  transform: translateY(-2px);
}

.tour-card:focus-visible {
  outline: 2px solid rgba(85, 247, 230, 0.72);
  outline-offset: 4px;
}

.tour-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.tour-media img,
.tour-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.66) saturate(0.9);
}

.tour-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.86) 100%);
}

.tour-card > *:not(.tour-media) {
  position: relative;
  z-index: 1;
}

.tour-card span,
.tour-card p {
  color: var(--muted);
  font-size: 12px;
}

.tour-card h3 {
  margin: 9px 0;
  font-size: 22px;
}

.tour-card strong {
  color: var(--gold);
}

.service-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.service-line {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: inherit;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service-line:hover,
.service-line:focus-visible {
  border-color: var(--line-bright);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.34), 0 0 24px rgba(85, 247, 230, 0.1);
  transform: translateY(-2px);
}

.service-line:focus-visible {
  outline: 2px solid rgba(85, 247, 230, 0.72);
  outline-offset: 4px;
}

.service-line span,
.service-line strong {
  color: var(--aqua);
  font-weight: 900;
}

.service-line h3 {
  margin-bottom: 6px;
  font-size: 22px;
}

.service-line p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.discover-section {
  min-height: 760px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.discover-copy h2 {
  color: var(--aqua);
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(85, 247, 230, 0.22);
}

.discover-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.video-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 130px;
  gap: 14px;
}

.expedition-mobile-carousel,
.work-mobile-carousel {
  display: none;
}

.mosaic-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  grid-column: span 2;
  grid-row: span 2;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.mosaic-card.is-large {
  grid-column: span 3;
  grid-row: span 3;
}

.mosaic-card img,
.mosaic-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.88);
}

.mosaic-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.78));
}

.mosaic-card figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
}

.mosaic-card figcaption span {
  display: block;
  color: var(--aqua);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}

.mosaic-card figcaption strong {
  font-size: 18px;
}

.check-grid,
.outcome-grid,
.process-track {
  display: grid;
  gap: 14px;
}

.check-card,
.outcome-grid article,
.process-track article,
.story-card,
blockquote,
.contact-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.check-card {
  padding: 22px 22px 22px 54px;
  color: var(--muted);
  line-height: 1.7;
  position: relative;
}

.check-card::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 29px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 20px var(--aqua);
}

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

.outcome-grid article,
.process-track article {
  padding: 26px;
}

.outcome-grid span,
.process-track span {
  color: var(--aqua);
  font-weight: 900;
}

.outcome-grid p,
.process-track p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.process-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(34px, 7vw, 84px);
}

.process-track article {
  display: grid;
  grid-template-columns: 54px 0.8fr 1.2fr;
  gap: 18px;
  align-items: start;
}

.story-card,
blockquote,
.contact-panel {
  padding: clamp(28px, 4vw, 48px);
}

blockquote {
  margin: 0;
  color: var(--aqua);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.5vw, 54px);
  line-height: 1.12;
}

.contact-section {
  align-items: stretch;
  padding-bottom: 120px;
}

.contact-panel {
  display: grid;
  gap: 16px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.social-links a {
  border: 1px solid var(--line);
  padding: 10px 14px;
  color: var(--muted);
}

.contact-panel small {
  color: var(--dim);
  line-height: 1.6;
}

.atmika-chat {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 72% 18%, rgba(85, 247, 230, 0.18), transparent 34rem),
    rgba(1, 4, 4, 0.74);
  opacity: 0;
  pointer-events: none;
  overscroll-behavior: contain;
  transition: opacity 220ms ease;
  backdrop-filter: blur(3px);
}

.atmika-chat[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.atmika-chat-panel {
  position: relative;
  width: min(760px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  min-height: 0;
  display: grid;
  grid-template-rows: auto auto minmax(240px, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(85, 247, 230, 0.34);
  background:
    linear-gradient(125deg, transparent 0 44%, rgba(255, 255, 255, 0.018) 52%, transparent 66%),
    radial-gradient(circle at 16% 0%, rgba(85, 247, 230, 0.14), transparent 32rem),
    rgba(2, 8, 8, 0.96);
  box-shadow: 0 38px 140px rgba(0, 0, 0, 0.72), 0 0 70px rgba(85, 247, 230, 0.12);
  animation: chat-panel-in 340ms cubic-bezier(0.2, 0.82, 0.2, 1) both;
}

.atmika-chat-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid rgba(85, 247, 230, 0.16);
}

.atmika-chat-head h2 {
  margin: 12px 0 0;
  font-size: clamp(28px, 4vw, 44px);
}

.atmika-chat-actions {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.atmika-chat-actions button,
.atmika-chat-form button {
  min-height: 42px;
  border: 1px solid rgba(85, 247, 230, 0.36);
  background: rgba(85, 247, 230, 0.09);
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
}

.atmika-chat-actions button {
  padding: 0 14px;
}

.atmika-chat-actions [data-chat-close] {
  width: 42px;
  padding: 0;
  font-size: 28px;
  line-height: 1;
}

.atmika-chat-share {
  min-height: 24px;
  padding: 8px 24px 0;
  color: var(--aqua);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.atmika-chat-messages {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  padding: 18px 24px 24px;
  scroll-behavior: auto;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

.atmika-chat-empty,
.atmika-chat-message {
  max-width: 86%;
  border: 1px solid rgba(85, 247, 230, 0.16);
  background: rgba(255, 255, 255, 0.035);
  padding: 14px 16px;
  color: var(--muted);
  line-height: 1.65;
}

.atmika-chat-empty {
  max-width: 100%;
}

.atmika-chat-message.is-user {
  justify-self: end;
  border-color: rgba(128, 217, 255, 0.3);
  background: rgba(128, 217, 255, 0.08);
}

.atmika-chat-message.is-assistant {
  justify-self: start;
}

.atmika-chat-message span {
  display: block;
  margin-bottom: 6px;
  color: var(--aqua);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.atmika-chat-content p {
  margin: 0;
  white-space: pre-wrap;
}

.atmika-chat-content p + p,
.atmika-chat-content p + ul,
.atmika-chat-content p + ol,
.atmika-chat-content ul + p,
.atmika-chat-content ol + p,
.atmika-chat-content h3 + p,
.atmika-chat-content blockquote + p {
  margin-top: 12px;
}

.atmika-chat-content h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-family: var(--font-title);
  font-size: 22px;
  line-height: 1.15;
}

.atmika-chat-content blockquote {
  margin: 8px 0 0;
  padding: 8px 0 8px 12px;
  border-left: 2px solid rgba(85, 247, 230, 0.42);
  color: rgba(239, 250, 246, 0.84);
}

.atmika-chat-content ul,
.atmika-chat-content ol {
  margin: 8px 0 0;
  padding-left: 20px;
}

.atmika-chat-content li + li {
  margin-top: 6px;
}

.atmika-chat-content strong {
  color: var(--text);
  font-weight: 900;
}

.atmika-chat-content em {
  color: rgba(239, 250, 246, 0.9);
}

.atmika-chat-content del {
  color: rgba(239, 250, 246, 0.56);
}

.atmika-chat-content code {
  padding: 2px 6px;
  border: 1px solid rgba(85, 247, 230, 0.18);
  background: rgba(0, 0, 0, 0.28);
  color: var(--aqua);
  font-size: 0.92em;
}

.atmika-chat-content pre {
  max-width: 100%;
  margin: 10px 0 0;
  overflow-x: auto;
  border: 1px solid rgba(85, 247, 230, 0.18);
  background: rgba(0, 0, 0, 0.32);
  padding: 12px;
}

.atmika-chat-content pre code {
  display: block;
  border: 0;
  background: transparent;
  padding: 0;
  white-space: pre;
}

.atmika-chat-content a {
  color: var(--aqua);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.atmika-chat-message.is-pending {
  color: rgba(239, 250, 246, 0.68);
  animation: chat-thinking 1200ms ease-in-out infinite;
}

.atmika-chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 18px 24px 24px;
  border-top: 1px solid rgba(85, 247, 230, 0.16);
}

.atmika-chat-form textarea {
  width: 100%;
  min-height: 54px;
  max-height: 150px;
  resize: vertical;
  border: 1px solid rgba(85, 247, 230, 0.22);
  background: rgba(0, 0, 0, 0.32);
  color: var(--text);
  padding: 14px;
  font: inherit;
}

.atmika-chat-form textarea:focus {
  outline: 1px solid rgba(85, 247, 230, 0.72);
}

.atmika-chat-form button {
  padding: 0 18px;
}

@keyframes chat-panel-in {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes chat-thinking {
  0%,
  100% {
    opacity: 0.58;
  }

  50% {
    opacity: 1;
  }
}

.white-rabbit {
  position: fixed;
  right: clamp(12px, 3vw, 34px);
  top: clamp(92px, 14vh, 150px);
  z-index: 40;
  display: block;
  width: 150px;
  height: 150px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  filter: drop-shadow(0 0 20px rgba(245, 255, 248, 0.32)) drop-shadow(0 0 30px rgba(85, 247, 230, 0.14));
  transform: translate3d(var(--rabbit-x, 0px), var(--rabbit-y, 0px), 0) rotate(var(--rabbit-tilt, 0deg));
  transform-origin: 50% 78%;
  transition: opacity 180ms ease, filter 180ms ease;
  will-change: transform;
}

.white-rabbit:hover {
  filter: drop-shadow(0 0 24px rgba(245, 255, 248, 0.48)) drop-shadow(0 0 36px rgba(85, 247, 230, 0.22));
}

.rabbit-bubble {
  position: absolute;
  top: 24px;
  right: 112px;
  display: grid;
  align-items: center;
  width: 238px;
  min-height: 56px;
  padding: 10px 14px;
  border: 1px solid rgba(245, 255, 248, 0.42);
  border-radius: 12px 12px 2px;
  background:
    linear-gradient(135deg, rgba(245, 255, 248, 0.08), transparent),
    rgba(2, 8, 5, 0.86);
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.28;
  text-align: left;
  text-shadow: 0 0 12px rgba(85, 247, 230, 0.48);
  box-shadow: 0 0 28px rgba(85, 247, 230, 0.12), inset 0 0 18px rgba(245, 255, 248, 0.04);
  transition: opacity 180ms ease, transform 180ms ease;
}

.rabbit-bubble::after {
  position: absolute;
  right: -9px;
  bottom: -1px;
  width: 16px;
  height: 16px;
  border-right: 1px solid rgba(245, 255, 248, 0.42);
  border-bottom: 1px solid rgba(245, 255, 248, 0.42);
  background: rgba(2, 8, 5, 0.86);
  content: "";
  transform: skewX(-20deg) rotate(-5deg);
}

.rabbit-body {
  position: relative;
  display: block;
  width: 74px;
  height: 88px;
  margin: 48px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 54% 52% 46% 44%;
  background:
    radial-gradient(circle at 62% 24%, rgba(255, 255, 255, 0.95), transparent 18%),
    linear-gradient(135deg, #ffffff, #dbe6dc 62%, #bac8bf);
  box-shadow: inset -13px -18px 20px rgba(55, 76, 64, 0.22), inset 10px 8px 18px rgba(255, 255, 255, 0.7);
}

.rabbit-body::before {
  position: absolute;
  left: -12px;
  top: 42px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffffff, #d3ded5);
  content: "";
  box-shadow: inset -5px -5px 8px rgba(58, 78, 66, 0.14);
}

.rabbit-body::after {
  position: absolute;
  right: 6px;
  bottom: -6px;
  width: 54px;
  height: 18px;
  border-radius: 50%;
  background: rgba(245, 255, 248, 0.36);
  content: "";
  filter: blur(8px);
}

.rabbit-head {
  position: absolute;
  top: -32px;
  left: 16px;
  width: 50px;
  height: 47px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 52% 48% 50% 48%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.95), transparent 22%),
    linear-gradient(135deg, #ffffff, #dce8df 70%, #becbc2);
  box-shadow: inset -8px -9px 12px rgba(55, 76, 64, 0.16);
}

.rabbit-head::before,
.rabbit-head::after {
  position: absolute;
  content: "";
}

.rabbit-head::before {
  left: 29px;
  top: 19px;
  width: 18px;
  height: 11px;
  border-radius: 55% 45% 50% 50%;
  background: rgba(255, 246, 248, 0.9);
}

.rabbit-head::after {
  right: -8px;
  top: 27px;
  width: 16px;
  height: 1px;
  background: rgba(245, 255, 248, 0.76);
  box-shadow: 0 5px 0 rgba(245, 255, 248, 0.54), -2px -5px 0 rgba(245, 255, 248, 0.46);
}

.rabbit-ear {
  position: absolute;
  top: -66px;
  width: 18px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 999px;
  background: linear-gradient(90deg, #fafffb, #e0ebe2);
  transform-origin: bottom;
  box-shadow: inset -5px -8px 8px rgba(55, 76, 64, 0.12);
}

.rabbit-ear::before {
  position: absolute;
  inset: 8px 5px 12px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 188, 204, 0.62), rgba(255, 228, 234, 0.14));
  content: "";
}

.rabbit-ear-left {
  left: 20px;
  transform: rotate(-18deg);
}

.rabbit-ear-right {
  right: 11px;
  height: 58px;
  transform: rotate(20deg);
}

.rabbit-eye {
  position: absolute;
  top: 17px;
  right: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #050907;
  box-shadow: -20px -1px 0 #050907, 0 0 8px rgba(85, 247, 230, 0.36);
}

.rabbit-nose {
  position: absolute;
  right: 2px;
  bottom: 13px;
  width: 7px;
  height: 6px;
  border-radius: 50%;
  background: #f0a5b8;
  box-shadow: -4px 5px 0 -2px rgba(90, 54, 62, 0.7);
}

@media (max-width: 980px) {
  .expedition-header {
    top: 0;
    left: 0;
    display: flex;
    grid-template-columns: none;
    column-gap: 12px;
    width: 100%;
    transform: none;
    border-right: 0;
    border-left: 0;
  }

  .expedition-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 18;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 92px 18px 18px;
    border-bottom: 1px solid rgba(85, 247, 230, 0.34);
    background:
      linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.18) 49%, transparent 56%),
      radial-gradient(circle at 72% 0%, rgba(85, 247, 230, 0.2), transparent 38%),
      rgba(2, 8, 8, 0.97);
    background-size: 260% 100%, 100% 100%, 100% 100%;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.62);
    transform: translateY(-105%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 420ms cubic-bezier(0.2, 0.82, 0.2, 1),
      opacity 220ms ease;
  }

  .expedition-nav::before {
    content: "Atmika";
    display: flex;
    width: max-content;
    min-height: 44px;
    align-items: center;
    margin: -72px 0 28px;
    color: var(--aqua);
    font-family: var(--font-title);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    text-shadow: 0 0 22px rgba(85, 247, 230, 0.42);
  }

  .expedition-nav a,
  .expedition-nav button {
    display: flex;
    min-height: 54px;
    align-items: center;
    border-top: 1px solid rgba(85, 247, 230, 0.12);
    color: rgba(239, 250, 246, 0.86);
    font-size: 18px;
    font-weight: 800;
    transform: translateY(-10px);
    opacity: 0;
    padding: 0;
    text-align: left;
  }

  .expedition-nav a:first-child {
    border-top: 0;
  }

  body.menu-open .expedition-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    animation: menu-glint 900ms ease both;
  }

  body.menu-open .expedition-nav a,
  body.menu-open .expedition-nav button {
    animation: menu-link-pop 560ms cubic-bezier(0.2, 0.82, 0.2, 1) both;
  }

  body.menu-open .expedition-nav a:nth-child(1) {
    animation-delay: 120ms;
  }

  body.menu-open .expedition-nav a:nth-child(2) {
    animation-delay: 180ms;
  }

  body.menu-open .expedition-nav a:nth-child(3) {
    animation-delay: 240ms;
  }

  body.menu-open .expedition-nav a:nth-child(4) {
    animation-delay: 300ms;
  }

  body.menu-open .expedition-nav a:nth-child(5) {
    animation-delay: 360ms;
  }

  body.menu-open .expedition-nav button:nth-child(6) {
    animation-delay: 420ms;
  }

  @keyframes menu-glint {
    0% {
      background-position: 180% 0, 0 0, 0 0;
    }

    100% {
      background-position: -40% 0, 0 0, 0 0;
    }
  }

  @keyframes menu-link-pop {
    0% {
      opacity: 0;
      color: rgba(239, 250, 246, 0.48);
      text-shadow: none;
      transform: translateY(-10px);
    }

    45% {
      color: var(--aqua);
      text-shadow: 0 0 18px rgba(85, 247, 230, 0.58);
    }

    100% {
      opacity: 1;
      color: rgba(239, 250, 246, 0.88);
      text-shadow: none;
      transform: translateY(0);
    }
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 44px;
    margin-left: auto;
    position: fixed;
    top: 11px;
    right: 16px;
    transform: none;
    z-index: 45;
  }

  .route-strip,
  .tour-row,
  .outcome-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-section,
  .split-section,
  .story-section,
  .contact-section,
  .discover-section,
  .process-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .expedition-header {
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    min-height: 62px;
    padding-right: 0;
    border-right: 0;
    border-left: 0;
  }

  .menu-toggle {
    position: fixed;
    top: 11px;
    right: 16px;
    transform: none;
    z-index: 45;
  }

  .expedition-brand {
    min-width: 0;
    padding-right: 62px;
  }

  .expedition-brand small {
    display: none;
  }

  .hero-expedition {
    min-height: 760px;
    padding: 106px 20px 32px;
  }

  .hero-content {
    width: 100%;
    max-width: calc(100vw - 40px);
    padding-bottom: 46px;
  }

  .hero-content p {
    max-width: min(360px, calc(100vw - 56px));
    font-size: 15px;
    line-height: 1.72;
  }

  h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    padding-inline: 14px;
    text-align: center;
  }

  .section-copy h2,
  .center-head h2,
  .discover-copy h2,
  .contact-section h2 {
    font-size: clamp(28px, 9vw, 36px);
  }

  .section,
  .discover-section,
  .contact-section {
    width: calc(100% - 32px);
    max-width: calc(100vw - 32px);
    padding: 68px 0;
    overflow: hidden;
  }

  .route-strip,
  .tour-row,
  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .tour-row {
    display: none;
  }

  .service-line,
  .process-track article {
    grid-template-columns: 1fr;
  }

  .video-mosaic {
    display: none;
  }

  .expedition-mobile-carousel,
  .work-mobile-carousel {
    --ink: #f7f1e5;
    position: relative;
    display: grid;
    justify-items: center;
    width: min(100%, 1180px);
    margin: 18px auto 0;
    touch-action: pan-y;
    user-select: none;
  }

  .gallery-stage {
    position: relative;
    width: calc(100vw - 32px);
    max-width: none;
    height: 520px;
    margin-right: 0;
    margin-left: 0;
    perspective: 1400px;
    transform-style: preserve-3d;
  }

  .gallery-slide {
    --offset: 0;
    --distance: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(68vw, 270px);
    aspect-ratio: 9 / 16;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(247, 241, 229, 0.18);
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgba(247, 241, 229, 0.08), rgba(247, 241, 229, 0.02)),
      #101615;
    color: inherit;
    box-shadow:
      0 34px 90px rgba(0, 0, 0, 0.48),
      0 0 0 1px rgba(85, 247, 230, 0.06) inset;
    text-decoration: none;
    opacity: calc(1 - var(--distance) * 0.18);
    transform:
      translate(-50%, -50%)
      translateX(calc(var(--offset) * 132px))
      translateZ(calc(28px - var(--distance) * 56px))
      rotateY(calc(var(--offset) * -13deg))
      scale(calc(1 - var(--distance) * 0.1));
    transition:
      transform 620ms cubic-bezier(0.2, 0.82, 0.2, 1),
      opacity 360ms ease,
      filter 360ms ease;
  }

  .gallery-slide[aria-current] {
    border-color: rgba(85, 247, 230, 0.52);
    box-shadow:
      0 40px 110px rgba(0, 0, 0, 0.58),
      0 0 52px rgba(85, 247, 230, 0.18);
  }

  .gallery-slide[aria-hidden="true"] {
    pointer-events: none;
  }

  .gallery-media,
  .gallery-media img,
  .gallery-media video {
    width: 100%;
    height: 100%;
  }

  .gallery-media {
    position: absolute;
    inset: 0;
  }

  .gallery-media img,
  .gallery-media video {
    display: block;
    object-fit: cover;
  }

  .gallery-slide::before,
  .gallery-slide::after {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
  }

  .gallery-slide::before {
    z-index: 1;
    background:
      linear-gradient(180deg, rgba(8, 11, 13, 0.04), rgba(8, 11, 13, 0.38) 68%, rgba(8, 11, 13, 0.82)),
      linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 28% 74%, rgba(0, 0, 0, 0.18));
  }

  .gallery-slide::after {
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
  }

  .gallery-slide .gallery-caption {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    z-index: 3;
    display: grid;
    gap: 8px;
  }

  .gallery-slide .gallery-caption span {
    justify-self: start;
    padding: 5px 9px;
    border: 1px solid rgba(85, 247, 230, 0.36);
    border-radius: 999px;
    background: rgba(8, 11, 13, 0.34);
    color: var(--aqua);
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
  }

  .gallery-slide .gallery-caption strong {
    color: var(--ink);
    font-size: clamp(22px, 7vw, 28px);
    line-height: 1.05;
    text-shadow: 0 2px 22px rgba(0, 0, 0, 0.66);
  }

  .gallery-slide .gallery-caption em {
    color: var(--aqua);
    font-style: normal;
    font-weight: 900;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
  }

  .gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 12;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(247, 241, 229, 0.18);
    border-radius: 50%;
    background: rgba(8, 11, 13, 0.54);
    color: var(--ink);
    cursor: pointer;
    backdrop-filter: blur(16px);
    transform: translateY(-50%);
    transition:
      border-color 160ms ease,
      background 160ms ease,
      color 160ms ease;
  }

  .gallery-arrow:hover {
    border-color: rgba(85, 247, 230, 0.48);
    background: rgba(85, 247, 230, 0.14);
    color: var(--aqua);
  }

  .gallery-arrow svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .gallery-arrow-prev {
    left: 10px;
  }

  .gallery-arrow-next {
    right: 10px;
  }

  .gallery-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 16px;
  }

  .gallery-dots button {
    width: 28px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(247, 241, 229, 0.2);
    cursor: pointer;
    transition:
      width 180ms ease,
      background 180ms ease;
  }

  .gallery-dots button.is-active {
    width: 42px;
    background: var(--aqua);
  }

  .white-rabbit {
    right: 10px;
    top: auto;
    bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    width: min(330px, calc(100vw - 20px));
    height: 74px;
    padding: 0;
    filter: drop-shadow(0 0 14px rgba(245, 255, 248, 0.22)) drop-shadow(0 0 20px rgba(85, 247, 230, 0.12));
  }

  .rabbit-bubble {
    position: static;
    width: min(220px, calc(100vw - 104px));
    min-height: 46px;
    padding: 10px 12px;
    border-radius: 12px;
    background:
      linear-gradient(135deg, rgba(245, 255, 248, 0.06), transparent),
      rgba(2, 8, 5, 0.94);
    font-size: 13px;
    line-height: 1.35;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9);
  }

  .rabbit-bubble::after {
    right: -7px;
    bottom: 16px;
    width: 12px;
    height: 12px;
    transform: rotate(-45deg);
  }

  .rabbit-body {
    flex: 0 0 auto;
    width: 44px;
    height: 54px;
    margin: 16px 4px 0 0;
  }

  .rabbit-head {
    top: -21px;
    left: 9px;
    width: 32px;
    height: 31px;
  }

  .rabbit-ear {
    top: -45px;
    width: 11px;
    height: 42px;
  }

  .rabbit-ear-left {
    left: 12px;
  }

  .rabbit-ear-right {
    right: 7px;
    height: 39px;
  }

  .rabbit-eye {
    top: 11px;
    right: 9px;
    width: 4px;
    height: 4px;
    box-shadow: -13px -1px 0 #050907, 0 0 8px rgba(85, 247, 230, 0.36);
  }

  .rabbit-nose {
    right: 1px;
    bottom: 8px;
    width: 5px;
    height: 4px;
  }

  .atmika-chat {
    padding: 0;
  }

  .atmika-chat-panel {
    width: 100%;
    height: 100%;
    max-height: none;
    border-right: 0;
    border-left: 0;
    grid-template-rows: auto auto 1fr auto;
  }

  .atmika-chat-head {
    position: relative;
    display: block;
    padding: 18px 72px 18px 16px;
  }

  .atmika-chat-head > div:first-child {
    min-width: 0;
  }

  .atmika-chat-head h2 {
    font-size: clamp(24px, 7vw, 32px);
    overflow-wrap: anywhere;
  }

  .atmika-chat-actions {
    position: static;
    display: grid;
    grid-template-columns: 84px 76px;
    flex-direction: row;
    align-items: stretch;
    width: max-content;
    min-width: 0;
    margin-top: 12px;
  }

  .atmika-chat-actions button {
    width: 100%;
    min-height: 38px;
  }

  .atmika-chat-actions [data-chat-close] {
    position: absolute;
    top: 18px;
    right: 16px;
    width: 42px;
    height: 42px;
    margin-left: 0;
  }

  .atmika-chat-actions [data-chat-share] {
    grid-column: 1;
    grid-row: 1;
    font-size: 0;
  }

  .atmika-chat-actions [data-chat-new] {
    grid-column: 2;
    grid-row: 1;
    font-size: 0;
  }

  .atmika-chat-actions [data-chat-share]::before {
    content: "Ссылка";
    font-size: 12px;
  }

  .atmika-chat-actions [data-chat-new]::before {
    content: "Новый";
    font-size: 12px;
  }

  .atmika-chat-messages {
    padding: 14px 16px 18px;
  }

  .atmika-chat-message,
  .atmika-chat-empty {
    max-width: 94%;
  }

  .atmika-chat-form {
    grid-template-columns: 1fr;
    padding: 14px 16px 18px;
  }

  .atmika-chat-form button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .white-rabbit,
  .rabbit-bubble {
    transition: none;
  }
}
