/* Always reserve the vertical-scrollbar gutter - otherwise short pages
   (no scrollbar) render a few px wider and the whole layout jumps when
   navigating between pages. */
html { overflow-y: scroll; scrollbar-gutter: stable; }

:root {
  --serif: 'DM Sans', Arial, Helvetica, sans-serif;  /* headings (Databricks style) */
  --sans: 'DM Sans', Arial, Helvetica, sans-serif;
  --mono: 'DM Mono', 'SFMono-Regular', Menlo, monospace;
  --navy: #f2f1ec;          /* warm neutral page ground (Bento Modern) */
  --navy-2: #ffffff;        /* tile surface */
  --tile-shadow: 0 2px 12px rgba(27, 26, 22, 0.06);
  --tile-radius: 28px;
  --gold: #c9a24b;
  --gold-light: #e7c88a;
  --gold-deep: #a8823a;     /* card's dark gold — text accents on light */
  --text-light: #111318;    /* ink */
  --text-muted: #6f747d;
  --border: rgba(201, 162, 75, 0.35);
  --hairline: #dcd5c6;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--navy);
  color: var(--text-light);
  font-family: var(--serif);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* ---------- Navbar ---------- */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 26px;
  position: sticky;
  top: 12px;
  z-index: 50;
  margin: 14px 22px 0;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  backdrop-filter: blur(14px) saturate(1.4);
  border-radius: 999px;
  box-shadow: var(--tile-shadow);
}

.navbar::before {
  content: "";
  position: absolute;
  left: -22px;
  right: -22px;
  top: -14px;
  bottom: -12px;
  background: linear-gradient(180deg, var(--navy) 78%, rgba(242, 241, 236, 0));
  z-index: -1;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 40px; height: 40px; object-fit: contain; }
.brand .name { font-size: 17px; letter-spacing: 1.5px; font-weight: 700; }
.brand .sub { font-size: 10px; letter-spacing: 4px; color: var(--gold); display: block; margin-top: 2px; }

.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
}

.nav-links a { color: #57544a; padding-bottom: 4px; }
.nav-links a.active { color: var(--text-light); border-bottom: 2px solid var(--gold); }
.nav-links a:hover { color: var(--text-light); }

.btn-gold {
  display: inline-block;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #1a1305;
  border: none;
  padding: 13px 26px;
  font-family: var(--sans);
  font-size: 13.5px;
  letter-spacing: 0.2px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-gold::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201, 162, 75, 0.35); }
.btn-gold:hover::after { left: 130%; }
.btn-gold.outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-deep);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 60px 40px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -4%;
  background: url('assets/hero.jpg') 85% 22%/cover no-repeat;
  animation: hero-zoom 26s ease-in-out infinite alternate;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 12% 65%, rgba(201, 162, 75, 0.12), transparent 45%),
    linear-gradient(95deg, rgba(251, 250, 247, 0.99) 0%, rgba(251, 250, 247, 0.97) 44%, rgba(251, 250, 247, 0.72) 54%, rgba(251, 250, 247, 0.12) 63%, rgba(251, 250, 247, 0) 72%);
  z-index: -1;
}
@media (max-width: 1100px) {
  .hero::after {
    background:
      radial-gradient(ellipse at 15% 65%, rgba(201, 162, 75, 0.14), transparent 55%),
      linear-gradient(100deg, rgba(251, 250, 247, 0.96) 0%, rgba(251, 250, 247, 0.9) 45%, rgba(251, 250, 247, 0.72) 70%, rgba(251, 250, 247, 0.45) 100%);
  }
}
@keyframes hero-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none; }
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.eyebrow {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}
.eyebrow::before { content: "— "; }

.hero h1 {
  font-size: 62px;
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 620px;
  line-height: 1.1;
}
.hero h1 .accent { color: var(--gold-deep); }

.hero p {
  font-family: var(--sans);
  color: var(--text-muted);
  max-width: 460px;
  margin: 22px 0 26px;
  font-size: 15px;
}

.hero-tagline {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 500;
  color: var(--gold-deep);
  max-width: 500px;
  line-height: 1.45;
  margin: 0 0 30px;
}

/* ---------- Consultation modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 19, 24, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 20px;
}
.modal-overlay[hidden] { display: none; }
.modal {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--navy-2);
  border: none;
  border-radius: var(--tile-radius);
  padding: 36px 34px 30px;
}
.modal h3 { font-size: 22px; font-weight: 600; margin-bottom: 20px; }
.modal .eyebrow { margin-bottom: 10px; }
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
}
.modal-close:hover { color: var(--gold-deep); }
.modal label {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin: 14px 0 6px;
}
.modal input,
.modal textarea {
  width: 100%;
  background: var(--navy);
  border: 1px solid var(--border);
  color: var(--text-light);
  font-family: var(--sans);
  font-size: 14px;
  padding: 11px 12px;
  border-radius: 2px;
  resize: vertical;
}
.modal input:focus,
.modal textarea:focus { outline: none; border-color: var(--gold); }
.modal .btn-gold { width: 100%; margin-top: 20px; }
.modal-note {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
  line-height: 1.5;
}

/* ---------- Quick pick ---------- */
.quick-pick {
  max-width: 1200px;
  margin: -46px auto 0;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  position: relative;
  z-index: 5;
  font-family: var(--sans);
  text-align: center;
  padding: 26px 30px 22px;
}
.qp-label {
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
}
.quick-pick .cat-tiles { text-align: left; }

/* ---------- Stats ---------- */
.stats {
  max-width: 1200px;
  margin: 40px auto 0;
  display: flex;
  gap: 20px;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 26px 10px;
  border: none;
  border-radius: 24px;
  box-shadow: var(--tile-shadow);
  background: var(--navy-2);
  font-family: var(--sans);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.stat:hover {
  transform: translateY(-4px);
  background: rgba(201, 162, 75, 0.11);
  box-shadow: 0 14px 34px rgba(17, 19, 24, 0.12), 0 0 0 1px rgba(201, 162, 75, 0.25);
}
.stat .num {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 28px;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold-deep);
}
.stat .label { font-size: 11px; letter-spacing: 1px; color: var(--text-muted); margin-top: 6px; }

/* ---------- Section heading ---------- */
.section { max-width: 1280px; margin: 90px auto 0; padding: 0 40px; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 34px;
}
.section-head h2 { font-size: 32px; font-weight: 600; letter-spacing: -0.01em; }
.section-head .view-all {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  background: var(--navy-2);
  padding: 11px 22px;
  border-radius: 999px;
  box-shadow: 0 1px 6px rgba(27, 26, 22, 0.05);
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.section-head .view-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(27, 26, 22, 0.10);
}

/* ---------- Property cards ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.property-card {
  border: none;
  border-radius: var(--tile-radius);
  padding: 12px;
  box-shadow: var(--tile-shadow);
  background: var(--navy-2);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.property-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 18px 44px rgba(17, 19, 24, 0.12), 0 0 24px rgba(201, 162, 75, 0.14);
}
.property-media { position: relative; height: 190px; overflow: hidden; border-radius: 20px; }
.property-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.property-card:hover .property-media img { transform: scale(1.07); }
.tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: #1b1a16;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  font-weight: 700;
  border-radius: 999px;
}

.property-body { padding: 14px 12px 12px; font-family: var(--sans); }
.property-body h3 { font-family: var(--sans); font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.property-loc { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.property-meta { display: flex; flex-wrap: wrap; gap: 8px 14px; font-size: 12px; color: var(--text-muted); margin-bottom: 14px; }
.property-price { color: var(--gold-deep); font-family: var(--sans); font-weight: 600; font-size: 19px; }
.property-price small { font-size: 12px; color: var(--text-muted); font-family: var(--sans); }

.prop-id {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 6px;
}
.prop-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  padding-bottom: 3px;
}
.prop-link:hover { color: var(--gold-deep); border-color: var(--gold); }
.prop-note {
  margin-top: 10px;
  font-size: 11px;
  line-height: 1.5;
  color: var(--text-muted);
  border-left: 2px solid var(--gold);
  padding-left: 10px;
}

/* ---------- Filter bar ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  font-family: var(--sans);
}
.filter-btn {
  background: var(--navy-2);
  border: none;
  color: #57544a;
  padding: 10px 20px;
  font-size: 12.5px;
  letter-spacing: 0.2px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 999px;
  box-shadow: 0 1px 6px rgba(27, 26, 22, 0.05);
}
.filter-btn:hover { color: var(--text-light); }
.filter-btn.active {
  background: #1b1a16;
  color: #f2f1ec;
}

/* ---------- No-photo card hero ---------- */
.property-media.no-photo {
  background:
    radial-gradient(ellipse at top left, rgba(201, 162, 75, 0.22), transparent 60%),
    linear-gradient(160deg, #fffdf8 0%, #f2ecdd 100%);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.np-inner { text-align: center; padding: 0 16px; }
.np-line {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.np-price { font-family: var(--sans); font-weight: 600; font-size: 30px; color: var(--gold-deep); }
.np-price small { font-size: 15px; color: var(--text-muted); }

/* ---------- About us ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: center;
  border: none;
  border-radius: var(--tile-radius);
  box-shadow: var(--tile-shadow);
  background: var(--navy-2);
  padding: 50px;
}
.about-copy h2 { font-size: 32px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 18px; }
.about-copy p {
  font-family: var(--sans);
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 640px;
}
.about-copy p:last-child { margin-bottom: 0; }
.about-highlight {
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}
.about-highlight strong { color: var(--gold-deep); font-weight: 700; }
.about-stats { display: flex; flex-direction: column; gap: 18px; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  border: none;
  border-radius: var(--tile-radius);
  box-shadow: var(--tile-shadow);
  background: var(--navy-2);
  padding: 34px 30px;
}
.service-card {
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(17, 19, 24, 0.12), 0 0 24px rgba(201, 162, 75, 0.14);
}
.service-icon {
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 16px;
  background: #f2f1ec;
  color: var(--gold-deep);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.service-card p {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ---------- Blog cards ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.blog-card {
  display: flex;
  gap: 22px;
  border: none;
  border-radius: var(--tile-radius);
  box-shadow: var(--tile-shadow);
  background: var(--navy-2);
  padding: 26px;
  align-items: flex-start;
}
.blog-card { transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease; }
.blog-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(17, 19, 24, 0.12), 0 0 24px rgba(201, 162, 75, 0.14);
}
.blog-date {
  flex: 0 0 auto;
  text-align: center;
  border: none;
  border-radius: 18px;
  background: #f2f1ec;
  padding: 12px 14px;
  min-width: 74px;
}
.blog-date .day {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 28px;
  color: var(--gold-deep);
  line-height: 1.1;
}
.blog-date .monyr {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-top: 4px;
  white-space: nowrap;
}
.blog-body { font-family: var(--sans); min-width: 0; }
.blog-card { min-width: 0; }
.blog-cat {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 8px;
}
.blog-body h3 {
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}
.blog-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 4px;
}

/* ---------- Contact CTA band ---------- */
.cta-band {
  border: none;
  border-radius: var(--tile-radius);
  box-shadow: var(--tile-shadow);
  background: var(--navy-2);
  padding: 56px 50px;
  text-align: center;
}
.cta-band .eyebrow::before { content: ""; }
.cta-band h2 { font-size: 30px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 16px; }
.cta-band p {
  font-family: var(--sans);
  color: var(--text-muted);
  font-size: 14px;
  max-width: 640px;
  margin: 0 auto 28px;
}
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

footer { margin-top: 70px; }

.footer-bar {
  background: #ffffff;
  border-radius: 24px 24px 0 0;
  margin: 0 22px;
  box-shadow: var(--tile-shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bar .brand .name { color: var(--text-light); }
.footer-bar .brand .sub { color: var(--gold); }


.footer-copy {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

/* Registered entity details. Kept on every page so the legal name, address and
   registration number are verifiable site-wide - Meta business verification and
   the property portals check the site against the Udyam certificate. */
.footer-legal {
  display: block;
  margin-top: 6px;
  font-size: 11.5px;
  letter-spacing: 0.3px;
  line-height: 1.55;
  opacity: 0.8;
}

/* Statutory privacy notice - linked from every page footer (DPDP Act, 2023
   notice requirement and IT Act SPDI Rule 4). */
.footer-privacy {
  display: block;
  margin-top: 8px;
  font-size: 11.5px;
  letter-spacing: 0.3px;
  color: var(--gold-deep);
  border-bottom: 1px solid transparent;
}
.footer-privacy:hover { border-bottom-color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--gold-deep);
  font-size: 20px;
  line-height: 1;
  padding: 8px 12px;
  border-radius: 2px;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; padding: 40px 34px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: row; }
  .about-stats .stat { flex: 1; }
  .hero h1 { font-size: 44px; }

  /* collapse nav into hamburger dropdown */
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 255, 255, 0.97);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-radius: 22px;
    box-shadow: var(--tile-shadow);
    margin-top: 8px;
    padding: 8px 0 12px;
  }
  .nav-links.open { display: flex; }
  .nav-links li { text-align: center; }
  .nav-links a { display: block; padding: 14px 0; border-bottom: none; }
  .nav-links a.active { border-bottom: none; }
}

@media (max-width: 640px) {
  .navbar { padding: 12px 18px; }
  .brand img { width: 34px; height: 34px; }
  .brand .name { font-size: 13px; letter-spacing: 1px; }
  .btn-gold { padding: 11px 16px; font-size: 10px; letter-spacing: 1px; }
  .hero { padding: 48px 24px; min-height: 520px; }
  .hero h1 { font-size: 36px; }
  .section { padding: 0 20px; margin-top: 64px; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats { flex-wrap: wrap; padding: 0 20px; gap: 12px; }
  .stat { flex: 1 1 calc(50% - 6px); padding: 20px 8px; }
  .stat .num { font-size: 24px; }
  .quick-pick { margin: -30px 20px 0; padding: 22px 18px 18px; }
  .about-grid { padding: 30px 22px; }
  .about-stats { flex-direction: column; }
  .cta-band { padding: 38px 24px; }
  .cta-band h2 { font-size: 26px; }
  .blog-card { padding: 20px; gap: 16px; }
  .footer-bar { flex-direction: column; text-align: center; gap: 12px; padding: 22px 20px; }
  .modal { padding: 28px 22px 24px; }
}


/* ---------- Featured grid & category tiles ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.featured-grid .property-media { height: 240px; }
.featured-grid .property-body h3 { font-size: 19px; }
.featured-grid .property-card { position: relative; }
.featured-grid .property-card::before {
  content: "PREMIUM";
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  border-radius: 999px;
  color: var(--gold-deep);
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 2px;
  font-weight: 700;
  padding: 5px 10px;
}
.cat-tiles { display: flex; flex-wrap: wrap; gap: 10px; }
.cat-tile {
  display: flex;
  align-items: center;
  gap: 9px;
  border: none;
  border-radius: 999px;
  background: var(--navy-2);
  padding: 10px 20px;
  font-family: var(--sans);
  box-shadow: 0 1px 6px rgba(27, 26, 22, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cat-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(27, 26, 22, 0.10);
}
.ct-icon { font-size: 17px; }
.ct-name { font-family: var(--sans); font-weight: 600; font-size: 14px; }
.ct-count { font-family: var(--mono); font-size: 12px; color: var(--gold-deep); }
.page-head { margin-top: 50px; }

@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: 1fr; }
  .cat-tiles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .cat-tiles { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ---------- Motion & rich details ---------- */
html { scroll-behavior: smooth; }

::selection { background: var(--gold); color: #1a1305; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: #e8e5de; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  border-radius: 6px;
  border: 2px solid #e8e5de;
}

.section-head h2,
.about-copy h2,
.cta-band h2 { letter-spacing: 0.5px; }


.filter-btn { transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease; }
.filter-btn:hover { transform: translateY(-2px); }

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Login page ---------- */
.login-roles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 34px;
}
.role-card {
  background: var(--navy-2);
  border: none;
  border-radius: var(--tile-radius);
  box-shadow: var(--tile-shadow);
  padding: 34px 26px;
  text-align: center;
  cursor: pointer;
  color: var(--text-light);
  font-family: inherit;
  transition: border-color .2s, transform .2s;
}
.role-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.role-card.active {
  border-color: var(--gold);
  background:
    radial-gradient(ellipse at top, rgba(201, 162, 75, 0.14), transparent 60%),
    var(--navy-2);
}
.role-icon { display: block; font-size: 34px; margin-bottom: 14px; }
.role-name { display: block; font-family: var(--sans); font-weight: 600; font-size: 22px; margin-bottom: 10px; }
.role-desc { display: block; font-family: var(--sans, Arial, sans-serif); font-size: 12px; color: var(--text-muted); line-height: 1.6; }
.role-panel {
  max-width: 560px;
  border: none;
  background: var(--navy-2);
  padding: 34px 36px 30px;
  border-radius: var(--tile-radius);
  box-shadow: var(--tile-shadow);
}
.role-panel h3 { font-family: var(--sans); font-size: 22px; font-weight: 600; margin-bottom: 10px; }
.role-note { font-family: var(--sans, Arial, sans-serif); font-size: 12px; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
.role-form label {
  display: block;
  font-family: var(--sans, Arial, sans-serif);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin: 14px 0 6px;
}
.role-form input,
.role-form textarea {
  width: 100%;
  background: var(--navy);
  border: 1px solid var(--border);
  color: var(--text-light);
  font-family: var(--sans, Arial, sans-serif);
  font-size: 14px;
  padding: 11px 12px;
  border-radius: 2px;
  resize: vertical;
}
.role-form input:focus,
.role-form textarea:focus { outline: none; border-color: var(--gold); }
.role-form .btn-gold { width: 100%; margin-top: 20px; }
#panel-employee .btn-gold { display: inline-block; margin-top: 6px; }
@media (max-width: 900px) {
  .login-roles { grid-template-columns: 1fr; }
  .role-panel { padding: 26px 22px; }
}

/* ---------- Directors ---------- */
.directors { margin-top: 44px; }
.directors-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.director-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.director-card {
  background: var(--navy-2);
  border: none;
  border-radius: 24px;
  padding: 26px 26px 24px;
  font-family: var(--sans);
  box-shadow: var(--tile-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.director-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(17, 19, 24, 0.10), 0 0 20px rgba(201, 162, 75, 0.12);
}
.director-name { font-size: 20px; font-weight: 600; color: var(--text-light); }
.director-role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--gold);
  font-weight: 700;
  margin: 6px 0 14px;
}
.director-card a { display: block; font-size: 14px; color: #41454e; margin-top: 6px; }
.director-card a:hover { color: var(--gold-deep); }
.director-card a b { color: var(--text-light); font-weight: 600; }
@media (max-width: 900px) {
  .director-grid { grid-template-columns: 1fr; }
}

/* ---------- Corporate office ---------- */
.office-card {
  margin-top: 20px;
  background: var(--navy-2);
  border: none;
  border-radius: 24px;
  padding: 24px 26px;
  font-family: var(--sans);
  box-shadow: var(--tile-shadow);
}
.office-card .directors-label { margin-bottom: 10px; }
.office-address { font-size: 15px; color: var(--text-light); font-weight: 500; margin-bottom: 8px; }
.office-contact { font-size: 14px; color: #41454e; }
.office-contact a { color: inherit; }
.office-contact a:hover { color: var(--gold-deep); }
.office-contact b { color: var(--text-light); font-weight: 600; }
.office-person { color: var(--text-muted); }

/* ---------- Bento hero ---------- */
.bento { max-width: 1280px; margin: 20px auto 0; padding: 0 24px; display: flex; flex-direction: column; gap: 16px; }
.bento-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-rows: 128px; gap: 16px; }
.bento-copy {
  grid-column: span 7;
  grid-row: span 3;
  background: var(--navy-2);
  border-radius: var(--tile-radius);
  box-shadow: var(--tile-shadow);
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.bento-copy .eyebrow { margin-bottom: 0; }
.bento-copy h1 { font-size: 46px; font-weight: 700; letter-spacing: -0.025em; line-height: 1.08; }
.bento-copy h1 .accent { color: var(--gold-deep); }
.bento-copy p { font-family: var(--sans); font-size: 15px; line-height: 1.6; color: #57544a; max-width: 520px; }
.bento-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-pill {
  display: inline-block;
  background: #f2f1ec;
  color: var(--text-light);
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13.5px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-pill:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(27, 26, 22, 0.10); }
.bento-photo { grid-column: span 5; grid-row: span 2; border-radius: var(--tile-radius); overflow: hidden; }
.bento-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.bento-stat {
  grid-column: span 2;
  grid-row: span 1;
  background: var(--navy-2);
  border-radius: 24px;
  box-shadow: var(--tile-shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px;
  gap: 4px;
  font-family: var(--sans);
}
.bento-stat .num { font-size: 24px; font-weight: 700; color: var(--gold-deep); }
.bento-stat .label { font-size: 11.5px; color: #57544a; }
.bento-stat.dark { background: #1b1a16; }
.bento-stat.dark .num { color: var(--gold-light); }
.bento-stat.dark .label { color: #b5b0a3; }
.bento-stat:not(.dark) { grid-column: span 3; }
@media (max-width: 1024px) {
  .bento-grid { grid-auto-rows: auto; }
  .bento-copy { grid-column: span 12; grid-row: auto; padding: 32px 28px; }
  .bento-photo { grid-column: span 12; grid-row: auto; height: 260px; }
  .bento-stat, .bento-stat:not(.dark) { grid-column: span 6; grid-row: auto; padding: 18px 22px; }
}
@media (max-width: 640px) {
  .navbar { margin: 10px 12px 0; }
  .footer-bar { margin: 0 12px; }
  .bento { padding: 0 14px; }
  .bento-copy h1 { font-size: 32px; }
}

/* ---------- Offline chat fallback ---------- */
#fs-chat-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #1a1305;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(27, 26, 22, 0.25);
  transition: transform 0.25s ease;
}
#fs-chat-btn:hover { transform: translateY(-3px); }
#fs-chat-panel {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 91;
  width: min(340px, calc(100vw - 44px));
  background: var(--navy-2);
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(27, 26, 22, 0.25);
  overflow: hidden;
  font-family: var(--sans);
}
.fs-chat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #1a1305;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 18px;
}
.fs-chat-close {
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #1a1305;
}
.fs-chat-body { padding: 16px 18px 18px; }
.fs-chat-note { font-size: 13px; color: #57544a; line-height: 1.5; margin: 0 0 12px; }
#fs-chat-panel textarea,
#fs-chat-panel input[type="text"] {
  width: 100%;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  background: #fbfaf7;
  font-family: var(--sans);
  font-size: 14px;
  padding: 10px 12px;
  margin-bottom: 10px;
  resize: vertical;
}
#fs-chat-panel textarea:focus,
#fs-chat-panel input[type="text"]:focus { outline: none; border-color: var(--gold); }
.fs-chat-send {
  width: 100%;
  border: none;
  border-radius: 999px;
  background: #1b1a16;
  color: #f2f1ec;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  padding: 12px;
  cursor: pointer;
}
.fs-chat-send:hover { opacity: 0.9; }
