:root {
  --ink: #0d1b2f;
  --navy: #122a46;
  --steel: #566579;
  --muted: #6f7c8f;
  --paper: #f4f6f9;
  --panel: #ffffff;
  --line: #dce3ec;
  --gold: #b48a3c;
  --gold-dark: #8b6724;
  --blue: #1d5b91;
  --shadow: 0 22px 54px rgba(13, 27, 47, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 980px; font-size: clamp(40px, 6vw, 76px); line-height: 1; letter-spacing: 0; }
h2 { font-size: clamp(30px, 3.4vw, 48px); line-height: 1.05; letter-spacing: 0; }
h3 { font-size: 22px; line-height: 1.14; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { display: grid; width: 42px; height: 42px; place-items: center; color: white; font-weight: 900; background: var(--ink); border-radius: 6px; }
.brand strong, .brand small { display: block; }
.brand small { color: var(--muted); font-size: 12px; }
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a { padding: 9px 12px; color: #334155; font-size: 14px; border-radius: 6px; }
.site-nav a:hover { background: #eaf1f8; }
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 6px; background: white; }
.nav-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--ink); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  min-height: calc(92vh - 76px);
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(135deg, #0d1b2f 0%, #173755 52%, #f4f6f9 52%, #ffffff 100%);
  background-size: 72px 72px, auto;
}
.home-simple {
  padding: clamp(62px, 9vw, 112px) clamp(18px, 5vw, 72px) clamp(36px, 5vw, 62px);
  background: linear-gradient(135deg, #ffffff 0%, #f4f6f9 62%, #edf2f8 100%);
}
.home-banner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  min-height: 650px;
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
  color: white;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.06) 1px, transparent 1px),
    radial-gradient(circle at 78% 30%, rgba(180,138,60,0.32), transparent 28%),
    linear-gradient(135deg, #0d1b2f 0%, #132f4d 55%, #203a58 100%);
  background-size: 84px 84px, 84px 84px, auto, auto;
}
.home-banner .eyebrow {
  color: #d8bc76;
}
.home-banner h1 {
  margin-bottom: 20px;
  color: white;
}
.banner-content {
  max-width: 940px;
}
.home-banner .home-summary {
  color: #dbe5ef;
}
.banner-panel {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 6px;
  box-shadow: var(--shadow);
}
.banner-panel div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 70px;
  padding: 14px;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
}
.banner-panel span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
}
.banner-panel strong {
  font-size: 20px;
}
.home-simple h1 {
  margin-bottom: 20px;
  color: var(--ink);
}
.home-summary {
  max-width: 920px;
  color: #465366;
  font-size: clamp(18px, 1.8vw, 22px);
}
.home-reg {
  transform: none;
}
.vertical-gateway {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  padding-top: clamp(38px, 6vw, 72px);
}
.gateway-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.gateway-card:hover {
  border-color: rgba(180, 138, 60, 0.65);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.gateway-card span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.gateway-card h2 {
  margin: 22px 0 14px;
  font-size: clamp(22px, 2vw, 30px);
}
.gateway-card p {
  color: #4d5b6c;
}
.gateway-card strong {
  margin-top: auto;
  color: var(--blue);
}
.primary-gateway {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}
.primary-gateway span,
.primary-gateway strong {
  color: #d8bc76;
}
.primary-gateway p {
  color: #dbe5ef;
}
.hero-copy { color: white; }
.hero-copy .eyebrow { color: #d8bc76; }
.hero-text { max-width: 760px; color: #dbe5ef; font-size: clamp(18px, 1.8vw, 22px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; padding: 0 18px; border: 1px solid currentColor; border-radius: 6px; font-weight: 800; }
.button.primary { color: var(--ink); background: #ffffff; border-color: #ffffff; }
.button.secondary { color: #ffffff; background: transparent; }

.eyebrow { margin: 0 0 12px; color: var(--gold-dark); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.command-panel { padding: 26px; background: white; border: 1px solid var(--line); border-radius: 6px; box-shadow: var(--shadow); }
.panel-top { display: flex; justify-content: space-between; gap: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.panel-top span, .metric-grid span, .registration-strip span, .contact-grid span, .brand-channel-grid span, .listing-grid span { color: var(--muted); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.panel-top strong { color: var(--gold-dark); }
.metric-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; padding: 24px 0; }
.metric-grid div { min-height: 112px; padding: 18px; background: #f8fafc; border: 1px solid var(--line); border-radius: 6px; }
.metric-grid strong { display: block; font-size: 34px; line-height: 1; color: var(--navy); }
.panel-list { margin: 0; padding: 20px 0 0 18px; border-top: 1px solid var(--line); color: #465366; }

.registration-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin: 0 clamp(18px, 5vw, 72px); overflow: hidden; background: var(--line); border: 1px solid var(--line); border-radius: 6px; transform: translateY(-28px); }
.registration-strip div { padding: 18px; background: white; }
.registration-strip strong { display: block; margin-top: 4px; }
.section { padding: clamp(52px, 8vw, 96px) clamp(18px, 5vw, 72px); }
.intro, .two-column, .defence-preview { display: grid; grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr); gap: clamp(24px, 6vw, 72px); align-items: start; }
.intro > p, .two-column p { color: #465366; font-size: clamp(18px, 1.8vw, 22px); }

.verticals { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; padding-top: 18px; }
.vertical-card, .service-grid article, .model-grid div, .property-cards article, .listing-grid article, .brand-channel-grid a {
  padding: 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.vertical-card.featured { border-top: 5px solid var(--gold); box-shadow: var(--shadow); }
.icon { display: grid; width: 42px; height: 42px; margin-bottom: 26px; place-items: center; color: white; font-weight: 900; background: var(--ink); border-radius: 6px; }
.vertical-card p, .service-grid p, .model-grid p, .property-cards p, .listing-grid p, .brand-channel-grid p { color: #4d5b6c; }
.text-link { display: inline-flex; margin-top: 12px; color: var(--blue); font-weight: 900; }

.defence-preview { color: white; background: var(--ink); }
.defence-preview .eyebrow { color: #d8bc76; }
.service-columns { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.service-columns div { padding: 20px; border: 1px solid rgba(255,255,255,0.18); border-radius: 6px; background: rgba(255,255,255,0.08); }
.service-columns p { color: #dbe5ef; }

.page-hero { padding: clamp(62px, 10vw, 118px) clamp(18px, 5vw, 72px); color: white; background: linear-gradient(135deg, #0d1b2f, #173755); }
.page-hero p { max-width: 850px; color: #dbe5ef; font-size: clamp(18px, 1.8vw, 22px); }
.page-hero .eyebrow { color: #d8bc76; }
.astrology-page { background: linear-gradient(135deg, #1a2037, #4a315b); }
.manpower-page { background: linear-gradient(135deg, #122a46, #35536f); }
.contact-page { background: linear-gradient(135deg, #0d1b2f, #1d5b91); }
.property-page { background: linear-gradient(135deg, rgba(13,27,47,0.88), rgba(18,42,70,0.84)), url("images/property-banner.jpg") center/cover; }
.service-section { background: #ffffff; }
.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.service-grid article span { color: var(--gold-dark); font-weight: 900; }
.models { background: #eef2f6; }
.model-grid, .property-cards, .listing-grid, .brand-channel-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.model-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.property-hero { min-height: 620px; display: grid; align-items: end; padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px); color: white; background: linear-gradient(90deg, rgba(13,27,47,0.88), rgba(13,27,47,0.3)), url("images/property-banner.jpg") center/cover; }
.property-hero p { max-width: 720px; color: #e8edf3; font-size: clamp(18px, 1.8vw, 22px); }
.property-hero .eyebrow { color: #d8bc76; }
.property-cards { background: #ffffff; }
.listing-grid strong { display: block; margin-top: 12px; color: var(--gold-dark); }
.brand-channel-grid a { min-height: 230px; }
.brand-channel-grid strong { display: block; margin: 10px 0; font-size: 26px; }
.author-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(320px, 1fr);
  gap: clamp(24px, 6vw, 72px);
  background: #ffffff;
}
.author-section > div > p {
  color: #4d5b6c;
  font-size: clamp(17px, 1.6vw, 20px);
}
.book-grid {
  display: grid;
  gap: 14px;
}
.book-grid a {
  padding: 22px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
}
.book-grid span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.book-grid strong {
  display: block;
  margin: 8px 0;
  font-size: 23px;
}
.book-grid p {
  color: #4d5b6c;
}
.defence-menu-strip { transform: translateY(-22px); }
.button.dark-button { color: white; background: var(--ink); border-color: var(--ink); margin-top: 12px; }
.team-grid, .updates-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.team-card, .updates-grid article {
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.team-card strong { display: block; margin: -8px 0 14px; color: var(--gold-dark); }
.team-initials {
  display: grid;
  width: 82px;
  height: 82px;
  margin-bottom: 22px;
  place-items: center;
  color: white;
  font-size: 24px;
  font-weight: 900;
  background: var(--ink);
  border-radius: 6px;
}
.updates-grid span { color: var(--gold-dark); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.single-column { grid-template-columns: 1fr; }
.muted-copy { color: #4d5b6c; font-size: 18px; }

.contact-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.contact-grid a, .contact-grid address { min-height: 128px; padding: 22px; background: white; border: 1px solid var(--line); border-radius: 6px; font-style: normal; }
.contact-grid strong { display: block; margin-top: 10px; overflow-wrap: anywhere; }
.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(320px, 1fr);
  gap: clamp(22px, 5vw, 64px);
}
.contact-card-main,
.contact-route-grid a {
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 12px 34px rgba(13, 27, 47, 0.08);
}
.contact-card-main {
  padding: 30px;
}
.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.contact-lines a,
.contact-lines address,
.contact-lines div {
  padding: 16px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-style: normal;
}
.contact-lines span,
.contact-route-grid span {
  display: block;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.contact-lines strong,
.contact-route-grid strong {
  display: block;
  margin-top: 6px;
  overflow-wrap: anywhere;
}
.contact-route-grid {
  display: grid;
  gap: 14px;
}
.contact-route-grid a {
  padding: 22px;
  border-left: 4px solid var(--gold);
}
.site-footer { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding: 24px clamp(18px, 5vw, 72px); color: var(--muted); background: white; border-top: 1px solid var(--line); }
.site-footer p { margin: 0; }
.rich-footer {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.2fr 0.9fr;
  gap: 22px;
  align-items: start;
  padding-top: 34px;
  padding-bottom: 34px;
  color: #dbe5ef;
  background: var(--ink);
  border-top: 4px solid var(--gold);
}
.rich-footer strong {
  display: block;
  color: white;
  font-size: 18px;
}
.rich-footer span {
  display: block;
  margin-bottom: 8px;
  color: #d8bc76;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.rich-footer a {
  color: #ffffff;
}

@media (max-width: 1080px) {
  .hero, .home-banner, .intro, .two-column, .defence-preview, .author-section, .contact-layout, .rich-footer { grid-template-columns: 1fr; }
  .verticals, .model-grid, .service-columns, .vertical-gateway { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero { background: linear-gradient(135deg, #0d1b2f, #173755); }
}
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .site-nav { position: absolute; top: 76px; right: 18px; left: 18px; display: none; flex-direction: column; align-items: stretch; padding: 10px; background: white; border: 1px solid var(--line); border-radius: 6px; box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px; }
  .registration-strip, .verticals, .vertical-gateway, .service-grid, .service-columns, .model-grid, .property-cards, .listing-grid, .brand-channel-grid, .contact-grid, .team-grid, .updates-grid { grid-template-columns: 1fr; }
  .registration-strip { transform: none; margin-top: 18px; }
  .hero, .home-banner, .property-hero { min-height: auto; }
}
@media (max-width: 480px) {
  .brand small { display: none; }
  .panel-top { flex-direction: column; }
  .metric-grid { grid-template-columns: 1fr; }
}
