﻿@import url("https://fonts.googleapis.com/css2?family=Karla:wght@300;400;600;700&family=Literata:opsz,wght@7..72,400;7..72,600&display=swap");

:root {
  --bg: #f6f2ea;
  --ink: #1c1a16;
  --muted: #5a544b;
  --accent: #b14b2f;
  --accent-2: #2a6f6b;
  --gold: #c59a4a;
  --gold-dark: #9b7430;
  --card: #ffffff;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Karla", system-ui, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(rgba(246, 242, 234, 0.78), rgba(246, 242, 234, 0.78)),
    url("./assets/background.jpg") center / 100% 100% no-repeat fixed;
}

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

.shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  background: linear-gradient(120deg, var(--gold), #e3c070);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  position: sticky;
  top: 0;
  z-index: 10;
}

.topbar-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 18px 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: "Literata", serif;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: #2b1b04;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
}

.nav-trigger::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 8px;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid currentColor;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 220px;
  background: #fff6e3;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  padding: 12px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 20;
}

.dropdown-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b4e16;
  padding: 4px 6px;
}

.dropdown-menu a {
  padding: 6px 8px;
  border-radius: 10px;
}

.dropdown-menu a:hover {
  background: var(--gold-dark);
  color: #fff;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: flex;
}

.nav-links a:hover {
  background: var(--gold-dark);
  color: #fff;
}

.hero {
  max-width: 1080px;
  margin: 32px auto 0;
  padding: 24px 16px;
  display: grid;
  gap: 18px;
  justify-items: center;
}

.hero h1 {
  font-family: "Literata", serif;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  margin: 0;
  width: 100%;
  max-width: 1600px;
  line-height: 1.15;
  text-wrap: balance;
  text-align: center;
}

.hero p {
  max-width: 1600px;
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
  text-align: left;
}

.content {
  max-width: 1080px;
  margin: 0 auto 48px;
  padding: 0 16px 40px;
}

.card {
  background: var(--card);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 22px;
  margin-top: 18px;
}

.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.address-bold {
  font-weight: 700;
}

.product-hero-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border-radius: 16px;
  margin: 12px auto 18px;
  box-shadow: var(--shadow);
  display: block;
}

.page-hero-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border-radius: 16px;
  margin: 12px 0 18px;
  box-shadow: var(--shadow);
  display: block;
}

.home-extra-bold {
  margin-top: 18px;
}

.home-intro-summary {
  font-weight: 700;
}

.home-extra-bold p {
  margin: 0 0 14px;
  line-height: 1.7;
}

.home-extra-title {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.home-products-section {
  margin: 24px 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
}

.home-products-heading {
  margin-bottom: 18px;
}

.home-products-heading h2 {
  margin: 0;
  font-family: "Literata", serif;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  line-height: 1.18;
  color: #2b1b04;
}

.home-products-heading p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.home-products-heading .home-products-subtitle {
  max-width: none;
  font-weight: 700;
  white-space: nowrap;
}

.home-products-kicker {
  margin: 0 0 8px;
  color: #8a6520;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.home-product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(197, 154, 74, 0.32);
  border-radius: 22px;
  background: #fff8e9;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.home-product-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  margin-bottom: 16px;
  background: #fff;
  border: 1px solid rgba(155, 116, 48, 0.16);
}

.home-product-category {
  width: fit-content;
  margin: 0 0 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f3e5c3;
  color: #655d54;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-product-card h3 {
  margin: 0 0 12px;
  font-family: "Literata", serif;
  font-size: clamp(1.55rem, 2vw, 2rem);
  color: #2b1b04;
}

.home-product-card p {
  margin: 0;
  color: #5a544b;
  line-height: 1.6;
}

.home-product-card ul {
  margin: 18px 0 22px;
  padding-left: 20px;
  color: #5a544b;
}

.home-product-card li {
  margin-bottom: 9px;
  line-height: 1.5;
}

.home-product-card a {
  margin-top: auto;
  color: #8a6520;
  font-weight: 700;
}

.home-product-card a::after {
  content: " \2192";
}

.home-capabilities {
  margin: 18px 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-capability-card {
  background: #fff8e9;
  border: 1px solid rgba(155, 116, 48, 0.28);
  border-radius: 20px;
  padding: 22px;
}

.home-capability-card h3 {
  margin: 0 0 12px;
  color: #b14b2f;
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.home-capability-card p {
  margin: 0;
  color: #5a544b;
  line-height: 1.55;
}

.home-capability-list {
  margin: 0;
  padding-left: 22px;
  color: #5a544b;
}

.home-capability-list li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.home-focus-lines p + p {
  margin-top: 10px;
}

.home-demo-prompt {
  margin: 18px 0 0;
  color: #2b1b04;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.4;
}

.home-cta-row {
  margin-top: 16px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.home-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 26px;
  border-radius: 18px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
}

.home-cta-primary {
  color: #2b1b04;
  background: linear-gradient(120deg, #f3d9a3 0%, #d9b46a 100%);
  border: 1px solid rgba(155, 116, 48, 0.35);
}

.home-cta-secondary {
  color: #2b1b04;
  background: linear-gradient(120deg, #f8e6bf 0%, #e1bf79 100%);
  border: 1px solid rgba(155, 116, 48, 0.45);
}

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

.form-field-card {
  padding: 14px;
}

.form-field-card p {
  color: inherit;
}

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

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  color: var(--ink);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(28, 26, 22, 0.22);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(197, 154, 74, 0.2);
}

.contact-form textarea {
  resize: vertical;
}

.form-error {
  color: #b42318;
  margin: 6px 0 0;
  font-size: 0.9rem;
}

.form-success {
  color: #166534;
  background: #ecfdf3;
  border: 1px solid #abefc6;
  border-radius: 10px;
  padding: 10px 12px;
  margin: 0 0 14px;
  font-weight: 600;
}

.contact-form button {
  width: fit-content;
  border: none;
  border-radius: 999px;
  background: var(--gold-dark);
  color: #fff;
  font: inherit;
  font-weight: 700;
  padding: 10px 16px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #7f5f22;
}

.product-chatbot {
  display: grid;
  gap: 14px;
}

.product-chatbot-widget {
  position: fixed;
  right: 10px;
  bottom: 22px;
  z-index: 30;
}

.product-chatbot-launcher {
  width: 62px;
  min-height: 58px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #f3d9a3 0%, #c59a4a 100%);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-chatbot-launcher-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-chatbot-launcher-svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #2b1b04;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-chatbot-panel {
  width: min(380px, calc(100vw - 24px));
  margin-bottom: 14px;
  padding: 16px;
  border-radius: 20px;
  background: #fffdf7;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(155, 116, 48, 0.22);
}

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

.product-chatbot-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.product-chatbot-panel-header h2 {
  margin: 0;
  font-size: 1.2rem;
}

.product-chatbot-panel-header p {
  margin: 4px 0 0;
  color: var(--muted);
}

.product-chatbot-close {
  border: none;
  background: transparent;
  color: #6b4e16;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.product-chatbot-messages {
  min-height: 180px;
  max-height: 300px;
  overflow-y: auto;
  padding: 14px;
  border-radius: 16px;
  background: #fff8e9;
  border: 1px solid rgba(155, 116, 48, 0.22);
  display: grid;
  gap: 10px;
}

.product-chatbot-message {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 14px;
  line-height: 1.5;
}

.product-chatbot-message-bot {
  background: #f3e2b4;
  color: #3f2b09;
}

.product-chatbot-message-user {
  justify-self: end;
  background: #c59a4a;
  color: #fff;
}

.product-chatbot-prompts {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product-chatbot-prompts-hidden {
  display: none;
}

.product-chatbot-prompt {
  border: 1px solid rgba(155, 116, 48, 0.3);
  border-radius: 999px;
  background: #fff;
  color: #5a544b;
  padding: 8px 12px;
  font: inherit;
  cursor: pointer;
}

.product-chatbot-form {
  display: grid;
  gap: 8px;
}

.product-chatbot-label {
  font-weight: 700;
}

.product-chatbot-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.product-chatbot-input {
  width: 100%;
  border: 1px solid rgba(28, 26, 22, 0.22);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
  color: var(--ink);
}

.product-chatbot-input:focus {
  outline: none;
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(197, 154, 74, 0.2);
}

.product-chatbot-submit {
  border: none;
  border-radius: 12px;
  background: var(--gold-dark);
  color: #fff;
  padding: 12px 18px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.contact-social-row {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.footer-social-row {
  max-width: 1080px;
  margin: 14px auto 0;
  padding: 0 16px 18px;
  justify-content: flex-end;
}

.contact-social-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.social-youtube {
  background: #e11d2e;
}

.youtube-pill {
  width: 32px;
  height: 24px;
  border-radius: 12px;
  background: #d9d9d9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.youtube-play {
  width: 16px;
  height: 12px;
  border-radius: 6px;
  background: #ff0033;
  position: relative;
}

.youtube-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-35%, -50%);
  width: 0;
  height: 0;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 5px solid #fff;
}

.social-instagram {
  background: radial-gradient(circle at 18% 88%, #feda75 0%, #fa7e1e 35%, #d62976 58%, #962fbf 78%, #4f5bd5 100%);
}

.instagram-glyph {
  width: 26px;
  height: 26px;
  border: 3px solid #fff;
  border-radius: 8px;
  position: relative;
  display: inline-block;
}

.instagram-lens {
  width: 10px;
  height: 10px;
  border: 3px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.instagram-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 4px;
  right: 4px;
}

.social-facebook {
  background: #1877f2;
}

.social-linkedin {
  background: #0a66c2;
}

.focus-area-grid {
  gap: 18px;
}

.focus-area-card,
.focus-area-grid > div {
  background: #fff3d9;
  border: 1px solid rgba(155, 116, 48, 0.25);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.focus-area-card h3,
.focus-area-grid > div h3 {
  margin: 0 0 8px;
}

.focus-area-card p,
.focus-area-grid > div p {
  margin: 0;
  color: var(--muted);
}

.contact-info-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: stretch;
}

.contact-info-grid .focus-area-card {
  height: 100%;
}

.contact-info-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
}

.contact-info-title h3 {
  margin: 0;
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  display: block;
  margin: 0;
  flex-shrink: 0;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.approach-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  margin: 14px 0 18px;
}

.approach-step {
  text-align: center;
}

.approach-step p {
  margin: 10px 0 0;
  font-weight: 700;
  color: var(--muted);
}

.approach-badge {
  width: 86px;
  height: 86px;
  margin: 0 auto;
  border-radius: 50%;
  border: 3px solid #c79a3a;
  color: #b48726;
  font-size: 2rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.1);
}

.approach-summary {
  border: 1px solid rgba(40, 35, 70, 0.15);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.approach-summary h3 {
  margin-top: 0;
}

.approach-summary p {
  margin: 8px 0;
}

.approach-definition-card {
  display: flex;
  align-items: center;
  gap: 14px;
}

.approach-definition-grid {
  margin-top: 14px;
}

.approach-definition-badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 3px solid #c79a3a;
  color: #b48726;
  font-size: 1.85rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  background: #fff;
  flex-shrink: 0;
}

footer {
  margin-top: auto;
  padding: 24px 16px 40px;
  background: linear-gradient(120deg, #e3c070, var(--gold));
  color: #2b1b04;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .home-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-capabilities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-products-grid {
    grid-template-columns: 1fr;
  }

  .home-products-heading .home-products-subtitle {
    white-space: normal;
  }

  .home-capabilities {
    grid-template-columns: 1fr;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .product-chatbot-input-row {
    grid-template-columns: 1fr;
  }

  .product-chatbot-widget {
    right: 6px;
    bottom: 12px;
  }

  .product-chatbot-launcher {
    width: 58px;
    min-height: 54px;
  }

  .product-chatbot-panel {
    width: min(360px, calc(100vw - 24px));
  }

  .approach-definition-card {
    align-items: flex-start;
  }
}
