/* Shared site styles (restored minimal build) */
:root {
  /* Typography (institutional, readable, fast-loading).
     We intentionally rely on OS fonts to keep performance high. */
  --font-display: Georgia, ui-serif, "Times New Roman", Times, serif;
  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Noto Sans",
    "Liberation Sans", sans-serif;

  --linen: #f5efe0;
  --sandstone: #d4bf9e;
  /* Primary brand green (per spec) */
  --deep-moss: #3b5e45;
  --deep-moss-2: #2f4a38;
  --ink: rgba(20, 22, 24, 0.96);
  --text: rgba(44, 36, 32, 0.92);
  --muted: rgba(44, 36, 32, 0.74);
  --gold: #c8871a;
  --grove: #3b5e45;
  --warm-charcoal: #2c2420;

  --radius: 14px;
  --container: 1240px;

  --shadow-sm: 0 10px 24px rgba(37, 61, 44, 0.08);
  --shadow-md: 0 18px 44px rgba(37, 61, 44, 0.12);
  --shadow-lg: 0 34px 90px rgba(12, 16, 14, 0.18);

  /* Fluid type + rhythm (modern responsive baseline) */
  --text-fluid: clamp(0.9375rem, 0.28vw + 0.88rem, 1.0625rem);
  --leading-body: 1.65;
  --leading-snug: 1.35;
  --measure: 68ch;
  --safe-x: max(0px, env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px));
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  background: var(--linen);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--text-fluid);
  line-height: var(--leading-body);
}

main {
  min-height: 40vh;
}

main p {
  max-width: var(--measure);
  text-wrap: pretty;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(200, 135, 26, 0.28);
  outline-offset: 3px;
}

/* Skip link (injected on pages using shared-layout.js) */
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus,
.skip-link:focus-visible {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 100000;
  width: auto;
  height: auto;
  margin: 0;
  padding: 12px 16px;
  overflow: visible;
  clip: auto;
  white-space: normal;
  border-radius: 10px;
  background: var(--warm-charcoal);
  color: var(--linen);
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-md);
}

.container {
  width: min(var(--container), calc(100% - 56px - var(--safe-x)));
  margin: 0 auto;
}

.divider {
  height: 1px;
  background: rgba(37, 61, 44, 0.12);
}

/* Shared header/footer placeholders injected by assets/shared-layout.js */
.topnav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 254, 249, 0.84);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(37, 61, 44, 0.10);
}

.topnav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 18px;
  min-height: 80px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  height: 64px;
  width: auto;
  max-width: min(300px, 44vw);
  object-fit: contain;
  object-position: left center;
  display: block;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.nav-toggle {
  display: none;
  appearance: none;
  border: 1px solid rgba(37, 61, 44, 0.14);
  background: rgba(255, 255, 255, 0.62);
  color: rgba(44, 36, 32, 0.86);
  border-radius: 999px;
  padding: 10px 12px;
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  cursor: pointer;
}

.nav-toggle:hover {
  background: rgba(37, 61, 44, 0.06);
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.navmore {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.navmore > button {
  appearance: none;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
  color: rgba(44, 36, 32, 0.86);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 10px;
  border-radius: 999px;
}

.navmore > button:hover {
  background: rgba(37, 61, 44, 0.06);
}

.navmore-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 220px;
  border-radius: 14px;
  border: 1px solid rgba(37, 61, 44, 0.12);
  background: rgba(255, 254, 249, 0.96);
  box-shadow: 0 18px 44px rgba(37, 61, 44, 0.14);
  padding: 8px;
  display: none;
  z-index: 30;
}

.navmore-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  text-transform: none;
  letter-spacing: 0.02em;
}

.navmore-menu a:hover {
  background: rgba(37, 61, 44, 0.06);
}

.navmore[data-open="true"] .navmore-menu {
  display: block;
}

.navlinks a {
  text-decoration: none;
  color: rgba(44, 36, 32, 0.86);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 10px;
  border-radius: 999px;
}

.navlinks a:hover {
  background: rgba(37, 61, 44, 0.06);
}

.navlinks a[aria-current="page"] {
  background: rgba(37, 61, 44, 0.10);
  box-shadow: 0 0 0 1px rgba(37, 61, 44, 0.10) inset;
}

.nav-cta-pill {
  background: var(--deep-moss);
  color: #fffef9 !important;
  border: 1px solid rgba(37, 61, 44, 0.9);
  padding: 10px 14px !important;
}

.nav-cta-pill:hover {
  background: #1a2d22;
}

/* Mobile drawer */
.navdrawer {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 40;
}

.navdrawer[data-open="true"] {
  display: block;
}

.navdrawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 10, 0.44);
  backdrop-filter: blur(4px);
}

.navdrawer-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(92vw, 420px);
  background: rgba(255, 254, 249, 0.98);
  border-left: 1px solid rgba(37, 61, 44, 0.12);
  box-shadow: var(--shadow-lg);
  padding: 18px 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.navdrawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.navdrawer-title {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--deep-moss);
  letter-spacing: 0.03em;
  margin: 0;
  font-size: 20px;
}

.navdrawer-close {
  appearance: none;
  border: 1px solid rgba(37, 61, 44, 0.14);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  padding: 10px 12px;
  font: inherit;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
}

.navdrawer-links {
  display: grid;
  gap: 8px;
}

.navdrawer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 48px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(37, 61, 44, 0.12);
  background: rgba(255, 255, 255, 0.70);
  text-decoration: none;
  color: rgba(44, 36, 32, 0.90);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
}

.navdrawer-links a:hover {
  background: rgba(37, 61, 44, 0.06);
}

.navdrawer-links a span {
  opacity: 0.7;
  font-weight: 900;
}

footer.site-footer {
  margin-top: 0;
  border-top: 1px solid rgba(200, 135, 26, 0.22);
  background: #2c2420;
  color: #f5efe0;
}

.site-footer__inner {
  width: min(var(--container), calc(100% - 80px));
  margin: 0 auto;
  padding: 44px 0 22px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(22px, 3vw, 44px);
  row-gap: 18px;
  align-items: start;
}

.site-footer__identity {
  max-width: 52ch;
}

.foot-title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.4vw, 32px);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #f5efe0;
  line-height: 1.12;
}

.foot-muted {
  margin: 0;
  color: rgba(245, 239, 224, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

.foot-discover {
  display: block;
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(245, 239, 224, 0.12);
  font-size: 14px;
  line-height: var(--leading-snug);
  color: rgba(245, 239, 224, 0.78);
  max-width: none;
}

.foot-discover-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(200, 135, 26, 0.92);
}

.foot-discover a {
  color: rgba(245, 239, 224, 0.95);
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 239, 224, 0.14);
  font-weight: 600;
}

.foot-discover a:hover {
  color: #f5efe0;
  border-bottom-color: rgba(200, 135, 26, 0.55);
}

.foot-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 14px;
  row-gap: 10px;
}

.foot-nav a {
  color: rgba(245, 239, 224, 0.92);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.35;
  padding: 6px 0;
  border-bottom: 1px solid rgba(245, 239, 224, 0.10);
}

.foot-nav a:hover {
  color: #f5efe0;
  border-bottom-color: rgba(200, 135, 26, 0.55);
}

.foot-contact-title {
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(200, 135, 26, 0.92);
}

.foot-contact-lines {
  display: grid;
  gap: 12px;
  color: rgba(245, 239, 224, 0.86);
  font-size: 14px;
  line-height: 1.65;
}

.foot-label {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(200, 135, 26, 0.92);
}

.foot-muted-inline {
  color: rgba(245, 239, 224, 0.72);
}

.foot-link {
  color: rgba(245, 239, 224, 0.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 239, 224, 0.14);
}

.foot-link:hover {
  border-bottom-color: rgba(200, 135, 26, 0.55);
}

.foot-wa {
  color: rgba(245, 239, 224, 0.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 239, 224, 0.14);
}

.foot-wa:hover {
  border-bottom-color: rgba(200, 135, 26, 0.55);
}

.site-footer__bottom {
  border-top: 1px solid rgba(245, 239, 224, 0.12);
  background: rgba(20, 16, 14, 0.35);
}

.site-footer__bottom-inner {
  width: min(var(--container), calc(100% - 80px));
  margin: 0 auto;
  padding: 14px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(245, 239, 224, 0.62);
  font-size: 13px;
}

.foot-legal {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.foot-legal a {
  color: rgba(245, 239, 224, 0.72);
  text-decoration: none;
  font-weight: 700;
}

.foot-legal a:hover {
  color: rgba(245, 239, 224, 0.92);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ---------- Site Assistant (chatbot) ---------- */
.asst {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  font-family: var(--font-sans);
}

@media (max-width: 620px) {
  .asst {
    right: 14px;
    bottom: 14px;
  }
}

.asst-button {
  appearance: none;
  border: 1px solid rgba(37, 61, 44, 0.22);
  background: rgba(255, 254, 249, 0.92);
  color: rgba(44, 36, 32, 0.90);
  border-radius: 999px;
  padding: 12px 14px;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(12, 16, 14, 0.18);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.asst-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(200, 135, 26, 0.85);
  box-shadow: 0 0 0 6px rgba(200, 135, 26, 0.12);
}

.asst-label {
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
}

.asst-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.52);
  backdrop-filter: blur(3px);
  z-index: 68;
}

.asst-panel {
  position: fixed;
  right: 18px;
  bottom: 76px;
  width: min(420px, calc(100% - 28px));
  z-index: 69;
  border-radius: 18px;
  border: 1px solid rgba(212, 191, 158, 0.75);
  background: rgba(255, 254, 249, 0.96);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

@media (max-width: 620px) {
  .asst-panel {
    right: 14px;
    bottom: 72px;
  }
}

.asst-head {
  padding: 14px 14px 12px;
  border-bottom: 1px solid rgba(37, 61, 44, 0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background:
    radial-gradient(800px 300px at 12% 12%, rgba(59, 94, 69, 0.10), transparent 62%),
    rgba(255, 254, 249, 0.96);
}

.asst-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--deep-moss);
  font-size: 18px;
}

.asst-close {
  appearance: none;
  border: 1px solid rgba(37, 61, 44, 0.14);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  padding: 10px 12px;
  font: inherit;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
}

.asst-body {
  padding: 12px 12px 12px;
  display: grid;
  gap: 10px;
}

.asst-messages {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  max-height: min(48vh, 340px);
  overflow: auto;
}

.asst-msg {
  display: flex;
}

.asst-msg.is-user {
  justify-content: flex-end;
}

.asst-bubble {
  max-width: 86%;
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid rgba(37, 61, 44, 0.10);
  background: rgba(255, 255, 255, 0.74);
  color: rgba(44, 36, 32, 0.86);
  font-size: 13px;
  line-height: 1.55;
}

.asst-msg.is-user .asst-bubble {
  background: rgba(59, 94, 69, 0.08);
  border-color: rgba(59, 94, 69, 0.16);
}

.asst-bubble a {
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 135, 26, 0.55);
}

.asst-bubble a:hover {
  border-bottom-color: rgba(200, 135, 26, 0.85);
}

.asst-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.asst-chip {
  appearance: none;
  border: 1px solid rgba(37, 61, 44, 0.14);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  padding: 10px 12px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 10px;
  color: rgba(44, 36, 32, 0.86);
}

.asst-chip:hover {
  background: rgba(37, 61, 44, 0.06);
}

.asst-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}

.asst-input {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(37, 61, 44, 0.16);
  background: rgba(255, 255, 255, 0.86);
  font: inherit;
  color: rgba(44, 36, 32, 0.90);
}

.asst-send {
  appearance: none;
  border: 1px solid rgba(37, 61, 44, 0.18);
  background: var(--deep-moss);
  color: #fffef9;
  border-radius: 999px;
  padding: 12px 14px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
}

.asst-send:hover {
  background: #1a2d22;
}

/* Floating WhatsApp (+2348053327389) - shared-layout + assets/support-whatsapp-fab.js */
.toof-wa-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99990;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  background: #25d366;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.toof-wa-fab:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.45);
}

.toof-wa-fab:focus-visible {
  outline: 3px solid rgba(37, 94, 69, 0.55);
  outline-offset: 3px;
}

.toof-wa-fab__icon {
  display: flex;
  flex-shrink: 0;
}

.toof-wa-fab__text {
  white-space: nowrap;
}

@media print {
  .toof-wa-fab {
    display: none !important;
  }
}

@media (max-width: 1100px) and (min-width: 861px) {
  .site-footer__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "identity identity"
      "nav contact";
  }

  .site-footer__identity {
    grid-area: identity;
    max-width: none;
  }

  .site-footer__nav {
    grid-area: nav;
  }

  .site-footer__contact {
    grid-area: contact;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }
  .brand-logo {
    height: 64px;
    max-width: min(220px, 52vw);
  }

  .topnav-inner {
    min-height: 76px;
    padding: 10px 0;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .navlinks {
    display: none;
  }
  .site-footer__inner {
    width: min(var(--container), calc(100% - 32px));
    padding: 34px 0 18px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    row-gap: 18px;
  }

  .site-footer__bottom-inner {
    width: min(var(--container), calc(100% - 32px));
    align-items: flex-start;
  }

  .foot-nav {
    grid-template-columns: 1fr;
  }
}

