/*!
 * jsh-site.css — Jaysons Holdings (Pvt) Ltd
 * Master stylesheet: all page-specific and component CSS
 * Compiled from inline <style> blocks; do NOT edit the PHP files directly.
 * Last updated: 2026
 */
/* ═══════════════════════════════════════════════════════════
   SHARED — Global Reset & Base
   Applies to all pages (light theme variant)
   ═══════════════════════════════════════════════════════════ */
html { overflow-x: hidden; }
body { margin: 0; background: hsl(var(--background)); color: hsl(var(--foreground)); }
main { padding-top: 0; }

/* ─── Shared utility classes ─── */
.flex      { display: flex; }
.min-h-screen { min-height: 100vh; }
.flex-col  { flex-direction: column; }
.flex-1    { flex: 1; }
.gold-divider { height: .125rem; width: 4rem; border-radius: 9999px; background: hsl(var(--accent-foreground)); }
.hover-scale:hover img { transform: scale(1.05); }
.transition-transform { transition: transform .7s; }

/* ─── Eyebrow label ─── */
.ey { font-family: var(--font-body); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .25em; }

/* ─── Gold rule divider ─── */
.gd   { width: 3rem; height: 2px; background: #c8914a; border-radius: 2px; margin: 1rem 0; }
.gd-c { margin-left: auto; margin-right: auto; }

/* ─── Dark-theme base (dark sector pages) ─── */
.theme-dark body { background: #0d0d0d; color: #f0f0f0; }

/* ─── Scroll-reveal animation (injected by nav.js) ─── */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal="left"]  { transform: translateX(-24px); }
[data-reveal="right"] { transform: translateX(24px); }
[data-reveal="fade"]  { transform: none; }
[data-reveal].revealed { opacity: 1; transform: none; }
[data-reveal][style*="--delay"] { transition-delay: var(--delay, 0s); }

/* ═══════════════════════════════════════════════════════════
   SHARED — Mobile & Tablet Responsive Grid Overrides
   Breakpoints: tablet ≤1023px | mobile ≤767px | xs ≤374px
   ═══════════════════════════════════════════════════════════ */

/* ── Tablet (≤1023px) ── */
@media (max-width: 1023px) {
  /* Stack all 2-col splits */
  .split,
  .hotel-card,
  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }

  /* Reduce large paddings */
  [style*="padding:5rem"],
  [style*="padding:6rem"],
  [style*="padding:7rem"]                          { padding: 3rem 1.25rem !important; }
  [style*="padding:4rem 3rem"],
  [style*="padding:4rem 4rem"],
  [style*="padding:5rem 4"],
  [style*="padding:5rem 5"]                        { padding: 2.5rem 1.25rem !important; }

  /* Stack 3+ col grids */
  [style*="grid-template-columns:repeat(3"],
  [style*="grid-template-columns:repeat(4"]        { grid-template-columns: 1fr !important; }

  /* Timeline centre-line layout */
  [style*="grid-template-columns:1fr 80px 1fr"]    { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:1fr 80px 1fr"] > div:nth-child(2) { display: none !important; }
  [style*="grid-template-columns:1fr 80px 1fr"] > div:nth-child(3) { padding-left: 0 !important; padding-right: 0 !important; text-align: left !important; }

  /* 4-col stat grids → 2-col */
  [style*="grid-template-columns:repeat(4,1fr)"]   { grid-template-columns: repeat(2, 1fr) !important; }

  /* Reduce large font sizes */
  .font-display[style*="font-size:clamp"]          { font-size: clamp(1.5rem, 5vw, 2.5rem) !important; }
}

/* ── Mobile (≤767px) ── */
@media (max-width: 767px) {
  [style*="grid-template-columns:repeat(2"]        { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:repeat(3"],
  [style*="grid-template-columns:repeat(4"]        { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:repeat(4,1fr)"]   { grid-template-columns: repeat(2, 1fr) !important; }

  /* Further reduce paddings */
  [style*="padding:5rem"],
  [style*="padding:6rem"],
  [style*="padding:7rem"]   { padding: 2.5rem 1rem !important; }
  [style*="padding:4rem"]   { padding: 2rem 1rem !important; }
  [style*="padding:3rem"]   { padding: 1.75rem 1rem !important; }

  /* Hero font sizes */
  h1.font-display { font-size: clamp(1.75rem, 8vw, 3rem) !important; }

  /* Split sections — minimum image height */
  .split__img,
  .hotel-img { min-height: 280px !important; }
}

/* ═══════════════════════════════════════════════════════════
   COMPONENT — Navigation  (includes/nav.php)
   ═══════════════════════════════════════════════════════════ */
/* ── Nav ── */
.jsh-header{position:fixed;top:0;left:0;right:0px;z-index:50;background:rgba(26,46,74,0.10);box-shadow:0 2px 12px rgba(11,22,40,0.3);transition:background .2s ease,box-shadow .4s ease;backdrop-filter:blur(8px)}
.jsh-header__inner{display:flex;align-items:center;justify-content:space-between;padding:.5rem 1.5rem;width:100%;box-sizing:border-box}
.jsh-logo img{height:80px;width:auto;display:block;transition:height .3s ease}
@media(min-width:1024px){.jsh-logo img{height:96px}}
.jsh-nav-links{display:none;align-items:center;gap:.25rem}
@media(min-width:1024px){.jsh-nav-links{display:flex}}
.jsh-nav-link{display:inline-flex;align-items:center;gap:.25rem;padding:.5rem .875rem;font-family:var(--font-body);font-size:.75rem;font-weight:600;text-transform:uppercase;letter-spacing:.12em;color:hsl(var(--primary-foreground));border-radius:.375rem;transition:color .2s,background .2s;background:none;border:none;cursor:pointer;text-decoration:none;text-shadow:0 1px 4px rgba(0,0,0,.4)}
.jsh-nav-link:hover,.jsh-nav-link.active{color:hsl(var(--primary-foreground));background:hsl(var(--primary-foreground)/.08)}
.jsh-dropdown{position:relative}
.jsh-dropdown__btn{display:inline-flex;align-items:center;gap:.25rem}
.jsh-dropdown__btn svg{transition:transform .2s}
.jsh-dropdown.open .jsh-dropdown__btn svg{transform:rotate(180deg)}
.jsh-dropdown__menu{display:none;position:absolute;top:calc(100% + .5rem);left:0;min-width:220px;background:hsl(var(--primary));border:1px solid hsl(var(--primary-foreground)/.1);border-radius:.5rem;padding:.4rem;box-shadow:0 8px 32px hsl(218 50% 10%/.4)}
.jsh-dropdown.open .jsh-dropdown__menu{display:block}
.jsh-dropdown__item{display:block;padding:.55rem .9rem;font-family:var(--font-body);font-size:.78rem;font-weight:500;color:hsl(var(--primary-foreground)/.65);border-radius:.375rem;transition:color .15s,background .15s;text-decoration:none}
.jsh-dropdown__item:hover{color:hsl(var(--accent));background:hsl(var(--primary-foreground)/.06)}
/* Burger */
.jsh-burger{display:flex;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:.5rem}
@media(min-width:1024px){.jsh-burger{display:none}}
.jsh-burger span{display:block;width:22px;height:2px;background:hsl(var(--primary-foreground));border-radius:2px;transition:transform .25s,opacity .25s}
/* Mobile */
.jsh-mobile{display:none;flex-direction:column;padding:1rem 1.5rem 1.5rem;border-top:1px solid hsl(var(--primary-foreground)/.1)}
.jsh-mobile.open{display:flex}
@media(min-width:1024px){.jsh-mobile{display:none!important}}
.jsh-mobile__link{padding:.75rem 0;font-family:var(--font-body);font-size:.85rem;font-weight:600;text-transform:uppercase;letter-spacing:.1em;color:hsl(var(--primary-foreground)/.8);border-bottom:1px solid hsl(var(--primary-foreground)/.08);text-decoration:none;display:block}
.jsh-mobile details summary{list-style:none;cursor:pointer}
.jsh-mobile details summary::-webkit-details-marker{display:none}
.jsh-mobile__sectors{display:block;border-bottom:1px solid hsl(var(--primary-foreground)/.08)}
.jsh-mobile__sublink{display:block;padding:.5rem .75rem;font-family:var(--font-body);font-size:.8rem;color:hsl(var(--primary-foreground)/.6);text-decoration:none}
/* ── Enquiry CTA button — animated shimmer line ── */
.jsh-nav-invest{
  position:relative;overflow:hidden;
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.55rem 1.375rem;
  background:transparent;
  color:#c8914a!important;
  font-family:var(--font-body);font-size:.75rem;font-weight:700;
  text-transform:uppercase;letter-spacing:.15em;
  border-radius:.375rem;text-decoration:none;
  text-shadow:none!important;
  border:1.5px solid rgba(200,145,74,.5);
  transition:color .3s,border-color .3s,background .3s;
  isolation:isolate;
}
/* Moving shimmer line */
.jsh-nav-invest::before{
  content:'';
  position:absolute;
  top:0;left:-100%;
  width:60%;height:100%;
  background:linear-gradient(90deg,transparent 0%,rgba(200,145,74,.35) 50%,transparent 100%);
  animation:jsh-shimmer 2.2s ease-in-out infinite;
  pointer-events:none;
}
@keyframes jsh-shimmer{
  0%{left:-80%}
  100%{left:130%}
}
.jsh-nav-invest:hover{
  background:#c8914a;
  color:#0b1628!important;
  border-color:#c8914a;
}
.jsh-nav-invest:hover::before{display:none}
/* Mobile invest button */
.jsh-mobile-invest{
  position:relative;overflow:hidden;
  display:flex;align-items:center;justify-content:center;gap:.5rem;
  margin-top:1rem;padding:.75rem 1.5rem;
  background:transparent;
  color:#c8914a;border:1.5px solid rgba(200,145,74,.5);
  font-family:var(--font-body);font-size:.85rem;font-weight:700;
  text-transform:uppercase;letter-spacing:.1em;
  border-radius:.375rem;text-decoration:none;
}
.jsh-mobile-invest::before{
  content:'';position:absolute;top:0;left:-100%;
  width:60%;height:100%;
  background:linear-gradient(90deg,transparent,rgba(200,145,74,.3),transparent);
  animation:jsh-shimmer 2.2s ease-in-out infinite;
}
/* ── Scrolled state ── */
.jsh-header{transition:background .35s ease,box-shadow .35s ease}
.jsh-header__inner{transition:padding .35s ease}
.jsh-header.scrolled{background:#1a2e4a;box-shadow:0 4px 28px rgba(11,22,40,0.7)}
.jsh-header.scrolled .jsh-header__inner{padding:.2rem 1.5rem}
.jsh-header.scrolled .jsh-logo img{height:44px}
@media(min-width:1024px){.jsh-header.scrolled .jsh-logo img{height:52px}}

/* ═══════════════════════════════════════════════════════════
   COMPONENT — Footer  (includes/footer.php)
   ═══════════════════════════════════════════════════════════ */
.jsh-footer{background:hsl(var(--primary));color:hsl(var(--primary-foreground));opacity:0;transform:translateY(20px);transition:opacity .6s ease-out,transform .6s ease-out}
.jsh-footer.in-view{opacity:1;transform:translateY(0)}

/* ── 5-column layout (Brand + Contact + NavWrap + Social) ── */
.jsh-footer__inner{
  max-width:80rem;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.6fr 1fr 2fr 1fr;
  gap:2rem;
  padding:3.5rem 1.5rem;
  align-items:start;
}
.jsh-footer__nav-wrap{display:grid;grid-template-columns:1fr 1fr;gap:2rem}
@media(max-width:1023px){
  .jsh-footer__inner{grid-template-columns:1fr 1fr;gap:2.5rem;padding:3rem 1.5rem}
  .jsh-footer__nav-wrap{grid-column:1/-1}
}
@media(max-width:767px){
  .jsh-footer__inner{grid-template-columns:1fr;gap:1.75rem;padding:2.5rem 1.5rem;text-align:center}
  /* Reorder: Brand(1) → NavWrap(2) → Contact(3) → Social(4) */
  .jsh-footer__brand{order:1}
  .jsh-footer__nav-wrap{order:2;display:grid;grid-template-columns:1fr 1fr;gap:1rem;text-align:center}
  .jsh-footer__contact-col{order:3}
  .jsh-footer__social-col{order:4}
}

/* ── Brand column (logo + tagline) ── */
.jsh-footer__brand{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  align-self:center;
  text-align:center;
  gap:.75rem;
  max-width:24rem;
  border-right:1px solid rgba(200,145,74,.3);
}
.jsh-footer__brand a{
  display:flex;
  justify-content:center;
  align-items:center;
}
.jsh-footer__brand img {
  height:140px;
  width:auto;
  display:block;
}
.jsh-footer__brand-tagline{
  font-family:var(--font-body);
  font-size:.85rem;
  line-height:1.8;
  color:hsl(var(--primary-foreground)/.6);
  max-width:24rem;
  margin:0;
  text-align:left;
}
.jsh-footer__brand-rule{
  width:2.5rem;
  height:1px;
  background:hsl(var(--accent));
  opacity:.5;
  margin:1rem auto;
}
.jsh-footer__brand-since{
  font-family:var(--font-body);
  font-size:.68rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.2em;
  color:hsl(var(--accent));
  margin:0;
}
@media(max-width:1023px){
  .jsh-footer__brand{grid-column:1/-1;padding-bottom:.5rem}
  .jsh-footer__brand-tagline{max-width:36rem}
}
@media(max-width:767px){
  .jsh-footer__brand{align-items:center;text-align:center;border-right:none;padding-right:0}
  .jsh-footer__brand img { height: 160px; }
  .jsh-footer__brand-tagline{max-width:100%;text-align:center}
  .jsh-footer__brand-tagline br{display:none}
  .jsh-footer__brand-rule{margin:.25rem auto}
}

/* ── Contact column ── */
.jsh-footer__contact-label{
  font-size:.7rem;font-family:var(--font-body);font-weight:700;
  text-transform:uppercase;letter-spacing:.2em;
  color:hsl(var(--accent));margin-bottom:1.25rem;
}
.jsh-footer__contact-group{display:flex;flex-direction:column;gap:1rem}
.jsh-footer__contact-icon{display:none}
@media(max-width:767px){
  .jsh-footer__contact-group{align-items:stretch;gap:.625rem}
  .jsh-footer__contact-group > div{display:flex;align-items:center;gap:.75rem;background:hsl(var(--primary-foreground)/.04);border-radius:.625rem;padding:.75rem 1rem;text-align:left}
  .jsh-footer__contact-icon{display:flex;width:2rem;height:2rem;border-radius:.5rem;background:hsl(var(--accent)/.12);align-items:center;justify-content:center;flex-shrink:0}
  .jsh-footer__contact-icon svg{width:18px;height:18px;color:hsl(var(--accent))}
  .jsh-footer__contact-key{display:none}
}
.jsh-footer__contact-key{
  font-size:.78rem;font-family:var(--font-body);font-weight:600;
  color:hsl(var(--primary-foreground));margin-bottom:.2rem;
}
.jsh-footer__contact-val{
  font-size:.82rem;font-family:var(--font-body);
  color:hsl(var(--primary-foreground)/.6);line-height:1.6;margin:0;
}
.jsh-footer__contact-val a{color:hsl(var(--primary-foreground)/.6);text-decoration:none;transition:color .2s}
.jsh-footer__contact-val a:hover{color:hsl(var(--accent))}

/* ── Nav column ── */
.jsh-footer__nav-col{}
.jsh-footer__nav-heading{
  font-size:.7rem;font-family:var(--font-body);font-weight:700;
  text-transform:uppercase;letter-spacing:.2em;
  color:hsl(var(--accent));margin-bottom:1.25rem;
}
.jsh-footer__nav-col ul{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:.6rem}
.jsh-footer__nav-col a{
  font-size:.82rem;font-family:var(--font-body);
  color:hsl(var(--primary-foreground)/.65);text-decoration:none;
  transition:color .2s,transform .2s;display:inline-block;
}
.jsh-footer__nav-col a:hover{color:hsl(var(--accent));transform:translateX(3px)}
@media(max-width:767px){
  .jsh-footer__nav-col ul{align-items:center}
  .jsh-footer__nav-col a:hover{transform:none}
}

/* ── Social column (2x2 icon grid) ── */
.jsh-footer__social-col{}
.jsh-footer__social-label{
  font-size:.7rem;font-family:var(--font-body);font-weight:700;
  text-transform:uppercase;letter-spacing:.2em;
  color:hsl(var(--accent));margin-bottom:1.25rem;
}
.jsh-footer__social{
  display:grid;
  grid-template-columns:repeat(2,2.5rem);
  gap:.65rem;
}
@media(max-width:767px){
  .jsh-footer__social{grid-template-columns:repeat(4,2.75rem);justify-content:center;gap:.75rem}
  .jsh-footer__social a{width:2.75rem;height:2.75rem}
  .jsh-footer__social-label{text-align:center}
}
.jsh-footer__social a{
  width:2.5rem;height:2.5rem;border-radius:9999px;
  border:1.5px solid hsl(var(--primary-foreground)/.25);
  display:flex;align-items:center;justify-content:center;
  color:hsl(var(--primary-foreground)/.6);text-decoration:none;
  transition:color .2s,border-color .2s,background .2s,transform .2s;
}
.jsh-footer__social a:hover{
  color:hsl(var(--accent));
  border-color:hsl(var(--accent));
  background:hsl(var(--accent)/.1);
  transform:scale(1.08);
}

/* ── Bottom bar ── */
.jsh-footer__bottom{
  max-width:80rem;margin:0 auto;
  display:flex;flex-direction:column;align-items:center;gap:.75rem;
  padding:1.25rem 1.5rem;
  border-top:1px solid hsl(var(--primary-foreground)/.1);
  font-family:var(--font-body);font-size:.72rem;
  color:hsl(var(--primary-foreground)/.4);
}
@media(min-width:768px){.jsh-footer__bottom{flex-direction:row;justify-content:space-between;padding:1.25rem 3rem}}
@media(min-width:1024px){.jsh-footer__bottom{padding:1.25rem 5rem}}
.jsh-footer__legal{display:flex;flex-wrap:wrap;justify-content:center;gap:.5rem}
.jsh-footer__legal a{color:hsl(var(--primary-foreground)/.4);text-decoration:none;transition:color .2s}
.jsh-footer__legal a:hover{color:hsl(var(--primary-foreground))}
.jsh-footer__legal span{opacity:.3}
@media(max-width:767px){
  .jsh-footer__legal{gap:.25rem .75rem}
  .jsh-footer__legal span{display:none}
}

/* ═══════════════════════════════════════════════════════════
   PAGE — Legal  (terms.php · privacy-policy.php · cookie-policy.php)
   ═══════════════════════════════════════════════════════════ */
/* ─── Legal page layout (shared by terms, privacy-policy, cookie-policy) ─── */
.lp { max-width: 52rem; margin: 0 auto; padding: 4rem 1.5rem; }
.lp h2 {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  color: hsl(var(--primary)); margin: 2.75rem 0 .75rem;
  padding-top: 2.75rem; border-top: 1px solid hsl(var(--border));
}
.lp h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.lp p  { font-family: var(--font-body); font-size: .9rem; line-height: 1.85; color: hsl(var(--muted-foreground)); margin: 0 0 1rem; }
.lp ul { font-family: var(--font-body); font-size: .9rem; line-height: 1.85; color: hsl(var(--muted-foreground)); padding-left: 1.5rem; margin: 0 0 1rem; }
.lp ul li { margin-bottom: .375rem; }
.lp a { color: hsl(var(--accent-foreground)); }
@media (max-width: 1023px) { .lp { padding: 3rem 1.25rem; } }
@media (max-width:  767px) { .lp { padding: 2.5rem 1.25rem; } }

/* ─── Cookie table (cookie-policy.php only) ─── */
.cookie-table { width: 100%; border-collapse: collapse; font-family: var(--font-body); font-size: .85rem; margin-bottom: 1.5rem; }
.cookie-table th { text-align: left; padding: .75rem 1rem; background: hsl(var(--primary)); color: hsl(var(--primary-foreground) / .7); font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 600; }
.cookie-table td { padding: .75rem 1rem; border-bottom: 1px solid hsl(var(--border)); color: hsl(var(--muted-foreground)); vertical-align: top; }
.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table tr:nth-child(even) td { background: hsl(var(--muted) / .3); }
@media (max-width: 767px) { .cookie-table { font-size: .78rem; } .cookie-table th, .cookie-table td { padding: .6rem .75rem; } }

/* ═══════════════════════════════════════════════════════════
   PAGE — Home  (index.php)
   ═══════════════════════════════════════════════════════════ */

/* Sector tabs */
.sector-panel         { display: none; }
.sector-panel.active  { display: grid; }
@media (min-width: 1024px) { .sector-panel { grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; } }

/* Stat counter animation */
.stat-value { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 700; color: hsl(var(--primary-foreground)); }
.stat-label { font-size: .75rem; font-weight: 500; text-transform: uppercase; letter-spacing: .15em; color: hsl(var(--primary-foreground) / .55); margin-top: .25rem; }
.stat-grid  { grid-template-columns: repeat(2, 1fr) !important; }

/* Image-first splits: push image below text on mobile */
@media (max-width: 767px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .img-first-mobile > div:first-child { order: 2; }
  .img-first-mobile > div:last-child  { order: 1; }
}

/* ═══════════════════════════════════════════════════════════
   PAGE — About  (about.php)
   ═══════════════════════════════════════════════════════════ */
/* (uses only shared utilities — no page-unique classes) */

/* ═══════════════════════════════════════════════════════════
   PAGE — Sectors Index  (sectors.php)
   ═══════════════════════════════════════════════════════════ */
.sector-card { display: block; text-decoration: none; color: inherit; border-radius: 1.25rem; overflow: hidden; border: 1px solid hsl(var(--border)); background: hsl(var(--card)); box-shadow: var(--shadow-card); transition: box-shadow .25s, transform .25s; }
.sector-card:hover { box-shadow: var(--shadow-elegant); transform: translateY(-3px); }
.sector-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; transition: transform .6s; }
.sector-card:hover img { transform: scale(1.04); }
.sector-card__body  { padding: 1.75rem; }
.sector-num         { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; line-height: 1; color: hsl(var(--gold) / .25); margin-bottom: .5rem; }
.sector-card__title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: hsl(var(--foreground)); margin-bottom: .75rem; }
.sector-card__intro { font-size: .85rem; line-height: 1.75; color: hsl(var(--muted-foreground)); font-family: var(--font-body); }
.sector-card__link  { display: inline-flex; align-items: center; gap: .375rem; margin-top: 1.25rem; font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; font-family: var(--font-body); color: hsl(var(--accent-foreground)); }
.company-pill       { display: inline-flex; align-items: center; gap: .35rem; padding: .2rem .65rem; border-radius: 9999px; font-size: .72rem; font-family: var(--font-body); background: hsl(var(--secondary) / .4); color: hsl(var(--foreground)); margin: .2rem; }

/* ═══════════════════════════════════════════════════════════
   PAGE — Contact & Enquiry  (contact.php · enquiry.php)
   ═══════════════════════════════════════════════════════════ */

/* Form elements */
.jsh-label    { display: block; font-family: var(--font-body); font-size: .8rem; font-weight: 600; color: hsl(var(--foreground)); margin-bottom: .4rem; }
.jsh-req      { color: #c8914a; }
.jsh-input,
.jsh-select,
.jsh-textarea {
  width: 100%; box-sizing: border-box; font-family: var(--font-body); font-size: .875rem;
  padding: .75rem 1rem; border-radius: .5rem; border: 1px solid hsl(var(--border));
  background: hsl(var(--background)); color: hsl(var(--foreground));
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.jsh-input:focus,
.jsh-select:focus,
.jsh-textarea:focus {
  border-color: hsl(var(--accent-foreground));
  box-shadow: 0 0 0 3px hsl(var(--accent-foreground) / .12);
}
.jsh-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.jsh-textarea  { resize: vertical; min-height: 140px; }
.jsh-field     { margin-bottom: 1.25rem; }
.jsh-grid      { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.jsh-btn       { display: block; width: 100%; padding: 1rem; background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); font-family: var(--font-body); font-size: .875rem; font-weight: 700; border: none; border-radius: .5rem; cursor: pointer; transition: opacity .2s; text-align: center; }
.jsh-btn:hover    { opacity: .88; }
.jsh-btn:disabled { opacity: .5; cursor: not-allowed; }
.jsh-alert        { padding: 1rem 1.25rem; border-radius: .5rem; font-family: var(--font-body); font-size: .875rem; margin-bottom: 1.25rem; display: none; }
.jsh-alert-err    { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }
.jsh-success      { display: none; text-align: center; padding: 3rem 2rem; border: 1px solid hsl(var(--border)); border-radius: .875rem; }
.jsh-err          { padding: 1rem 1.25rem; border-radius: .5rem; background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; font-family: var(--font-body); font-size: .875rem; margin-bottom: 1.25rem; }
.jsh-divider      { font-family: var(--font-body); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; color: #c8914a; margin: 2rem 0 1.25rem; padding-bottom: .625rem; border-bottom: 1px solid hsl(var(--border)); }
.jsh-disclaimer   { font-family: var(--font-body); font-size: .75rem; color: hsl(var(--muted-foreground)); line-height: 1.6; margin-top: 1rem; text-align: center; }

/* Contact info cards */
.contact-card { display: flex; align-items: flex-start; gap: 1rem; padding: 1.5rem; border: 1px solid hsl(var(--border)); border-radius: .75rem; background: hsl(var(--card)); transition: border-color .2s; }
.contact-card:hover { border-color: #c8914a; }
.contact-icon { width: 2.75rem; height: 2.75rem; border-radius: .625rem; background: hsl(var(--primary)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

@media (max-width: 1023px) {
  .contact-layout { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
  [style*="padding:4rem"] { padding: 2.5rem 1.25rem !important; }
}
@media (max-width: 767px) {
  .jsh-grid      { grid-template-columns: 1fr; }
  .contact-card  { padding: 1.25rem; }
  [style*="padding:4rem"] { padding: 2rem 1rem !important; }
  [style*="padding:3rem"] { padding: 1.75rem 1rem !important; }
}

/* ═══════════════════════════════════════════════════════════
   PAGE — Careers  (careers.php)
   ═══════════════════════════════════════════════════════════ */
.bcard { border-radius: 1rem; padding: 2.25rem; background: #fff; border: 1px solid #e2e8f0; box-shadow: 0 2px 12px rgba(0,0,0,.04); transition: all .22s; }
.bcard:hover { box-shadow: 0 12px 32px rgba(26,46,74,.1); transform: translateY(-4px); border-color: #c8914a; }
.bcard__icon { width: 3.25rem; height: 3.25rem; border-radius: .875rem; background: #1a2e4a; display: flex; align-items: center; justify-content: center; margin-bottom: 1.375rem; }

.pcard { display: flex; gap: 1rem; padding: 1.625rem; border-radius: .875rem; background: #fff; border: 1px solid #e2e8f0; align-items: flex-start; transition: all .2s; }
.pcard:hover { box-shadow: 0 6px 20px rgba(0,0,0,.06); border-color: #5eadb0; }
.pcard__dot { width: 2.25rem; height: 2.25rem; border-radius: .5rem; background: rgba(26,46,74,.06); border: 1px solid rgba(26,46,74,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.step        { padding: 2.25rem 1.875rem; border-radius: 1rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); transition: background .2s, border-color .2s; }
.step:hover  { background: rgba(200,145,74,.08); border-color: rgba(200,145,74,.4); }
.step__num   { font-family: var(--font-display); font-size: 4rem; font-weight: 700; color: rgba(200,145,74,.2); line-height: 1; margin-bottom: .625rem; }
.step__title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: #fff; margin: 0 0 .5rem; }
.step__desc  { font-family: var(--font-body); font-size: .82rem; line-height: 1.78; color: rgba(255,255,255,.5); margin: 0; }

/* ═══════════════════════════════════════════════════════════
   PAGE — Blog 404  (blog-404.php)
   ═══════════════════════════════════════════════════════════ */

/* Blog card */
.bcard                      { display: block; border-radius: 1rem; overflow: hidden; background: #fff; border: 1px solid #e2e8f0; box-shadow: 0 2px 12px rgba(0,0,0,.05); text-decoration: none; color: inherit; transition: all .22s; }
.bcard:hover                { box-shadow: 0 12px 36px rgba(26,46,74,.12); transform: translateY(-3px); border-color: #5eadb0; }
.bcard__img                 { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s; }
.bcard:hover .bcard__img    { transform: scale(1.04); }
.bcard__body                { padding: 1.75rem; }
.bcard__tag                 { display: inline-flex; align-items: center; padding: .25rem .875rem; border-radius: 9999px; font-family: var(--font-body); font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; background: #f0f6ff; border: 1px solid #dbeafe; color: #1a2e4a; margin-bottom: .875rem; }
.bcard__title               { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: #1a2e4a; line-height: 1.35; margin: 0 0 .625rem; }
.bcard__excerpt             { font-family: var(--font-body); font-size: .83rem; line-height: 1.75; color: #64748b; margin: 0; }
.bcard__meta                { margin-top: 1.125rem; font-family: var(--font-body); font-size: .72rem; color: #94a3b8; display: flex; align-items: center; gap: .5rem; }
.author-dot                 { width: 1.875rem; height: 1.875rem; border-radius: 9999px; background: #1a2e4a; display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 700; color: #c8914a; flex-shrink: 0; }
.article-content p          { margin-bottom: 1.375rem; font-size: .95rem; line-height: 1.9; color: #475569; font-family: var(--font-body); }
.author-strip               { display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem; border-radius: .875rem; background: #f8fafc; border: 1px solid #e2e8f0; }

/* ═══════════════════════════════════════════════════════════
   PAGE — News 404  (news-404.php)
   ═══════════════════════════════════════════════════════════ */

/* News card */
.ncard                        { display: block; border-radius: 1rem; overflow: hidden; background: #fff; border: 1px solid #e2e8f0; box-shadow: 0 2px 12px rgba(0,0,0,.05); text-decoration: none; transition: all .22s; }
.ncard:hover                  { box-shadow: 0 12px 36px rgba(26,46,74,.12); transform: translateY(-3px); border-color: #c8914a; }
.ncard__img                   { width: 100%; object-fit: cover; display: block; transition: transform .6s; }
.ncard:hover .ncard__img      { transform: scale(1.04); }
.ncard__body                  { padding: 1.625rem; }
.ncard__tag                   { display: inline-flex; align-items: center; padding: .25rem .875rem; border-radius: 9999px; font-family: var(--font-body); font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; background: #1a2e4a; color: #fff; margin-bottom: .875rem; }
.ncard__title                 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: #1a2e4a; line-height: 1.35; margin: 0 0 .625rem; }
.ncard__excerpt               { font-family: var(--font-body); font-size: .82rem; line-height: 1.75; color: #64748b; margin: 0; }
.ncard__meta                  { margin-top: 1rem; font-family: var(--font-body); font-size: .72rem; color: #94a3b8; display: flex; align-items: center; gap: .5rem; }
.ncard--featured              { grid-column: 1 / -1; }
.ncard--featured .ncard       { display: grid; }
@media (min-width: 768px)     { .ncard--featured .ncard { grid-template-columns: 1.2fr 1fr; } }
@media (max-width: 767px)     { .ncard--featured .ncard { grid-template-columns: 1fr !important; } }
.ncard--featured .ncard__img  { width: 100%; height: 100%; min-height: 320px; aspect-ratio: unset; object-fit: cover; }
.ncard--featured .ncard__img-wrap { overflow: hidden; max-height: 420px; }
.ncard--featured .ncard__title    { font-size: 1.5rem; }
.ncard--featured .ncard__body     { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.ncard--featured .ncard__excerpt  { font-size: .9rem; -webkit-line-clamp: 4; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }

/* Filter bar */
.filter-bar     { background: #fff; border-bottom: 1px solid #e2e8f0; padding: 1.125rem 1.5rem; position: sticky; top: 80px; z-index: 40; }
.filter-select  { padding: .5rem 1rem; border-radius: .5rem; border: 1px solid #e2e8f0; background: #f8fafc; font-family: var(--font-body); font-size: .82rem; color: #1e293b; cursor: pointer; }
.filter-input   { padding: .5rem 1rem; border-radius: .5rem; border: 1px solid #e2e8f0; background: #f8fafc; font-family: var(--font-body); font-size: .82rem; color: #1e293b; flex: 1; min-width: 160px; }
.filter-btn     { padding: .5rem 1.25rem; border-radius: .5rem; background: #1a2e4a; color: #fff; font-family: var(--font-body); font-size: .82rem; font-weight: 600; border: none; cursor: pointer; }
.source-pill    { display: inline-flex; align-items: center; gap: .375rem; padding: .3rem .875rem; border-radius: 9999px; background: #f0f6ff; border: 1px solid #dbeafe; font-family: var(--font-body); font-size: .72rem; font-weight: 600; color: #1a2e4a; }

/* ═══════════════════════════════════════════════════════════
   PAGE — Sitemap  (sitemap.php)
   ═══════════════════════════════════════════════════════════ */
.sm-group        { margin-bottom: 3rem; }
.sm-group-title  { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: hsl(var(--primary)); margin: 0 0 1rem; padding-bottom: .75rem; border-bottom: 2px solid hsl(var(--gold) / .4); display: flex; align-items: center; gap: .75rem; }
.sm-group-title svg { color: hsl(var(--gold)); }
.sm-links        { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: .5rem; list-style: none; padding: 0; margin: 0; }
.sm-links li a   { display: flex; align-items: center; gap: .625rem; padding: .75rem 1rem; border-radius: .5rem; border: 1px solid hsl(var(--border)); font-family: var(--font-body); font-size: .875rem; color: hsl(var(--foreground)); text-decoration: none; transition: border-color .2s, color .2s, background .2s; }
.sm-links li a:hover { border-color: hsl(var(--gold)); color: hsl(var(--accent-foreground)); background: hsl(var(--gold) / .05); }
.sm-links li a svg  { flex-shrink: 0; color: hsl(var(--gold)); }
.sm-contact-grid    { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; }
.sm-contact-card    { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; border-radius: .625rem; border: 1px solid hsl(var(--border)); background: hsl(var(--card, 0 0% 100%)); transition: border-color .2s, box-shadow .2s; }
.sm-contact-card:hover { border-color: hsl(var(--gold)); box-shadow: 0 6px 20px rgba(0,0,0,.04); }
.sm-contact-icon  { flex-shrink: 0; width: 2.25rem; height: 2.25rem; border-radius: .5rem; display: flex; align-items: center; justify-content: center; background: hsl(var(--gold) / .12); color: hsl(var(--gold)); }
.sm-contact-label { font-family: var(--font-body); font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: hsl(var(--gold)); margin: 0 0 .35rem; }
.sm-contact-val   { font-family: var(--font-body); font-size: .88rem; line-height: 1.5; color: hsl(var(--foreground)); margin: 0; }
.sm-contact-val a { color: hsl(var(--foreground)); text-decoration: none; transition: color .2s; }
.sm-contact-val a:hover { color: hsl(var(--gold)); }
@media (max-width: 767px) { .sm-links { grid-template-columns: 1fr !important; } .sm-contact-grid { grid-template-columns: 1fr !important; } }

/* ═══════════════════════════════════════════════════════════
   PAGE — Under Construction  (under-construction.php)
   ═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --uc-navy:      #122040;
    --uc-navy-dark: #0a1525;
    --uc-gold:      #b8893a;
    --uc-gold-light:#c99d55;
    --uc-cream:     #fafafa;
    --font-serif: 'EB Garamond', Georgia, serif;
    --font-sans: 'DM Sans', sans-serif;
  }
  html, body { margin: 0; padding: 0; height: 100%; font-family: var(--font-sans); background: var(--uc-navy-dark); color: var(--uc-cream); overflow-x: hidden; }

  .bg-wrap { position: fixed; inset: 0; z-index: 0; overflow: hidden; }
  .bg-image { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600&q=80') center/cover no-repeat; opacity: 0.12; transform: scale(1.05); animation: slowZoom 20s ease-in-out infinite alternate; }
  @keyframes slowZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
  .bg-gradient { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 0%, hsla(216,49%,30%,0.5) 0%, transparent 70%), linear-gradient(180deg, var(--uc-navy-dark) 0%, hsl(216,49%,15%) 50%, var(--uc-navy-dark) 100%); }

  .deco-line { position: fixed; background: hsla(43,50%,48%,0.12); }
  .deco-line-h { left: 0; right: 0; height: 1px; }
  .deco-line-h.top { top: 2.5rem; }
  .deco-line-h.bottom { bottom: 2.5rem; }
  .deco-line-v { top: 0; bottom: 0; width: 1px; }
  .deco-line-v.left { left: 2.5rem; }
  .deco-line-v.right { right: 2.5rem; }

  .corner { position: fixed; width: 1.5rem; height: 1.5rem; border-color: hsla(43,50%,48%,0.4); border-style: solid; }
  .corner.tl { top: 2rem; left: 2rem; border-width: 1px 0 0 1px; }
  .corner.tr { top: 2rem; right: 2rem; border-width: 1px 1px 0 0; }
  .corner.bl { bottom: 2rem; left: 2rem; border-width: 0 0 1px 1px; }
  .corner.br { bottom: 2rem; right: 2rem; border-width: 0 1px 1px 0; }

  .page { position: relative; z-index: 1; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 5rem 2rem; text-align: center; }
  .logo-wrap { margin-bottom: 3.5rem; opacity: 0; animation: fadeUp 1s ease 0.2s forwards; }
  .logo-wrap img { height: 5rem; width: auto; filter: brightness(1.1); }
  .gold-rule { width: 3rem; height: 1px; background: var(--uc-gold); margin: 0 auto; }
  .label { font-family: var(--font-sans); font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--uc-gold); display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 2rem; opacity: 0; animation: fadeUp 1s ease 0.4s forwards; }
  .heading { font-family: var(--font-serif); font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 500; line-height: 1.08; letter-spacing: -0.02em; color: var(--uc-cream); margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 1s ease 0.6s forwards; }
  .heading em { font-style: italic; color: var(--uc-gold-light); }
  .subtext { font-size: 0.92rem; color: hsla(0,0%,98%,0.5); line-height: 1.8; max-width: 34rem; margin: 0 auto 3.5rem; opacity: 0; animation: fadeUp 1s ease 0.8s forwards; }
  .divider { display: flex; align-items: center; gap: 1.5rem; justify-content: center; margin-bottom: 3.5rem; opacity: 0; animation: fadeUp 1s ease 0.9s forwards; }
  .divider-line { width: 4rem; height: 1px; background: hsla(43,50%,48%,0.35); }
  .divider-diamond { width: 5px; height: 5px; background: var(--uc-gold); transform: rotate(45deg); }
  .countdown-wrap { display: flex; gap: 1px; justify-content: center; margin-bottom: 4rem; opacity: 0; animation: fadeUp 1s ease 1s forwards; }
  .countdown-block { display: flex; flex-direction: column; align-items: center; padding: 1.75rem 2rem; background: hsla(216,49%,20%,0.6); border: 1px solid hsla(43,50%,48%,0.15); backdrop-filter: blur(12px); min-width: 7rem; position: relative; transition: border-color 0.3s; }
  .countdown-block:hover { border-color: hsla(43,50%,48%,0.4); }
  .countdown-block::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--uc-gold), transparent); opacity: 0.4; }
  .countdown-num { font-family: var(--font-serif); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 500; color: var(--uc-cream); line-height: 1; letter-spacing: -0.02em; margin-bottom: 0.6rem; transition: color 0.2s; }
  .countdown-block:hover .countdown-num { color: var(--uc-gold-light); }
  .countdown-label { font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; color: hsla(0,0%,98%,0.35); }
  .countdown-sep { display: flex; align-items: center; padding: 0 0.25rem; padding-bottom: 1.5rem; color: hsla(43,50%,48%,0.4); font-family: var(--font-serif); font-size: 2rem; align-self: center; }
  .footer-note { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: hsla(0,0%,98%,0.2); opacity: 0; animation: fadeUp 1s ease 1.2s forwards; }
  .footer-note span { color: hsla(43,50%,48%,0.5); }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(1.5rem); } to { opacity: 1; transform: translateY(0); } }

  @media (max-width: 768px) {
    .deco-line-v, .corner { display: none; }
    .deco-line-h.top { top: 1rem; }
    .deco-line-h.bottom { bottom: 1rem; }
    .page { padding: 3rem 1.25rem; }
    .logo-wrap { margin-bottom: 2rem; }
    .logo-wrap img { height: 3.5rem; }
    .heading { font-size: clamp(1.8rem, 7vw, 2.8rem); margin-bottom: 1rem; }
    .subtext { font-size: 0.85rem; margin-bottom: 2rem; }
    .countdown-wrap { gap: 0; flex-wrap: nowrap; }
    .countdown-block { min-width: 0; flex: 1; padding: 1rem 0.5rem; }
    .countdown-num { font-size: clamp(1.6rem, 6vw, 2.2rem); margin-bottom: 0.4rem; }
    .countdown-label { font-size: 0.48rem; letter-spacing: 0.12em; }
    .countdown-sep { font-size: 1.4rem; padding: 0 0.1rem; padding-bottom: 1rem; }
    .label { font-size: 0.55rem; gap: 0.6rem; }
    .gold-rule { width: 1.5rem; }
    .divider { margin-bottom: 2rem; }
    .divider-line { width: 2rem; }
    .footer-note { font-size: 0.55rem; }
  }
  @media (max-width: 380px) {
    .countdown-sep { display: none; }
    .countdown-wrap { gap: 4px; }
    .countdown-block { padding: 0.75rem 0.4rem; }
  }

/* ═══════════════════════════════════════════════════════════
   SECTOR PAGES — Shared dark-theme utilities
   (manufacturing · construction-materials · minerals · online-retail)
   ═══════════════════════════════════════════════════════════ */

/* Benefit/check card — 2-col icon + text grid */
.bc       { display: grid; grid-template-columns: 3.5rem 1fr; gap: 1.25rem; padding: 1.75rem; border-radius: .875rem; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.03); transition: background .2s, border-color .2s; }
.bc:hover { background: rgba(200,145,74,.06); border-color: rgba(200,145,74,.3); }
.bc__num  { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; line-height: 1; color: rgba(200,145,74,.25); padding-top: .1rem; }
.bc__title { font-family: var(--font-display); font-size: .92rem; font-weight: 700; color: #f0f0f0; margin-bottom: .35rem; }
.bc__desc  { font-family: var(--font-body); font-size: .8rem; line-height: 1.78; color: rgba(240,240,240,.5); margin: 0; }

/* Service item row */
.svc       { display: flex; gap: .875rem; padding: 1.25rem 1.5rem; border-radius: .75rem; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.04); align-items: flex-start; transition: background .2s, border-color .2s; }
.svc:hover { background: rgba(200,145,74,.06); border-color: rgba(200,145,74,.25); }
.svc-dot   { width: 1.75rem; height: 1.75rem; border-radius: 9999px; flex-shrink: 0; background: rgba(200,145,74,.15); display: flex; align-items: center; justify-content: center; margin-top: .1rem; }

/* Split layout */
.split     { display: grid; }
@media (min-width: 1024px) { .split { grid-template-columns: 1fr 1fr; } }
.split__img              { position: relative; overflow: hidden; min-height: 400px; }
.split__img img          { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.split__img:hover img    { transform: scale(1.04); }
.split__text             { display: flex; flex-direction: column; justify-content: center; padding: 4rem 3rem; }
@media (min-width: 1280px) { .split__text { padding: 5rem 4.5rem; } }

/* Mineral / category pill */
.mineral-pill { display: inline-flex; align-items: center; gap: .5rem; padding: .45rem 1rem; border-radius: 9999px; background: rgba(200,145,74,.12); border: 1px solid rgba(200,145,74,.25); font-family: var(--font-body); font-size: .72rem; font-weight: 600; color: #c8914a; }

/* CTA button pair */
.cta-btns         { display: flex; flex-wrap: wrap; gap: .875rem; justify-content: center; }
.cta-btn-primary  { display: inline-flex; align-items: center; gap: .5rem; background: #c8914a; color: #0b1628; padding: .9rem 2.25rem; border-radius: .5rem; font-family: var(--font-body); font-size: .875rem; font-weight: 700; text-decoration: none; transition: background .2s; }
.cta-btn-primary:hover { background: #b8813e; }
.cta-btn-ghost         { display: inline-flex; align-items: center; border: 1px solid rgba(200,145,74,.4); color: rgba(255,255,255,.8); padding: .9rem 2.25rem; border-radius: .5rem; font-family: var(--font-body); font-size: .875rem; font-weight: 600; text-decoration: none; transition: border-color .2s, color .2s; }
.cta-btn-ghost:hover   { border-color: rgba(200,145,74,.7); color: #fff; }

/* Reversed split: image first in HTML → flows below text on mobile */
@media (max-width: 767px) {
  .split--img-first > .split__img  { order: 2; }
  .split--img-first > .split__text { order: 1; }
}

/* ═══════════════════════════════════════════════════════════
   SECTOR — Manufacturing  (sectors/manufacturing.php)
   ═══════════════════════════════════════════════════════════ */

/* Hero stats — desktop floating card */
.hero-stats-desktop { position: absolute; top: 12rem; right: 1.5rem; width: min(420px, 40%); z-index: 11; display: flex; flex-direction: column; gap: 1rem; }
.hero-stats-mobile  { display: none; }

/* Tablet: stats flow below hero text */
@media (max-width: 1023px) and (min-width: 768px) {
  .hero-stats-desktop { position: static; width: 100%; max-width: 100%; margin: 2rem 0 0; }
  .hero-section  { min-height: auto !important; }
  .hero-inner    { padding: 7rem 1.5rem 3rem !important; }
}

/* Mobile: redesigned compact stats */
@media (max-width: 767px) {
  .hero-section        { min-height: auto !important; display: block !important; }
  .hero-inner          { padding: 6rem 1.25rem 2.5rem !important; }
  .hero-stats-desktop  { display: none !important; }
  .hero-stats-mobile   { display: block; margin-top: 2.25rem; }
  .hs-mobile-label     { font-family: var(--font-body); font-size: .55rem; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; color: #c8914a; margin: 0 0 .75rem; }
  .hs-mobile-grid      { display: grid; grid-template-columns: 1fr 1fr !important; gap: .5rem; padding: .5rem; border: 1px solid rgba(200,145,74,.2); border-radius: .75rem; background: rgba(200,145,74,.04); }
  .hs-mobile-cell      { padding: .875rem .75rem; background: rgba(11,22,40,.75); border-radius: .5rem; text-align: left; border: 1px solid rgba(200,145,74,.08); }
  .hs-mobile-num       { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: #c8914a; line-height: 1.15; margin-bottom: .3rem; }
  .hs-mobile-lbl       { font-family: var(--font-body); font-size: .5rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.5); line-height: 1.35; }
  .hs-mobile-markets   { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
  .hs-mobile-chip      { display: inline-flex; align-items: center; padding: .35rem .75rem; border-radius: 9999px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); font-family: var(--font-body); font-size: .62rem; font-weight: 600; color: rgba(255,255,255,.7); letter-spacing: .02em; }
}

/* ═══════════════════════════════════════════════════════════
   SECTOR — Construction Materials  (sectors/construction-materials.php)
   ═══════════════════════════════════════════════════════════ */

/* Application tiles */
.app-tile           { position: relative; overflow: hidden; border-radius: .5rem; }
.app-tile img       { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; transition: transform .7s ease; }
.app-tile:hover img { transform: scale(1.06); }
.app-tile__ov       { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,22,40,.92) 0%, transparent 55%); }
.app-tile__lb       { position: absolute; bottom: .875rem; left: .875rem; font-family: var(--font-display); font-size: .875rem; font-weight: 700; color: #fff; }

/* Gallery frame */
.gallery-frame           { position: relative; overflow: hidden; border-radius: .75rem; min-height: 380px; }
.gallery-frame img       { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.gallery-frame:hover img { transform: scale(1.04); }
.gallery-frame__cap      { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.75rem; background: linear-gradient(to top, rgba(11,22,40,.92), transparent); }

/* Spec table */
.stbl { width: 100%; border-collapse: collapse; font-family: var(--font-body); font-size: .82rem; }
.stbl thead th         { text-align: left; padding: .875rem 1.375rem; background: #0b1628; color: rgba(240,240,240,.5); font-weight: 600; font-size: .68rem; text-transform: uppercase; letter-spacing: .15em; }
.stbl tbody td         { padding: .75rem 1.375rem; border-bottom: 1px solid rgba(255,255,255,.06); color: rgba(240,240,240,.55); }
.stbl tbody td:first-child { color: rgba(240,240,240,.8); font-weight: 500; }
.stbl tbody td:last-child  { font-weight: 700; color: #c8914a; }
.stbl tbody tr:nth-child(even) td { background: rgba(255,255,255,.02); }
.stbl tbody tr:hover td        { background: rgba(200,145,74,.04); }
.stbl tbody tr:last-child td   { border-bottom: none; }

/* CSR card */
.csr-card       { padding: 2.25rem; border-radius: .875rem; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.03); border-top: 2px solid #c8914a; transition: background .2s, border-color .2s; }
.csr-card:hover { background: rgba(200,145,74,.06); border-color: rgba(200,145,74,.3); }

/* Distribution card */
.dist-card       { padding: 2.25rem 1.75rem; border-radius: .875rem; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); text-align: center; transition: background .2s, border-color .2s; }
.dist-card:hover { background: rgba(200,145,74,.08); border-color: rgba(200,145,74,.3); }

/* Hero content top clearance for fixed navbar */
@media (max-width: 767px) {
  .cm-hero-content { padding: 6rem 1rem 2.5rem !important; }
  .gallery-frame   { min-height: 280px !important; }
}

/* ═══════════════════════════════════════════════════════════
   SECTOR — Minerals  (sectors/Minerals.php)
   ═══════════════════════════════════════════════════════════ */

/* Hero stats (mobile only variant — desktop uses inline positioning) */
.hero-stats-mobile { display: none; }
@media (max-width: 767px) {
  .hero-stats-mobile { display: block; margin-top: 2.25rem; }
  .hs-mobile-label   { font-family: var(--font-body); font-size: .55rem; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; color: #c8914a; margin: 0 0 .75rem; }
  .hs-mobile-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; padding: .5rem; border: 1px solid rgba(200,145,74,.2); border-radius: .75rem; background: rgba(200,145,74,.04); }
  .hs-mobile-cell    { padding: .875rem .75rem; background: rgba(11,22,40,.75); border-radius: .5rem; text-align: center; border: 1px solid rgba(200,145,74,.08); }
  .hs-mobile-num     { font-family: var(--font-display); font-size: .9rem; font-weight: 700; color: #c8914a; line-height: 1.15; }
  .hs-mobile-markets { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
  .hs-mobile-chip    { display: inline-flex; align-items: center; padding: .35rem .75rem; border-radius: 9999px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); font-family: var(--font-body); font-size: .62rem; font-weight: 600; color: rgba(255,255,255,.7); letter-spacing: .02em; }
}

/* Gold bar strip */
.gold-strip       { max-width: 78rem; margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); border-left: 1px solid rgba(0,0,0,.12); border-right: 1px solid rgba(0,0,0,.12); }
.gold-strip__cell { text-align: center; padding: 1.75rem 1rem; }
.gold-strip__cell + .gold-strip__cell { border-left: 1px solid rgba(0,0,0,.12); }

/* Tablet: hero & strip */
@media (max-width: 1023px) and (min-width: 768px) {
  .hero-section  { min-height: auto !important; }
  .hero-inner    { padding: 7rem 1.5rem 3rem !important; }
  .gold-strip    { grid-template-columns: repeat(5, 1fr); }
  .gold-strip__cell { padding: 1.5rem .75rem; }
  .gold-strip__cell .font-display { font-size: 1rem !important; }
  .cta-section   { padding: 4rem 1.5rem !important; }
}

/* Mobile */
@media (max-width: 767px) {
  .hero-section  { min-height: auto !important; display: block !important; }
  .hero-inner    { padding: 6rem 1.25rem 2.5rem !important; }
  .gold-strip    { grid-template-columns: repeat(3, 1fr) !important; }
  .gold-strip__cell { padding: 1.25rem .75rem; }
  .gold-strip__cell .font-display { font-size: 1rem !important; }
  .gold-strip__cell:nth-child(4) { border-left: none; }
  .cta-section   { padding: 3rem 1.25rem !important; }
  .cta-btns      { flex-direction: column; align-items: stretch; }
  .cta-btn-primary,
  .cta-btn-ghost { justify-content: center; padding: .85rem 1.5rem; }
}

/* Very small phones (≤374px) */
@media (max-width: 374px) {
  .hero-inner    { padding: 5rem 1rem 2rem !important; }
  .hs-mobile-grid  { gap: .35rem; }
  .hs-mobile-cell  { padding: .65rem .5rem; }
  .hs-mobile-num   { font-size: .8rem; }
  .gold-strip      { grid-template-columns: repeat(2, 1fr) !important; }
  .gold-strip__cell:nth-child(3) { border-left: none; }
  .gold-strip__cell:nth-child(5) { grid-column: 1 / -1; border-left: none; }
}

/* ═══════════════════════════════════════════════════════════
   SECTOR — Online Retail  (sectors/online-retail.php)
   ═══════════════════════════════════════════════════════════ */

/* Offer cards */
.ocard         { display: grid; grid-template-columns: 3.5rem 1fr; gap: 1.25rem; padding: 1.75rem; border-radius: .875rem; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.03); transition: background .2s, border-color .2s; }
.ocard:hover   { background: rgba(200,145,74,.06); border-color: rgba(200,145,74,.3); }
.ocard__icon   { width: 3rem; height: 3rem; border-radius: .75rem; background: rgba(200,145,74,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ocard__title  { font-family: var(--font-display); font-size: .95rem; font-weight: 700; color: #f0f0f0; margin: 0 0 .35rem; }
.ocard__desc   { font-family: var(--font-body); font-size: .8rem; line-height: 1.78; color: rgba(240,240,240,.5); margin: 0; }

/* Category pills */
.cpill       { display: inline-flex; align-items: center; gap: .625rem; padding: .75rem 1.5rem; border-radius: 9999px; background: rgba(200,145,74,.08); border: 1px solid rgba(200,145,74,.2); font-family: var(--font-body); font-size: .82rem; font-weight: 600; color: #c8914a; transition: all .22s; cursor: default; }
.cpill:hover { background: rgba(200,145,74,.18); border-color: rgba(200,145,74,.5); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,145,74,.15); }

/* Why cards */
.wcard         { display: grid; grid-template-columns: 3.5rem 1fr; gap: 1.25rem; padding: 1.75rem; border-radius: .875rem; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.03); transition: background .2s, border-color .2s; }
.wcard:hover   { background: rgba(200,145,74,.06); border-color: rgba(200,145,74,.3); }
.wcard__num    { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; line-height: 1; color: rgba(200,145,74,.3); padding-top: .1rem; }
.wcard__title  { font-family: var(--font-display); font-size: .92rem; font-weight: 700; color: #f0f0f0; margin-bottom: .35rem; }
.wcard__desc   { font-family: var(--font-body); font-size: .8rem; line-height: 1.78; color: rgba(240,240,240,.5); margin: 0; }

/* Platform rows */
.prow         { display: flex; align-items: center; gap: .875rem; padding: 1.125rem 1.375rem; border-radius: .75rem; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.04); text-decoration: none; transition: background .2s, border-color .2s; }
.prow:hover   { background: rgba(200,145,74,.06); border-color: rgba(200,145,74,.3); }
.prow__icon   { width: 2.5rem; height: 2.5rem; border-radius: .5rem; background: rgba(200,145,74,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* Location rows */
.lrow { display: flex; align-items: center; gap: .75rem; padding: .875rem 1.125rem; border-radius: .625rem; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.04); }

/* VM cards */
.vmcard       { border-radius: 1rem; padding: 2.5rem; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); transition: background .2s, border-color .2s; }
.vmcard:hover { background: rgba(200,145,74,.06); border-color: rgba(200,145,74,.3); }

/* ═══════════════════════════════════════════════════════════
   SECTOR — Hospitality  (sectors/hospitality.php)
   ═══════════════════════════════════════════════════════════ */

/* Hotel card split layout */
.hotel-card { display: grid; min-height: auto; }
@media (min-width: 1024px) { .hotel-card { grid-template-columns: 1fr 1fr; } }

.hotel-img              { position: relative; overflow: hidden; min-height: 420px; }
@media (max-width: 1023px) { .hotel-img { order: -1; } }
.hotel-img img          { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.hotel-img:hover img    { transform: scale(1.04); }

/* Rating badge on image */
.hotel-badge { position: absolute; bottom: 1.5rem; left: 1.5rem; display: flex; align-items: center; gap: .5rem; padding: .5rem 1.125rem; border-radius: 9999px; backdrop-filter: blur(8px); background: rgba(26,46,74,.85); }

/* Text panel */
.hotel-text { display: flex; flex-direction: column; justify-content: center; padding: 3.5rem 3rem; }
@media (min-width: 1280px) { .hotel-text { padding: 4rem 4rem; } }

.hl-item  { display: flex; align-items: flex-start; gap: .5rem; font-family: var(--font-body); font-size: .78rem; line-height: 1.6; color: #64748b; }
.hotel-cta       { display: inline-flex; align-items: center; gap: .5rem; padding: .8rem 1.75rem; border-radius: .5rem; font-family: var(--font-body); font-size: .82rem; font-weight: 700; text-decoration: none; transition: opacity .2s; }
.hotel-cta:hover { opacity: .85; }

/* Portfolio strip */
.port-wrap   { background: #1a2e4a; padding: 0; border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
.port-inner  { max-width: 78rem; margin: 0 auto; display: grid; grid-template-columns: 1fr; align-items: stretch; border-left: 1px solid rgba(255,255,255,.08); border-right: 1px solid rgba(255,255,255,.08); }
.port-left   { display: none; }
.port-vdivider { display: none; }
.port-stats  { display: grid; grid-template-columns: repeat(4, 1fr); }
.port-stat   { text-align: center; padding: 2rem 1rem; }
.port-stat + .port-stat { border-left: 1px solid rgba(255,255,255,.08); }
.port-num    { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: #c8914a; line-height: 1; margin-bottom: .35rem; }
.port-lbl    { font-family: var(--font-body); font-size: .58rem; font-weight: 600; text-transform: uppercase; letter-spacing: .15em; color: rgba(255,255,255,.4); }

@media (max-width: 767px) {
  .port-inner  { grid-template-columns: 1fr !important; }
  .port-vdivider { display: none; }
  .port-left   { padding: 1.5rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,.08); }
  .port-stats  { grid-template-columns: repeat(2, 1fr) !important; }
  .port-stat   { padding: 1.25rem .75rem; }
  .port-stat:nth-child(1),
  .port-stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.08); }
  .port-stat:nth-child(odd)  { border-left: none; }
  .port-stat:nth-child(even) { border-left: 1px solid rgba(255,255,255,.08); }
  .port-strip  { grid-template-columns: 1fr !important; }
  .port-divider { display: none !important; }
  .port-left   { padding: 1.5rem 1.25rem !important; text-align: center; }
  /* Little England CTA */
  .le-cta-btns   { flex-direction: column; align-items: stretch; }
  .le-cta-btns a { justify-content: center; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════
   SECTOR — Real Estate  (sectors/real-estate.php)
   ═══════════════════════════════════════════════════════════ */

/* Sticky sidebar (desktop only) */
@media (min-width: 1024px) {
  .realty-sticky { position: sticky; top: 6rem; align-self: start; }
}

/* Project image reorder on tablet */
@media (max-width: 1023px) {
  .proj-img-right  { order: -1 !important; }
  .proj-text-right { order: 0 !important; }
}

/* Stats strip responsive */
@media (max-width: 767px) {
  .re-stats { grid-template-columns: repeat(2, 1fr) !important; }
  .re-stats > div { border-left: none !important; }
  .re-stats > div:nth-child(even) { border-left: 1px solid hsl(var(--primary-foreground) / .1) !important; }
  .re-stats > div:nth-child(1),
  .re-stats > div:nth-child(2),
  .re-stats > div:nth-child(3),
  .re-stats > div:nth-child(4) { border-bottom: 1px solid hsl(var(--primary-foreground) / .1); }
  [style*="min-height:600px"] { min-height: auto !important; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .re-stats { grid-template-columns: repeat(3, 1fr) !important; }
  .re-stats > div:nth-child(1),
  .re-stats > div:nth-child(4) { border-left: none !important; }
  .re-stats > div:nth-child(1),
  .re-stats > div:nth-child(2),
  .re-stats > div:nth-child(3) { border-bottom: 1px solid hsl(var(--primary-foreground) / .1); }
}