:root {
  --bg: #0b0d12;
  --paper: #0f1219;
  --ink: #f2f4f8;
  --muted: rgba(242, 244, 248, .72);
  --faint: rgba(242, 244, 248, .12);
  --rule: rgba(242, 244, 248, .14);
  --accent: #d7c7a1;
  /* warm premium gold */
  --accent2: #9bb6d8;
  /* cool slate-blue */
  --max: 1140px;
  --radius: 18px;
  --shadow: 0 22px 70px rgba(0, 0, 0, .55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(900px 420px at 25% -10%, rgba(215, 199, 161, .14), transparent 60%),
    radial-gradient(900px 420px at 78% 0%, rgba(155, 182, 216, .12), transparent 60%),
    linear-gradient(180deg, #0a0c11 0%, #07080c 100%);
  color: var(--ink);
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  letter-spacing: .1px;
}

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

a:hover {
  opacity: .92;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(11, 13, 18, .72);
  border-bottom: 1px solid var(--rule);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

/* Brand & Logo */
.brand {
  display: block;
  padding: 0;
}

.logo-img {
  height: 50px;
  /* Adjust as needed */
  width: auto;
  display: block;
}

.brandname {
  display: none;
}

.mark {
  display: none;
}

.brandname strong {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 14px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.brandname span {
  font-size: 12px;
  color: var(--muted);
}

.navlinks {
  display: flex;
  gap: 18px;
  align-items: center;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(242, 244, 248, .78);
}

.navlinks a {
  padding: 8px 10px;
  border-radius: 999px;
}

.navlinks a.active {
  color: var(--ink);
  border: 1px solid var(--rule);
  background: rgba(242, 244, 248, .04);
}

.actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid var(--rule);
  background: rgba(242, 244, 248, .03);
}

.btn:hover {
  background: rgba(242, 244, 248, .06);
}

.btn.primary {
  border-color: rgba(215, 199, 161, .35);
  background: linear-gradient(135deg, rgba(215, 199, 161, .20), rgba(155, 182, 216, .10));
}

.btn.primary:hover {
  background: linear-gradient(135deg, rgba(215, 199, 161, .26), rgba(155, 182, 216, .14));
}

.mobileToggle {
  display: none;
  border: 1px solid var(--rule);
  background: rgba(242, 244, 248, .03);
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 12px;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
}

.mobileMenu {
  display: none;
  padding: 10px 0 18px 0;
  border-top: 1px solid var(--rule);
}

.mobileMenu a {
  display: block;
  padding: 12px 6px;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
  color: rgba(242, 244, 248, .84);
}

.mobileMenu a.active {
  color: var(--ink);
}

.hero {
  padding: 70px 0 46px 0;
}

.kicker {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(242, 244, 248, .70);
  display: flex;
  align-items: center;
  gap: 10px;
}

.kicker:before {
  content: "";
  width: 44px;
  height: 1px;
  background: rgba(215, 199, 161, .45);
  display: inline-block;
}

.h1 {
  margin: 18px 0 0 0;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: .2px;
}

.subhead {
  margin: 18px 0 0 0;
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 74ch;
}

.heroGrid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: stretch;
}

.card {
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: rgba(242, 244, 248, .03);
  overflow: hidden;
}

.card.pad {
  padding: 22px;
}

.card h3 {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(242, 244, 248, .86);
}

.card p {
  margin: 10px 0 0 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}

.heroImage {
  height: 100%;
  min-height: 340px;
  position: relative;
}

.heroImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.85) contrast(1.05);
  opacity: .92;
}

.heroImage:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 13, 18, .15), rgba(11, 13, 18, .75));
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.metric {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--rule);
  background: rgba(242, 244, 248, .02);
}

.metric b {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(242, 244, 248, .88);
}

.metric div {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding: 54px 0;
  border-top: 1px solid var(--rule);
}

.sectionHeader {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.sectionHeader h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: .2px;
}

.sectionHeader .note {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(242, 244, 248, .62);
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.tile {
  padding: 22px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: rgba(242, 244, 248, .03);
}

.tile .eyebrow {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(215, 199, 161, .92);
}

.tile h3 {
  margin: 10px 0 0 0;
  font-size: 18px;
  font-weight: 600;
}

.tile p {
  margin: 10px 0 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

.list {
  margin: 14px 0 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.badgeRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.badge {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  background: rgba(242, 244, 248, .02);
  color: rgba(242, 244, 248, .78);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow);
}

.photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: saturate(.85) contrast(1.05);
  opacity: .92;
}

.photo .cap {
  padding: 14px 18px;
  background: rgba(242, 244, 248, .03);
  border-top: 1px solid var(--rule);
  color: rgba(242, 244, 248, .70);
  font-size: 13px;
  line-height: 1.5;
}

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

.field label {
  display: block;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(242, 244, 248, .70);
}

.field input,
.field textarea {
  width: 100%;
  margin-top: 8px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--rule);
  background: rgba(0, 0, 0, .18);
  color: var(--ink);
  outline: none;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(215, 199, 161, .35);
  box-shadow: 0 0 0 4px rgba(215, 199, 161, .10);
}

.small {
  color: rgba(242, 244, 248, .58);
  font-size: 12px;
  line-height: 1.55;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.footer {
  border-top: 1px solid var(--rule);
  padding: 26px 0 40px 0;
  color: rgba(242, 244, 248, .62);
  font-size: 13px;
  line-height: 1.6;
}

.footer strong {
  color: rgba(242, 244, 248, .82);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
}

@media (max-width: 980px) {
  .heroGrid {
    grid-template-columns: 1fr;
  }

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

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

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

  .photo img {
    height: 360px;
  }

  .navlinks {
    display: none;
  }

  .mobileToggle {
    display: inline-flex;
  }

  .mobileMenu.show {
    display: block;
  }

  .metrics {
    grid-template-columns: 1fr;
  }
}
/* =========================
   Kavachi Chat Widget FIX
   ========================= */
#kavachi-chat-btn{
  position: fixed !important;
  right: 18px !important;
  bottom: 18px !important;
  z-index: 2147483647 !important;
  padding: 12px 14px !important;
  border-radius: 999px !important;
  border: 0 !important;
  background: #111 !important;
  color: #fff !important;
  cursor: pointer !important;
  font: 14px system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  line-height: 1 !important;
}

#kavachi-chat{
  position: fixed !important;
  right: 18px !important;
  bottom: 70px !important;
  z-index: 2147483647 !important;
  width: 360px !important;
  max-width: 92vw !important;
  height: 420px !important;
  max-height: 70vh !important;
  background: #fff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 14px !important;
  box-shadow: 0 18px 60px rgba(0,0,0,0.18) !important;
  overflow: hidden !important;
  display: none;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  color: #111 !important;
}

#kavachi-chat *{
  color: #111 !important;
  box-sizing: border-box !important;
}

#kavachi-chat header{
  padding: 10px 12px !important;
  background: #111 !important;
  color: #fff !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}
#kavachi-chat header *{ color:#fff !important; }

#kavachi-chat main{
  padding: 10px 12px !important;
  height: 320px !important;
  overflow: auto !important;
  background: #f7f7f8 !important;
}

#kavachi-chat .msg{ margin: 10px 0 !important; line-height: 1.35 !important; }
#kavachi-chat .u{ font-weight: 600 !important; margin-bottom: 4px !important; }

#kavachi-chat .b{
  white-space: pre-wrap !important;
  background: #fff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 10px !important;
  padding: 8px 10px !important;
  display: inline-block !important;
}

#kavachi-chat footer{
  display: flex !important;
  gap: 8px !important;
  padding: 10px 12px !important;
  border-top: 1px solid #eee !important;
  background: #fff !important;
}

#kavachi-in{
  flex: 1 !important;
  padding: 10px !important;
  border: 1px solid #ddd !important;
  border-radius: 10px !important;
  background: #fff !important;
  color: #111 !important;
  font: 14px system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
}
#kavachi-in::placeholder{ color: #6b7280 !important; }

#kavachi-send{
  padding: 10px 12px !important;
  border: 0 !important;
  border-radius: 10px !important;
  background: #111 !important;
  color: #fff !important;
  cursor: pointer !important;
  font: 14px system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
}

#kavachi-close{
  background: transparent !important;
  border: 0 !important;
  color: #fff !important;
  cursor: pointer !important;
  font-size: 18px !important;
}/* Extra hardening for fixed widgets */
html, body { transform: none !important; }
#kavachi-chat-btn, #kavachi-chat { position: fixed !important; }
#kavachi-chat-btn { bottom: 18px !important; right: 18px !important; }
#kavachi-chat { bottom: 70px !important; right: 18px !important; }

/* Hard overrides to prevent page layout rules from breaking widget */
#kavachi-chat-btn, #kavachi-chat { position: fixed !important; }
#kavachi-chat-btn { display: inline-flex !important; align-items:center !important; justify-content:center !important; }
#kavachi-chat { margin: 0 !important; }
