:root {
  --burgundy: #5b0f1c;
  --burgundy-2: #7b1830;
  --burgundy-dark: #2c0710;
  --gold: #d9b56c;
  --ink: #191414;
  --muted: #6d6262;
  --line: #eadfdd;
  --paper: #fbf8f6;
  --surface: #ffffff;
  --soft: #f4ecea;
  --shadow: 0 24px 70px rgba(44, 7, 16, 0.14);
  --radius: 8px;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  max-width: 850px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 74px;
  padding: 10px max(18px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid rgba(234, 223, 221, 0.72);
  background: rgba(251, 248, 246, 0.9);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-weight: 800;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.site-nav a {
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
  padding: 10px 11px;
}

.site-nav a:hover {
  background: var(--soft);
  color: var(--burgundy);
}

.header-call {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--burgundy);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 10px 14px;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--ink);
}

.hero {
  min-height: 100vh;
  padding-top: 74px;
  background:
    radial-gradient(circle at 86% 12%, rgba(217, 181, 108, 0.16), transparent 32%),
    linear-gradient(135deg, #300813 0%, #4b0d1a 48%, #74172c 100%);
  color: #fff;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
  gap: 54px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 0 46px;
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--burgundy);
}

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

h1,
h2 {
  font-family: var(--font-display);
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  letter-spacing: 0;
}

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

.hero-subtitle {
  margin-bottom: 20px;
  color: #f3d999;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 750;
}

.hero-summary {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 850;
  padding: 12px 18px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-light {
  background: #fff;
  color: var(--burgundy-dark);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.36);
  color: #fff;
}

.btn-primary {
  width: 100%;
  background: var(--burgundy);
  color: #fff;
}

.btn-secondary {
  background: var(--soft);
  color: var(--burgundy);
}

.consult-card {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
  padding: 26px;
}

#hero-consultation {
  scroll-margin-top: 96px;
}

.consult-card.compact {
  align-self: start;
}

.form-kicker,
.card-subtitle {
  margin-bottom: 8px;
  color: var(--burgundy);
  font-size: 0.84rem;
  font-weight: 850;
}

.consult-card h2 {
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-size: 1.25rem;
  line-height: 1.25;
}

.lead-form {
  display: grid;
  gap: 12px;
}

.lead-form label {
  display: grid;
  gap: 6px;
}

.lead-form span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 12px 13px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 3px solid rgba(123, 24, 48, 0.16);
  border-color: var(--burgundy-2);
}

.privacy-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-message {
  border: 1px solid #b7e1c1;
  border-radius: 6px;
  background: #e9f7ef;
  color: #1e7e34;
  font-size: 0.88rem;
  font-weight: 750;
  margin-bottom: 14px;
  padding: 10px 12px;
}

.site-message.error {
  border: 1px solid #f3b5b5;
  background: #ffecec;
  color: #b00020;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-strip div {
  min-height: 108px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  padding: 22px;
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
}

.section {
  padding: clamp(68px, 9vw, 108px) 0;
}

.muted {
  background: var(--soft);
}

.about {
  background: var(--surface);
}

.about p {
  color: var(--muted);
  font-size: 1.02rem;
}

.split,
.location-grid,
.enquiry-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 6vw, 70px);
  align-items: start;
}

.section-heading h2 {
  max-width: 620px;
}

.section-heading.centered {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading.centered h2,
.section-heading.centered p,
.section-heading.centered .eyebrow {
  text-align: center;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.feature-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.feature-list p {
  margin: 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  padding: 15px 0;
}

.feature-list p::before,
.area-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--burgundy);
}

.enquiry-band {
  padding: clamp(64px, 8vw, 96px) 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(217, 181, 108, 0.14), transparent 30%),
    linear-gradient(135deg, var(--burgundy-dark), var(--burgundy) 58%, var(--burgundy-2));
  color: #fff;
}

.enquiry-copy {
  align-self: center;
}

.enquiry-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.contact-actions a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  color: #fff;
  font-weight: 750;
  padding: 10px 13px;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.contact-actions a:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.contact-actions a:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card-grid {
  display: grid;
  gap: 16px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.credentials {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.service-card,
.credential-card,
.address-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 40px rgba(44, 7, 16, 0.06);
}

.info-card,
.service-card,
.credential-card {
  padding: 24px;
}

.info-card span {
  display: inline-flex;
  margin-bottom: 52px;
  color: var(--burgundy);
  font-size: 0.78rem;
  font-weight: 900;
}

.info-card p,
.service-card p,
.credential-card p {
  color: var(--muted);
}

.info-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--burgundy);
  font-weight: 850;
}

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

.pill-grid span {
  display: flex;
  min-height: 54px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 750;
  padding: 12px 14px;
}

.area-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.address-card {
  overflow: hidden;
}

.address-card img,
.address-card iframe {
  width: 100%;
  height: 280px;
  border: 0;
  object-fit: cover;
  display: block;
}

.address-card div {
  padding: 22px;
}

.address-card p {
  color: var(--muted);
}

.floating-actions {
  pointer-events: none;
  position: fixed;
  inset: auto 0 24px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
}

.floating-action {
  pointer-events: auto;
  position: relative;
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(25, 20, 20, 0.24);
  isolation: isolate;
}

.floating-action::before {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border-radius: inherit;
  background: currentColor;
  opacity: 0.22;
  animation: button-pulse 1.8s ease-out infinite;
}

.floating-action.whatsapp {
  background: #178f4d;
  color: #178f4d;
}

.floating-action.call {
  background: var(--burgundy);
  color: var(--burgundy);
}

.floating-action svg {
  width: 28px;
  height: 28px;
  color: #fff;
  fill: #fff;
}

@keyframes button-pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.28;
  }

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

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

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.64);
  padding: 44px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: start;
}

.footer-brand {
  color: #fff;
  font-weight: 850;
}

.footer-brand img {
  border-radius: 50%;
}

.site-footer p {
  max-width: 760px;
  font-size: 0.86rem;
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-contact a {
  color: #fff;
  font-weight: 750;
}

.copyright {
  width: min(1120px, calc(100% - 32px));
  margin: 28px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover {
    transform: none;
  }

  .floating-action::before {
    animation: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .header-call {
    display: none;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    padding: 10px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-inner,
  .split,
  .location-grid,
  .enquiry-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 30px;
  }

  .trust-strip,
  .card-grid.three,
  .card-grid.credentials,
  .pill-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
  }

  .brand-copy strong {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-copy small {
    max-width: 176px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    padding-top: 68px;
  }

  .hero-inner {
    padding-top: 48px;
  }

  h1 {
  font-size: clamp(1.7rem, 7vw, 2.2rem);
}

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn,
  .contact-actions a {
    width: 100%;
  }

  .consult-card {
    padding: 20px;
  }

  .trust-strip,
  .card-grid.three,
  .card-grid.credentials,
  .pill-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div,
  .trust-strip div:nth-child(2) {
    border-right: 0;
  }

  .pill-grid span {
    min-height: 48px;
  }

  .floating-actions {
    bottom: 16px;
    padding: 0 14px;
  }

  .floating-action {
    width: 56px;
    height: 56px;
    font-size: 0.76rem;
  }

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

.chatbot-widget {
  position: fixed;
  left: 28px;
  top: 96px;
  z-index: 70;
  font-family: var(--font-body);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.chatbot-widget.is-ready {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.chatbot-widget.is-collapsed {
  top: auto;
  bottom: 112px;
}

.chatbot-toggle {
  display: grid;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(217, 181, 108, 0.96), #f4dfac 52%, var(--gold));
  color: var(--burgundy-dark);
  box-shadow: 0 18px 36px rgba(25, 20, 20, 0.24), inset 0 0 0 1px rgba(255, 255, 255, 0.54);
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.chatbot-widget:not(.is-collapsed) .chatbot-toggle {
  display: none;
}

.chatbot-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(25, 20, 20, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.62);
}

.chatbot-toggle-mark,
.chatbot-toggle-label {
  display: block;
}

.chatbot-toggle-mark {
  font-family: var(--font-display);
  font-size: 1.02rem;
}

.chatbot-toggle-label {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chatbot-greeting {
  display: none;
  position: absolute;
  left: 76px;
  bottom: 10px;
  width: min(250px, calc(100vw - 112px));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.35;
  padding: 12px 14px;
}

.chatbot-greeting::before {
  content: "";
  position: absolute;
  left: -7px;
  bottom: 18px;
  width: 12px;
  height: 12px;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  transform: rotate(45deg);
}

.chatbot-greeting strong,
.chatbot-greeting span {
  display: block;
}

.chatbot-greeting strong {
  color: var(--burgundy);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.chatbot-greeting span {
  color: var(--ink);
}

.chatbot-panel {
  position: relative;
  display: grid;
  grid-template-rows: auto auto minmax(96px, 1fr) auto auto auto;
  width: min(342px, calc(100vw - 32px));
  height: min(600px, calc(100vh - 124px));
  max-height: calc(100vh - 124px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 24px 70px rgba(25, 20, 20, 0.24);
}

.chatbot-panel[hidden] {
  display: none;
}

.chatbot-widget.is-fullscreen {
  right: 28px;
  top: 104px;
  bottom: 24px;
}

.chatbot-widget.is-fullscreen .chatbot-panel {
  width: min(760px, calc(100vw - 56px));
  height: 100%;
  max-height: none;
  grid-template-rows: 58px auto minmax(0, 1fr) auto auto auto;
}

.chatbot-widget.is-fullscreen .chatbot-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(260px, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
}

.chatbot-widget.is-fullscreen .chatbot-media {
  height: clamp(104px, 15vh, 132px);
  max-height: none;
}

.chatbot-widget.is-fullscreen .chatbot-media img {
  object-position: center 22%;
}

.chatbot-widget.is-fullscreen .chatbot-intro p {
  margin-top: 0;
  font-size: 0.78rem;
  line-height: 1.38;
}

.chatbot-widget.is-fullscreen .chatbot-booking {
  grid-column: 2;
  width: min(320px, 100%);
  min-height: 34px;
  margin-top: 8px;
}

.chatbot-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  background:
    radial-gradient(circle at 82% 0%, rgba(217, 181, 108, 0.2), transparent 36%),
    linear-gradient(135deg, var(--burgundy-dark), var(--burgundy) 58%, var(--burgundy-2));
  color: #fff;
  min-height: 58px;
  padding: 11px 14px;
  overflow: visible;
}

.chatbot-avatar {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--burgundy-dark);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 900;
  flex: 0 0 auto;
}

.chatbot-header strong,
.chatbot-header span {
  display: block;
  line-height: 1.2;
  white-space: normal;
}

.chatbot-header strong {
  font-size: 0.9rem;
}

.chatbot-header span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.74rem;
  font-weight: 750;
}

.chatbot-controls {
  display: flex;
  gap: 6px;
  align-items: center;
}

.chatbot-header button {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  flex: 0 0 auto;
}

.chatbot-intro {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  padding: 10px 12px 11px;
}

.chatbot-intro p {
  margin: 8px 2px 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.34;
}

.chatbot-media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
  height: clamp(96px, 18vw, 112px);
  aspect-ratio: auto;
  max-height: 112px;
}

.chatbot-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.chatbot-media a {
  position: absolute;
  right: 9px;
  bottom: 9px;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--gold);
  color: var(--burgundy-dark);
  font-size: 0.74rem;
  font-weight: 900;
  padding: 7px 12px;
}

.chatbot-booking {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--burgundy);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
}

.chatbot-messages {
  display: grid;
  align-content: start;
  gap: 7px;
  overflow-y: auto;
  min-height: 0;
  padding: 10px 12px 18px;
  scroll-padding-bottom: 18px;
}

.chatbot-widget.is-fullscreen .chatbot-messages {
  min-height: 0;
  overflow-y: auto;
  padding: 12px 16px 22px;
  scroll-padding-bottom: 22px;
}

.chatbot-widget.is-fullscreen .chatbot-quick-replies {
  max-height: 96px;
  overflow-y: auto;
}

.chatbot-widget.is-fullscreen .chatbot-form {
  flex: 0 0 auto;
}

.chatbot-widget.is-fullscreen .chatbot-disclaimer {
  flex: 0 0 auto;
  white-space: normal;
}

.chatbot-message {
  max-width: 88%;
  border-radius: 8px;
  font-size: 0.8rem;
  line-height: 1.4;
  padding: 8px 10px;
}

.chatbot-message.bot {
  justify-self: start;
  background: var(--soft);
  color: var(--ink);
  border: 1px solid rgba(234, 223, 221, 0.85);
}

.chatbot-message.user {
  justify-self: end;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-2));
  color: #fff;
}

.chatbot-quick-replies {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  border-top: 1px solid var(--line);
  padding: 8px 12px;
}

.chatbot-quick-replies button {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--burgundy);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  min-height: 32px;
  padding: 6px 9px;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.chatbot-quick-replies button:hover {
  border-color: rgba(123, 24, 48, 0.35);
  background: var(--soft);
  transform: translateY(-1px);
}

.chatbot-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding: 9px 12px;
}

.chatbot-form input {
  min-width: 0;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 9px 10px;
}

.chatbot-form button {
  height: 40px;
  border: 0;
  border-radius: 6px;
  background: var(--burgundy);
  color: #fff;
  cursor: pointer;
  font-weight: 850;
  padding: 9px 11px;
}

.chatbot-disclaimer {
  margin: 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.3;
  padding: 7px 14px 9px;
  text-align: center;
}

@media (max-width: 640px) {
  .chatbot-widget {
    top: auto;
    left: 14px;
    bottom: 88px;
  }

  .chatbot-widget.is-fullscreen {
    inset: 76px 12px 16px;
  }

  .chatbot-toggle {
    display: grid;
    width: 58px;
    height: 58px;
  }

  .chatbot-greeting {
    left: 0;
    bottom: 68px;
  }

  .chatbot-greeting::before {
    left: 22px;
    bottom: -7px;
    border: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .chatbot-panel {
    position: absolute;
    left: 0;
    bottom: 72px;
    grid-template-rows: auto auto minmax(92px, 1fr) auto auto auto;
    width: min(342px, calc(100vw - 28px));
    height: min(570px, calc(100vh - 174px));
  }

  .chatbot-panel[hidden] {
    display: none;
  }

  .chatbot-widget.is-fullscreen .chatbot-panel {
    position: static;
    width: 100%;
    height: 100%;
    max-height: none;
    grid-template-rows: 58px auto minmax(0, 1fr) auto auto auto;
  }

  .chatbot-widget.is-fullscreen .chatbot-intro {
    display: block;
  }

  .chatbot-widget.is-fullscreen .chatbot-media {
    height: clamp(110px, 20vh, 150px);
  }

  .chatbot-widget.is-fullscreen .chatbot-booking {
    width: 100%;
  }

  .chatbot-quick-replies {
    grid-template-columns: 1fr;
  }
}
