:root {
  color-scheme: light;
  --ink: #211a20;
  --muted: #6f6871;
  --paper: #fbf7f4;
  --panel: #ffffff;
  --line: #eadfda;
  --rose: #d94d78;
  --rose-deep: #7e2f4a;
  --coral: #f08b6d;
  --sage: #4a8f83;
  --sage-soft: #eaf6f2;
  --cream: #fffaf6;
  --shadow: 0 24px 70px rgba(75, 48, 60, 0.12);
  --soft-shadow: 0 14px 34px rgba(75, 48, 60, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-y: scroll;
  scrollbar-gutter: stable;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(251, 247, 244, 0.98)),
    linear-gradient(120deg, #fff2ee 0%, #f3fbf8 48%, #fff7ef 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 11px 12px;
  border: 1px solid rgba(234, 223, 218, 0.85);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 36px rgba(64, 42, 52, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}

.brand span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-deep), var(--coral));
  color: white;
  font-weight: 850;
}

.brand strong {
  font-size: 0.95rem;
  letter-spacing: 0;
  white-space: nowrap;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
}

nav a {
  border-radius: 7px;
  padding: 9px 11px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 760;
  text-decoration: none;
}

nav a:hover {
  background: var(--sage-soft);
  color: var(--ink);
}

main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: 34px;
  align-items: center;
  min-height: 560px;
  padding: 46px 0 30px;
}

.eyebrow,
.chat-kicker {
  margin: 0 0 10px;
  color: var(--sage);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.15rem, 6vw, 5.95rem);
  line-height: 0.95;
  font-weight: 500;
  color: var(--ink);
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.8vw, 3.45rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.05rem;
}

.lede {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.button,
.chat-input button,
.sample-prompt button,
.booking-form button {
  min-height: 44px;
  border-radius: 7px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
}

.primary {
  background: linear-gradient(135deg, var(--rose-deep), var(--rose), var(--coral));
  color: white;
  box-shadow: 0 12px 28px rgba(126, 47, 74, 0.18);
}

.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.hero-media {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
}

.media-note {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

.media-note span {
  color: var(--muted);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 4px 0 62px;
}

.feature-strip div,
.service-grid article,
.chat-panel,
.booking-form,
.booking-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--soft-shadow);
}

.feature-strip div {
  display: grid;
  gap: 5px;
  padding: 18px;
}

.feature-strip span,
.service-grid span,
.form-note {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.services-section,
.chat-section,
.booking-page {
  padding: 20px 0 76px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-head h2,
.chat-context h2 {
  max-width: 820px;
}

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

.service-grid article {
  min-height: 230px;
  padding: 22px;
  box-shadow: none;
}

.service-grid article:nth-child(1) {
  background: linear-gradient(180deg, #ffffff, #fff2ef);
}

.service-grid article:nth-child(2) {
  background: linear-gradient(180deg, #ffffff, #f1f8f5);
}

.service-grid article:nth-child(3) {
  background: linear-gradient(180deg, #ffffff, #fff8e9);
}

.service-grid article:nth-child(4) {
  background: linear-gradient(180deg, #ffffff, #f7f1fb);
}

.service-grid p,
.booking-hero p,
.booking-card p {
  color: var(--muted);
  line-height: 1.58;
}

.chat-section {
  display: grid;
  gap: 18px;
  scroll-margin-top: 118px;
}

.chat-context {
  max-width: 760px;
}

.chat-panel {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  height: 650px;
  overflow: hidden;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, var(--rose), var(--coral), var(--sage)) border-box;
  border: 1px solid transparent;
  box-shadow: var(--shadow);
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(120deg, #fff7f4, #ffffff 52%, var(--sage-soft));
}

.chat-header h3,
.chat-kicker {
  margin-bottom: 0;
}

.status {
  border-radius: 999px;
  padding: 5px 9px;
  background: linear-gradient(135deg, var(--sage-soft), #fff3da);
  color: #2a5a52;
  font-size: 0.78rem;
  font-weight: 800;
}

.messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
  overflow-y: auto;
  scrollbar-gutter: stable;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 250, 246, 0.72), rgba(255, 255, 255, 0.95));
}

.message {
  max-width: 86%;
  min-width: 0;
  border-radius: 8px;
  padding: 11px 12px;
  line-height: 1.45;
  font-size: 0.95rem;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.message.bot {
  align-self: flex-start;
  background: linear-gradient(135deg, #fff5f1, #eef8f5);
}

.message.user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--rose-deep), var(--sage));
  color: white;
}

.message.streaming {
  width: min(86%, 660px);
  min-height: 42px;
}

.sample-prompt {
  display: grid;
  gap: 7px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  background: linear-gradient(90deg, #fff7f4, #f4fbf9);
}

.sample-prompt span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.sample-prompt-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.sample-prompt button {
  width: 100%;
  padding: 9px 12px;
  border-color: var(--line);
  background: white;
  color: #42333d;
  line-height: 1.35;
  text-align: left;
  white-space: normal;
}

.chat-input {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.chat-input textarea,
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #dfd1cc;
  border-radius: 7px;
  background: white;
  font: inherit;
}

.chat-input textarea {
  min-height: 44px;
  max-height: 132px;
  padding: 11px 12px;
  line-height: 1.35;
  resize: none;
  overflow-y: auto;
  overflow-wrap: anywhere;
}

.chat-input button,
.booking-form button {
  padding: 0 16px;
  background: linear-gradient(135deg, var(--sage), var(--rose-deep));
  color: white;
}

button:disabled,
textarea:disabled {
  cursor: wait;
  opacity: 0.64;
}

.loader {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 42px;
  min-height: 18px;
}

.loader i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--rose-deep);
  opacity: 0.45;
  animation: pulse-dot 0.9s infinite ease-in-out;
}

.loader i:nth-child(2) {
  animation-delay: 0.14s;
}

.loader i:nth-child(3) {
  animation-delay: 0.28s;
}

@keyframes pulse-dot {
  0%,
  80%,
  100% {
    transform: translateY(0) scale(0.82);
    opacity: 0.35;
  }

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 40px;
  color: var(--muted);
}

.booking-page {
  min-height: calc(100vh - 80px);
}

.booking-hero {
  max-width: 780px;
  padding: 58px 0 26px;
}

.booking-hero h1 {
  font-size: clamp(3rem, 6vw, 5.7rem);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
}

.booking-form,
.booking-card {
  padding: 24px;
}

.booking-form {
  display: grid;
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 11px 12px;
  color: var(--ink);
}

.booking-form button {
  margin-top: 4px;
}

.booking-card {
  display: grid;
  gap: 16px;
  background: linear-gradient(180deg, white, #f7fbf9);
}

.booking-meta {
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 980px) {
  .hero,
  .chat-section,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .chat-context {
    position: static;
  }

  .service-grid,
  .feature-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 8px;
    align-items: flex-start;
    flex-direction: column;
  }

  main,
  .site-header,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 4.1rem);
  }

  .hero {
    padding-top: 34px;
  }

  .hero-media,
  .hero-media img {
    min-height: 340px;
  }

  .service-grid,
  .feature-strip,
  .sample-prompt-actions,
  .chat-input {
    grid-template-columns: 1fr;
  }

  .chat-panel {
    height: 580px;
  }

  .chat-input button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}
