:root {
        --green-900: #123524;
        --green-800: #1c4a33;
        --green-700: #2d6a4f;
        --green-100: #e9f3ec;
        --cream-50: #faf7f0;
        --cream-100: #f3ecdf;
        --sand-300: #dccfb5;
        --text-900: #1d2a22;
        --text-700: #425248;
        --white: #ffffff;
        --shadow: 0 10px 30px rgba(18, 53, 36, 0.12);
        --radius: 14px;
      }

      * {
        box-sizing: border-box;
      }

      html,
      body {
        margin: 0;
        padding: 0;
        font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        color: var(--text-900);
        background: var(--cream-50);
        line-height: 1.6;
      }

      a {
        color: inherit;
      }

      .container {
        width: min(1120px, 92vw);
        margin: 0 auto;
      }

      .site-header {
        position: sticky;
        top: 0;
        z-index: 20;
        background: rgba(250, 247, 240, 0.9);
        backdrop-filter: blur(8px);
        border-bottom: 1px solid #e8e0d0;
      }

      .nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.9rem 0;
      }

      .brand {
        display: flex;
        align-items: center;
        gap: 0.7rem;
        font-weight: 700;
        color: var(--green-900);
        letter-spacing: 0.2px;
      }

      .brand-mark {
        width: 34px;
        height: 34px;
        border-radius: 9px;
        background: linear-gradient(145deg, var(--green-700), var(--green-900));
        display: grid;
        place-items: center;
        color: var(--white);
        font-size: 0.95rem;
        font-weight: 800;
      }

      .nav-links {
        display: flex;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
      }

      .nav-links a {
        text-decoration: none;
        color: var(--text-700);
        font-weight: 500;
        font-size: 0.95rem;
      }

      .btn {
        display: inline-block;
        border: 0;
        text-decoration: none;
        font-weight: 650;
        cursor: pointer;
        border-radius: 999px;
        padding: 0.8rem 1.2rem;
        transition: 0.2s ease;
      }

      .btn-primary {
        background: var(--green-800);
        color: var(--white);
        box-shadow: var(--shadow);
      }

      .btn-primary:hover {
        background: var(--green-900);
        transform: translateY(-1px);
      }

      .btn-secondary {
        background: transparent;
        color: var(--green-900);
        border: 1px solid var(--green-700);
      }

      .hero {
        padding: 4.5rem 0 3.5rem;
        background:
          radial-gradient(circle at 8% 8%, rgba(45, 106, 79, 0.16), transparent 30%),
          radial-gradient(circle at 92% 10%, rgba(220, 207, 181, 0.4), transparent 28%),
          var(--cream-50);
      }

      .hero-grid {
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        gap: 2rem;
        align-items: center;
      }

      h1,
      h2,
      h3 {
        line-height: 1.2;
        margin-top: 0;
      }

      h1 {
        font-size: clamp(2rem, 4.2vw, 3.2rem);
        margin-bottom: 0.9rem;
        color: var(--green-900);
      }

      .lead {
        margin: 0 0 1.5rem;
        color: var(--text-700);
        font-size: 1.05rem;
        max-width: 60ch;
      }

      .hero-cta {
        display: flex;
        flex-wrap: wrap;
        gap: 0.7rem;
      }

      .hero-card {
        background: var(--white);
        border: 1px solid #efe6d5;
        border-radius: var(--radius);
        padding: 1.2rem;
        box-shadow: var(--shadow);
      }

      .hero-card h3 {
        margin-bottom: 0.45rem;
        color: var(--green-900);
      }

      .checklist {
        list-style: none;
        margin: 0.7rem 0 0;
        padding: 0;
      }

      .checklist li {
        margin: 0.45rem 0;
        color: var(--text-700);
      }

      .checklist li::before {
        content: "✓";
        color: var(--green-700);
        font-weight: 700;
        margin-right: 0.5rem;
      }

      section {
        padding: 3.5rem 0;
      }

      .section-heading {
        max-width: 760px;
        margin-bottom: 1.4rem;
      }

      .section-heading h2 {
        font-size: clamp(1.45rem, 2.8vw, 2.1rem);
        color: var(--green-900);
        margin-bottom: 0.6rem;
      }

      .section-heading p {
        margin: 0;
        color: var(--text-700);
      }

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

      .service-card {
        background: var(--white);
        border: 1px solid #ece3d3;
        border-radius: var(--radius);
        padding: 1rem;
        box-shadow: 0 8px 18px rgba(18, 53, 36, 0.06);
      }

      .service-category {
        display: inline-block;
        font-size: 0.78rem;
        letter-spacing: 0.02em;
        font-weight: 700;
        color: var(--green-700);
        background: var(--green-100);
        border-radius: 999px;
        padding: 0.22rem 0.62rem;
        margin-bottom: 0.55rem;
      }

      .service-card h3 {
        font-size: 1.05rem;
        margin: 0 0 0.4rem;
        color: var(--green-900);
      }

      .service-card p {
        margin: 0 0 0.55rem;
        color: var(--text-700);
        font-size: 0.96rem;
      }

      .service-price {
        font-weight: 700;
        color: var(--green-800);
      }

      .muted {
        color: var(--text-700);
      }

      .two-col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
      }

      .info-card {
        background: var(--white);
        border: 1px solid #ece3d3;
        border-radius: var(--radius);
        padding: 1.1rem;
      }

      .info-card h3 {
        margin-bottom: 0.55rem;
        color: var(--green-900);
      }

      .hours-note {
        margin-top: 0.7rem;
        font-size: 0.95rem;
      }

      .policy-list {
        margin: 0;
        padding-left: 1.1rem;
      }

      .policy-list li {
        margin-bottom: 0.6rem;
        color: var(--text-700);
      }

      .cta-band {
        background: linear-gradient(135deg, var(--green-800), var(--green-900));
        color: var(--white);
        border-radius: calc(var(--radius) + 2px);
        padding: 2rem 1.2rem;
        display: grid;
        gap: 0.8rem;
        text-align: center;
      }

      .cta-band p {
        margin: 0;
        color: #e9f2eb;
      }

      .site-footer {
        padding: 2rem 0 2.5rem;
        color: var(--text-700);
        font-size: 0.95rem;
      }

      @media (max-width: 960px) {
        .hero-grid,
        .services-grid,
        .two-col {
          grid-template-columns: 1fr;
        }

        .hero {
          padding-top: 3.8rem;
        }
      }

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

        .nav-links {
          width: 100%;
          justify-content: space-between;
        }
      }

/* only small tweaks that should override base.css */

:root {
  --customer-chat-bg: #0f172a;
  --customer-chat-surface: #ffffff;
  --customer-chat-surface-soft: #f8fafc;
  --customer-chat-border: rgba(15, 23, 42, 0.12);
  --customer-chat-text: #0f172a;
  --customer-chat-muted: #475569;
  --customer-chat-accent: #0f766e;
  --customer-chat-accent-strong: #115e59;
  --customer-chat-user-bubble: #dcfce7;
  --customer-chat-assistant-bubble: #eff6ff;
  --customer-chat-shadow: 0 20px 60px rgba(15, 23, 42, 0.2);
}

[data-customer-chat='launcher'] {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2147482500;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.15rem;
  background: linear-gradient(135deg, var(--customer-chat-accent), var(--customer-chat-accent-strong));
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--customer-chat-shadow);
}

[data-customer-chat='panel'] {
  position: fixed;
  right: 1.25rem;
  bottom: 5.5rem;
  width: min(24rem, calc(100vw - 2rem));
  max-height: min(75vh, 42rem);
  display: flex;
  flex-direction: column;
  border-radius: 1.25rem;
  background: var(--customer-chat-surface);
  color: var(--customer-chat-text);
  box-shadow: var(--customer-chat-shadow);
  overflow: hidden;
  z-index: 2147482499;
  border: 1px solid var(--customer-chat-border);
  transform: translateY(1rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

[data-customer-chat='panel'][data-open='true'] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

[data-customer-chat='header'] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1rem 0.85rem;
  background: var(--customer-chat-bg);
  color: #fff;
}

[data-customer-chat='title'] {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

[data-customer-chat='subtitle'] {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.82);
}

[data-customer-chat='close'] {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

[data-customer-chat='transcript'] {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  overflow-y: auto;
  background: var(--customer-chat-surface-soft);
  min-height: 15rem;
}

[data-customer-chat='message'] {
  max-width: 85%;
  padding: 0.75rem 0.9rem;
  border-radius: 1rem;
  line-height: 1.45;
  font-size: 0.95rem;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

[data-customer-chat='message'][data-role='user'] {
  align-self: flex-end;
  background: var(--customer-chat-user-bubble);
}

[data-customer-chat='message'][data-role='assistant'] {
  align-self: flex-start;
  background: var(--customer-chat-assistant-bubble);
}

[data-customer-chat='typing'] {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.32rem;
  max-width: 4.5rem;
  border-radius: 1rem;
  border-top-left-radius: 0.35rem;
  background: var(--customer-chat-assistant-bubble);
  padding: 0.78rem 0.9rem;
}

[data-customer-chat='typing'] span {
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 999px;
  background: var(--customer-chat-muted);
  animation: customerChatTypingPulse 1.05s ease-in-out infinite;
}

[data-customer-chat='typing'] span:nth-child(2) {
  animation-delay: 0.15s;
}

[data-customer-chat='typing'] span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes customerChatTypingPulse {
  0%, 80%, 100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-0.18rem);
  }
}

[data-customer-chat='attachments'] {
  align-self: stretch;
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding: 0.1rem 0 0.35rem;
  scroll-snap-type: x proximity;
}

[data-customer-chat='catalog-card'] {
  flex: 0 0 11.5rem;
  overflow: hidden;
  border: 1px solid var(--customer-chat-border);
  border-radius: 1rem;
  background: #fff;
  scroll-snap-align: start;
}

[data-customer-chat='catalog-card'] img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eef4ff;
}

[data-customer-chat='catalog-card-body'] {
  display: grid;
  gap: 0.35rem;
  padding: 0.65rem;
}

[data-customer-chat='catalog-card-body'] strong {
  font-size: 0.9rem;
  line-height: 1.25;
}

[data-customer-chat='catalog-card-body'] span {
  color: var(--customer-chat-accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
}

[data-customer-chat='catalog-card-body'] p {
  margin: 0;
  color: var(--customer-chat-muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

[data-customer-chat='catalog-card-body'] button {
  border: 1px solid var(--customer-chat-border);
  border-radius: 999px;
  background: var(--customer-chat-assistant-bubble);
  color: var(--customer-chat-accent-strong);
  cursor: pointer;
  padding: 0.45rem 0.55rem;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
}

[data-customer-chat='status'] {
  min-height: 1.2rem;
  padding: 0 1rem 0.65rem;
  font-size: 0.84rem;
  color: var(--customer-chat-muted);
}

[data-customer-chat='status'][data-state='error'] {
  color: #b91c1c;
}

[data-customer-chat='form'] {
  display: flex;
  gap: 0.65rem;
  padding: 0 1rem 1rem;
  background: var(--customer-chat-surface);
}

[data-customer-chat='input'] {
  flex: 1 1 auto;
  min-width: 0;
  border: 1px solid var(--customer-chat-border);
  border-radius: 999px;
  padding: 0.85rem 1rem;
  font: inherit;
  background: #fff;
  color: var(--customer-chat-text);
}

[data-customer-chat='send'] {
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1rem;
  background: var(--customer-chat-accent);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

[data-customer-chat='send'][disabled],
[data-customer-chat='input'][disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 640px) {
  [data-customer-chat='launcher'] {
    right: 1rem;
    bottom: 1rem;
  }

  [data-customer-chat='panel'] {
    right: 1rem;
    left: 1rem;
    width: auto;
    bottom: 5rem;
  }
}