/* ============================================================
   RESHI REAL ASSETS — MAIN STYLESHEET v2.0
   Header + Footer styles only.
   Page content styles are handled by Elementor.
   ============================================================ */

/* ── CSS VARIABLES ── */
:root {
  --navy:     #001a72;
  --navy-dk:  #000e45;
  --navy-mid: #0a2280;
  --navy-lt:  #0d2d9a;
  --white:    #ffffff;
  --cream:    #f4f7ff;
  --fog:      #cfd9f0;
  --ink:      #0d1433;
  --body:     #2a3255;
  --muted:    rgba(0,26,114,0.42);
  --rule:     rgba(0,26,114,0.12);
  --rule-w:   rgba(255,255,255,0.14);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── MOBILE NAV OVERLAY ── */
.reshi-mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-dk);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.reshi-mob-overlay.open { display: flex; }
.reshi-mob-overlay ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.reshi-mob-overlay li { margin: 0; padding: 0; }
.reshi-mob-overlay a,
.reshi-mob-overlay li a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.06em;
  transition: color 0.2s;
  display: block;
}
.reshi-mob-overlay a:hover { color: rgba(255,255,255,0.65); }
.mob-close-btn {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ── SITE HEADER ── */
#reshi-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 60px;
  background: transparent;
  transition: background 0.45s, padding 0.4s;
}
#reshi-header.scrolled {
  background: rgba(0, 26, 114, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 60px;
  border-bottom: 1px solid var(--rule-w);
}

/* Brand / Logo */
.reshi-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.reshi-brand .site-logo {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.22);
}
.reshi-brand .site-logo-text {
  width: 40px;
  height: 40px;
  background: var(--navy-lt);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
}
.reshi-brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: #fff;
  line-height: 1.2;
}
.reshi-brand-name small {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.48;
  font-weight: 300;
}

/* Primary Nav */
.reshi-primary-nav {
  display: flex;
  align-items: center;
  gap: 0;
}
.reshi-primary-nav ul {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.reshi-primary-nav li { margin: 0; padding: 0; }
.reshi-primary-nav a {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  display: block;
}
.reshi-primary-nav a:hover,
.reshi-primary-nav .current-menu-item > a,
.reshi-primary-nav .current_page_item > a { color: #fff; }

/* Nav CTA */
.reshi-nav-cta {
  font-family: 'Jost', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.45);
  padding: 10px 24px;
  transition: background 0.22s, border-color 0.22s;
  white-space: nowrap;
  margin-left: 32px;
  flex-shrink: 0;
}
.reshi-nav-cta:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

/* Hamburger */
.reshi-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 20px;
}
.reshi-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

/* ── ELEMENTOR PAGE WRAPPER ── */
/* Ensures Elementor content starts below the fixed nav */
.elementor-page #reshi-content,
body.elementor-page main,
#reshi-content {
  padding-top: 0;
}

/* Give Elementor full width — no container restrictions */
.elementor-section.elementor-section-full_width {
  max-width: 100%;
}

/* ── SITE FOOTER ── */
#reshi-footer {
  background: var(--navy-dk);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 60px 60px 38px;
}
.reshi-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 46px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.reshi-footer-brand p {
  font-size: 0.79rem;
  color: rgba(255,255,255,0.36);
  line-height: 1.84;
  max-width: 260px;
  margin-top: 16px;
}
.reshi-footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-bottom: 18px;
  font-weight: 400;
}
.reshi-footer-col ul { list-style: none; margin: 0; padding: 0; }
.reshi-footer-col ul li { margin-bottom: 10px; }
.reshi-footer-col ul a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.42);
  transition: color 0.2s;
  display: inline-block;
}
.reshi-footer-col ul a:hover { color: rgba(255,255,255,0.88); }

/* Footer Social */
.reshi-footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}
.reshi-footer-social a {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.reshi-footer-social a:hover { color: rgba(255,255,255,0.8); }

/* Footer Bottom */
.reshi-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.reshi-footer-bottom p {
  font-family: 'Jost', sans-serif;
  font-size: 0.66rem;
  color: rgba(255,255,255,0.26);
  letter-spacing: 0.06em;
}
.reshi-footer-legal { display: flex; gap: 22px; }
.reshi-footer-legal a {
  font-size: 0.64rem;
  color: rgba(255,255,255,0.26);
  transition: color 0.2s;
}
.reshi-footer-legal a:hover { color: rgba(255,255,255,0.55); }

/* ── ELEMENTOR GLOBAL HELPERS ── */
/* These classes can be used inside Elementor via custom CSS */
.reshi-section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 13px;
}
.reshi-section-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--navy);
  opacity: 0.35;
  flex-shrink: 0;
}
.reshi-section-label.on-dark { color: rgba(255,255,255,0.5); }
.reshi-section-label.on-dark::before { background: rgba(255,255,255,0.4); opacity: 1; }

/* ── SCROLL REVEAL (for Elementor sections) ── */
.reshi-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.reshi-reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  #reshi-header,
  #reshi-header.scrolled { padding-left: 30px; padding-right: 30px; }
  #reshi-footer { padding-left: 30px; padding-right: 30px; }
  .reshi-footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .reshi-primary-nav,
  .reshi-nav-cta { display: none; }
  .reshi-hamburger { display: flex; }
  .reshi-footer-top { grid-template-columns: 1fr; gap: 32px; }
}
