/* =========================
   Montenegro AI Concierge
   style/assistant.css
   ========================= */

.concierge-page {
  background:
    radial-gradient(circle at top left, rgba(31, 88, 124, 0.08), transparent 30%),
    radial-gradient(circle at top right, rgba(46, 125, 140, 0.08), transparent 28%),
    linear-gradient(180deg, #fcfaf6 0%, #f5efe6 100%);
  color: #22313a;
}

.concierge-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(252, 250, 246, 0.84);
  border-bottom: 1px solid rgba(34, 49, 58, 0.08);
}

.concierge-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand-block {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.brand-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6e7b82;
}

.brand-title {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #18394d;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(24, 57, 77, 0.06);
}

.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 34px;
  padding: 0 0.8rem;
  border-radius: 999px;
  text-decoration: none;
  color: #4d5d66;
  font-weight: 600;
  transition: all 0.2s ease;
}

.lang-link.is-active {
  background: #18394d;
  color: #fff;
}

.btn-sm {
  min-height: 40px;
  padding: 0.7rem 1rem;
}

.concierge-hero {
  padding: 3.5rem 0 2rem;
}

.concierge-hero-card {
  padding: 1.5rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 250, 244, 0.96) 100%);
  border: 1px solid rgba(24, 57, 77, 0.08);
  box-shadow:
    0 20px 60px rgba(22, 39, 52, 0.08),
    0 6px 18px rgba(22, 39, 52, 0.04);
}

.hero-topline {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(24, 57, 77, 0.06);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2b8a63;
  box-shadow: 0 0 0 5px rgba(43, 138, 99, 0.12);
}

.hero-status {
  font-size: 0.92rem;
  color: #44606f;
}

.hero-copy {
  max-width: 900px;
}

.hero-eyebrow,
.section-kicker {
  margin: 0 0 0.6rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #84745e;
}

.hero-title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.82rem, 3.8vw, 2.62rem);
  line-height: 1.05;
  color: #18394d;
  max-width: 12ch;
}

.hero-lead {
  margin: 0 0 0.8rem;
  font-size: 1.12rem;
  line-height: 1.6;
  color: #243944;
}

.hero-text,
.section-lead,
.section-text,
.info-card p,
.scenario-card p,
.assistant-point,
.chat-preview-subtitle,
.chat-preview-status,
.hero-status,
.mood-card p,
.final-cta-card p {
  line-height: 1.7;
  color: #53636c;
}

.hero-actions,
.button-row,
.chat-preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-actions {
  margin-top: 1.5rem;
}

.personal-presence {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.05rem;
  padding: 0.85rem 0.95rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 242, 234, 0.96));
  border: 1px solid rgba(203, 187, 167, 0.42);
  box-shadow: 0 10px 22px rgba(22, 39, 52, 0.05);
}

.personal-presence-photo {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border-radius: 18px;
  object-fit: cover;
  object-position: center 24%;
  border: 1px solid rgba(203, 187, 167, 0.45);
}

.personal-presence-title {
  margin: 0 0 0.2rem;
  font-size: 0.98rem;
  font-weight: 700;
  color: #18394d;
}

.personal-presence-text {
  margin: 0;
  color: #53636c;
  line-height: 1.55;
}

.concierge-section {
  padding: 2rem 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.section-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  color: #18394d;
}

.scenario-grid,
.info-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.scenario-grid {
  grid-template-columns: 1fr;
}

.info-grid-3,
.info-grid-4 {
  grid-template-columns: 1fr;
}

.scenario-card,
.info-card,
.human-layer-card,
.mood-card,
.final-cta-card,
.chat-preview-card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(24, 57, 77, 0.08);
  box-shadow: 0 12px 32px rgba(22, 39, 52, 0.05);
}
.scenario-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.scenario-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(22, 39, 52, 0.08);
  border-color: rgba(29, 95, 122, 0.18);
}
.scenario-card,
.info-card {
  padding: 1.25rem;
}

.scenario-card h2,
.info-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.08rem;
  line-height: 1.35;
  color: #18394d;
}

.scenario-link {
  display: inline-flex;
  margin-top: 0.8rem;
  color: #1d5f7a;
  font-weight: 600;
  text-decoration: none;
}

.assistant-layout {
  display: grid;
  gap: 1.25rem;
}

.assistant-copy {
  align-self: center;
}

.assistant-points {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.assistant-point {
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: rgba(24, 57, 77, 0.05);
  border: 1px solid rgba(24, 57, 77, 0.05);
}

.chat-preview-card {
  padding: 1.1rem;
}

.chat-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.chat-preview-title {
  margin: 0 0 0.2rem;
  font-size: 1.1rem;
  color: #18394d;
}

.chat-preview-body {
  display: grid;
  gap: 1rem;
}

.message.assistant {
  padding: 1rem 1rem;
  border-radius: 18px 18px 18px 8px;
  background: rgba(29, 95, 122, 0.08);
  color: #26414d;
  line-height: 1.7;
}

.quick-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.quick-chip {
  border: 1px solid rgba(24, 57, 77, 0.1);
  background: #fff;
  color: #28404c;
  border-radius: 999px;
  padding: 0.7rem 0.95rem;
  font: inherit;
  cursor: pointer;
}

.chat-preview-form {
  margin-top: 1rem;
}

.chat-preview-form textarea {
  width: 100%;
  min-height: 120px;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(24, 57, 77, 0.1);
  background: rgba(255, 255, 255, 0.95);
  font: inherit;
  color: #22313a;
  resize: vertical;
}

.chat-preview-form textarea:focus {
  outline: none;
  border-color: rgba(29, 95, 122, 0.45);
  box-shadow: 0 0 0 4px rgba(29, 95, 122, 0.08);
}

.human-layer-card,
.mood-card,
.final-cta-card {
  padding: 1.5rem;
}

.mood-card {
  background:
    radial-gradient(circle at top right, rgba(29, 95, 122, 0.12), transparent 30%),
    radial-gradient(circle at bottom left, rgba(168, 136, 82, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.96) 0%, rgba(248, 242, 233, 0.96) 100%);
}

.final-cta-card {
  text-align: center;
}

.button-row-wrap {
  justify-content: center;
}

.concierge-footer {
  padding: 2rem 0 3rem;
}

/* ===== Responsive ===== */

@media (min-width: 768px) {
  .concierge-hero {
    padding: 4.5rem 0 2.5rem;
  }

.concierge-hero-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 250, 244, 0.96) 100%);
  border: 1px solid rgba(24, 57, 77, 0.08);
  box-shadow:
    0 20px 60px rgba(22, 39, 52, 0.08),
    0 6px 18px rgba(22, 39, 52, 0.04);
}

  .scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .concierge-hero-card::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(50, 122, 150, 0.14) 0%, rgba(50, 122, 150, 0.05) 42%, transparent 72%);
  pointer-events: none;
}

  .info-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .info-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .concierge-hero-card {
    padding: 2.4rem;
  }

  .hero-copy {
    max-width: 720px;
  }

  .scenario-grid {
    margin-top: 2rem;
  }
}

  .concierge-section {
    padding: 2.5rem 0;
  }

  .concierge-hero-card {
    padding: 2.4rem;
  }
  /* =========================
   One-screen layout upgrade
   add to the end of style/assistant.css
   ========================= */

.concierge-main {
  display: flex;
  flex-direction: column;
}

.concierge-screen {
  padding: 1.25rem 0 1rem;
}

.concierge-screen-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 250, 244, 0.96) 100%);
  border: 1px solid rgba(24, 57, 77, 0.08);
  box-shadow:
    0 20px 60px rgba(22, 39, 52, 0.08),
    0 6px 18px rgba(22, 39, 52, 0.04);
}

.concierge-screen-card::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(50, 122, 150, 0.16) 0%, rgba(50, 122, 150, 0.06) 42%, transparent 72%);
  pointer-events: none;
}

.concierge-grid {
  display: grid;
  gap: 1.25rem;
}

.concierge-left,
.concierge-right {
  position: relative;
  z-index: 1;
}

.compact-scenarios {
  margin-top: 1.4rem;
  grid-template-columns: 1fr;
}

.scenario-button {
  width: 100%;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.scenario-title {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
  color: #18394d;
}

.scenario-text {
  display: block;
  line-height: 1.6;
  color: #53636c;
}

.chat-preview-card {
  height: 100%;
}

.chat-preview-form textarea {
  min-height: 110px;
}

.concierge-footer {
  padding: 0.75rem 0 1.25rem;
}

.concierge-footer-row {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: flex-start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a {
  color: #51616a;
  text-decoration: none;
}

.footer-links a:hover {
  color: #1d5f7a;
}

@media (min-width: 768px) {
  .concierge-screen {
    padding: 1.5rem 0 1rem;
  }

  .concierge-screen-card {
    padding: 1.6rem;
  }

  .compact-scenarios {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .concierge-footer-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .concierge-main {
    min-height: calc(100vh - 72px);
  }

  .concierge-screen {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 1.4rem 0 1rem;
  }

  .concierge-screen-card {
    padding: 2rem;
  }

  .concierge-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 1.5rem;
    align-items: center;
  }

  .hero-copy,
  .concierge-left {
    max-width: none;
  }

  .hero-title {
    max-width: 11ch;
  }

  .chat-preview-card {
    min-height: 100%;
  }
}

@media (min-width: 1280px) {
  .concierge-screen-card {
    padding: 2.2rem;
  }

  .concierge-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
    gap: 2rem;
  }
}
/* =========================
   Compact desktop pass
   ========================= */

.concierge-header-row {
  min-height: 64px;
}

.concierge-screen {
  padding: 0.9rem 0 0.7rem;
}

.concierge-screen-card {
  padding: 1rem;
  border-radius: 28px;
}

.hero-topline {
  margin-bottom: 0.75rem;
  padding: 0.38rem 0.68rem;
}

.hero-eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.76rem;
}

.hero-title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.78rem, 3.6vw, 2.48rem);
  line-height: 0.98;
}

.hero-lead {
  margin: 0 0 0.65rem;
  font-size: 1.02rem;
  line-height: 1.5;
}

.hero-text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
}

.hero-actions {
  margin-top: 1rem;
  gap: 0.65rem;
}

.personal-presence {
  margin-top: 0.85rem;
  padding: 0.72rem 0.82rem;
}

.personal-presence-photo {
  width: 56px;
  height: 56px;
  flex-basis: 56px;
}

.personal-presence-title {
  font-size: 0.94rem;
}

.personal-presence-text {
  font-size: 0.92rem;
}

.scenario-grid.compact-scenarios {
  margin-top: 1rem;
  gap: 0.75rem;
}

.scenario-card,
.info-card {
  padding: 1rem;
  border-radius: 20px;
}

.scenario-title {
  margin-bottom: 0.32rem;
  font-size: 0.98rem;
}

.scenario-text {
  font-size: 0.94rem;
  line-height: 1.45;
}

.chat-preview-card {
  padding: 1rem;
  border-radius: 22px;
}

.chat-preview-header {
  margin-bottom: 0.7rem;
}

.chat-preview-title {
  font-size: 1rem;
}

.chat-preview-subtitle,
.chat-preview-status {
  font-size: 0.92rem;
}

.chat-preview-body {
  gap: 0.8rem;
}

.message.assistant {
  padding: 0.85rem 0.9rem;
  line-height: 1.55;
}

.quick-chip-row {
  gap: 0.5rem;
}

.quick-chip {
  padding: 0.58rem 0.82rem;
  font-size: 0.92rem;
}

.chat-preview-form {
  margin-top: 0.8rem;
}

.chat-preview-form textarea {
  min-height: 86px;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
}

.concierge-footer {
  padding: 0.45rem 0 0.8rem;
}

.concierge-footer-row {
  gap: 0.35rem;
}

.concierge-footer p,
.footer-links a {
  font-size: 0.94rem;
}

@media (min-width: 1024px) {
  .concierge-main {
    min-height: calc(100vh - 64px);
  }

  .concierge-screen {
    align-items: flex-start;
    padding: 0.8rem 0 0.5rem;
  }

  .concierge-screen-card {
    padding: 1.25rem;
  }

  .concierge-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
    gap: 1.15rem;
    align-items: stretch;
  }

  .concierge-left {
    padding-right: 0.2rem;
  }

  .compact-scenarios {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .concierge-screen-card {
    padding: 1.4rem;
  }

  .hero-title {
    font-size: clamp(1.86rem, 3.5vw, 2.62rem);
  }
}
/* =========================
   Final minimalist cleanup
   ========================= */

.compact-scenarios {
  display: none;
}

.chat-preview-form {
  display: none;
}

.chat-preview-footer {
  margin-top: 0.9rem;
}

.chat-preview-note {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: #61707a;
}

.chat-preview-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.chat-preview-body {
  gap: 1rem;
}

.quick-chip-row {
  margin-top: 0.1rem;
}

@media (min-width: 1024px) {
  .concierge-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    align-items: center;
  }

  .concierge-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .chat-preview-card {
    min-height: 420px;
  }
}
/* final polish */

.chat-preview-card {
  justify-content: flex-start;
}

.chat-preview-note {
  margin-top: 0.2rem;
}

@media (min-width: 1024px) {
  .chat-preview-card {
    min-height: auto;
    padding-bottom: 1.1rem;
  }
}
@media (max-width: 767px) {
  .concierge-header-row {
    gap: 0.75rem;
    align-items: flex-start;
  }

  .header-actions {
    gap: 0.6rem;
  }

  .header-actions .btn {
    padding: 0.72rem 1rem;
    font-size: 0.95rem;
  }

  .brand-title {
    font-size: 1rem;
  }

  .brand-kicker {
    font-size: 0.82rem;
  }
}

.site-entry-tab {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 144px;
  padding: 0.9rem 0.65rem;
  border-radius: 18px 0 0 18px;
  background: linear-gradient(180deg, #214b61 0%, #18394d 100%);
  color: #fff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  box-shadow: 0 12px 28px rgba(19, 42, 55, 0.2);
  transition: transform 0.2s ease, background 0.2s ease;
}

.site-entry-tab:hover {
  transform: translateY(-50%) translateX(-2px);
  background: linear-gradient(180deg, #275771 0%, #1d455c 100%);
}

@media (max-width: 767px) {
  .site-entry-tab {
    min-height: 124px;
    padding: 0.75rem 0.5rem;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
  }
}
/* =========================
   Map-inspired brand refresh
   ========================= */

.concierge-page {
  background:
    url("/assets/brand-map-route.svg") center 58px / min(1180px, 112vw) auto no-repeat,
    url("/assets/brand-compass.svg") calc(100% + 82px) 92px / 300px 300px no-repeat,
    radial-gradient(circle at 12% 4%, rgba(255, 220, 139, 0.22), transparent 34%),
    radial-gradient(circle at 92% 12%, rgba(141, 37, 29, 0.12), transparent 28%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
  color: var(--text);
}

.concierge-header {
  background:
    linear-gradient(180deg, rgba(255, 246, 222, 0.93), rgba(235, 207, 159, 0.84));
  border-bottom: 1px solid rgba(122, 84, 36, 0.34);
  box-shadow: 0 8px 24px rgba(54, 32, 14, 0.06);
}

.brand-block {
  gap: 2px;
  padding: 8px 14px;
  border-radius: 16px;
  background: rgba(255, 248, 232, 0.72);
  border: 1px solid rgba(122, 84, 36, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 10px 22px rgba(54, 32, 14, 0.08);
}

.brand-kicker {
  letter-spacing: 0.1em;
  color: var(--primary-dark);
}

.brand-title,
.hero-title,
.section-title,
.scenario-title,
.chat-preview-title,
.personal-presence-title,
.scenario-card h2,
.info-card h3 {
  color: var(--map-ink);
}

.header-actions {
  color: var(--text);
}

.lang-switch {
  background: rgba(255, 248, 232, 0.78);
  border: 1px solid rgba(122, 84, 36, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.lang-link {
  color: var(--text-soft);
}

.lang-link.is-active {
  background:
    linear-gradient(180deg, rgba(255, 210, 120, 0.18), rgba(255, 255, 255, 0)),
    var(--primary);
  color: #fff6df;
  box-shadow: 0 8px 18px rgba(141, 37, 29, 0.18);
}

.concierge-screen-card,
.concierge-hero-card,
.scenario-card,
.info-card,
.human-layer-card,
.mood-card,
.final-cta-card,
.chat-preview-card,
.personal-presence {
  background:
    linear-gradient(180deg, rgba(255, 248, 232, 0.98), rgba(242, 223, 181, 0.94));
  border: 1px solid var(--border);
  box-shadow:
    0 18px 46px rgba(54, 32, 14, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.concierge-screen-card::after,
.concierge-hero-card::after {
  top: -108px;
  right: -118px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: url("/assets/brand-compass.svg") center / contain no-repeat;
  opacity: 0.12;
}

.concierge-screen-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--map-red), var(--gold), transparent);
  opacity: 0.72;
  pointer-events: none;
}

.hero-topline {
  background: rgba(255, 248, 232, 0.76);
  border: 1px solid rgba(122, 84, 36, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.hero-status,
.hero-text,
.section-lead,
.section-text,
.info-card p,
.scenario-card p,
.assistant-point,
.chat-preview-subtitle,
.chat-preview-status,
.mood-card p,
.final-cta-card p,
.personal-presence-text,
.scenario-text,
.chat-preview-note {
  color: var(--text-soft);
}

.hero-eyebrow,
.section-kicker {
  display: inline-block;
  width: fit-content;
  padding: 7px 13px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(95, 23, 18, 0.98), rgba(165, 42, 34, 0.94));
  color: #fff6df;
  box-shadow: 0 8px 18px rgba(141, 37, 29, 0.16);
}

.hero-lead,
.message.assistant {
  color: var(--text);
}

.personal-presence-photo {
  border-color: rgba(122, 84, 36, 0.34);
  box-shadow: 0 8px 18px rgba(54, 32, 14, 0.12);
}

.chat-preview-card {
  position: relative;
  overflow: hidden;
}

.chat-preview-card::before {
  content: "";
  position: absolute;
  right: 16px;
  top: 14px;
  width: 128px;
  height: 128px;
  background: url("/assets/brand-compass.svg") center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.chat-preview-card > * {
  position: relative;
  z-index: 1;
}

.message.assistant {
  background: rgba(255, 248, 232, 0.78);
  border: 1px solid rgba(122, 84, 36, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.quick-chip {
  border-color: rgba(122, 84, 36, 0.26);
  background: rgba(255, 248, 232, 0.88);
  color: var(--primary-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.quick-chip:hover {
  border-color: rgba(165, 42, 34, 0.42);
  background: rgba(255, 255, 255, 0.88);
}

.chat-preview-form textarea {
  border-color: rgba(122, 84, 36, 0.26);
  background: rgba(255, 248, 232, 0.92);
  color: var(--text);
}

.chat-preview-form textarea:focus {
  border-color: rgba(165, 42, 34, 0.48);
  box-shadow: 0 0 0 4px rgba(165, 42, 34, 0.1);
}

.footer-links a {
  color: var(--text-soft);
}

.footer-links a:hover {
  color: var(--primary-dark);
}

.site-entry-tab {
  background:
    linear-gradient(180deg, rgba(255, 210, 120, 0.14), rgba(255, 255, 255, 0)),
    var(--primary-dark);
  color: #fff6df;
  border: 1px solid rgba(215, 165, 68, 0.46);
  box-shadow: 0 12px 28px rgba(54, 32, 14, 0.2);
}

.site-entry-tab:hover {
  background: var(--primary);
}

@media (max-width: 767px) {
  .concierge-page {
    background:
      url("/assets/brand-map-route.svg") center 92px / 900px auto no-repeat,
      linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
  }

  .brand-block {
    padding: 7px 11px;
  }
}
