

/* ══════════════════════════════════════════════
   GENUINEPLOTS HEADER — COMPLETE COMPONENT
   Copy everything between START and END markers
   ══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --gp-forest:     #1a2e22;
  --gp-forest-d:   #111e17;
  --gp-forest-m:   #243d2e;
  --gp-forest-l:   #2e5040;
  --gp-forest-f:   #f0f5f1;
  --gp-gold:       #b08d57;
  --gp-gold-l:     #d4af70;
  --gp-gold-pale:  #f5edda;
  --gp-cream:      #f8f4ec;
  --gp-border:     #e5dfd2;
  --gp-ink:        #1a1a1a;
  --gp-slate:      #444;
  --gp-muted:      #777;
  --gp-white:      #fff;
  --gp-r:          8px;
  --gp-nav-h:      68px;
  --gp-top-h:      36px;
  --gp-total-h:    104px; /* top + nav combined */
  --gp-shadow:     0 8px 40px rgba(26,46,34,.14);
  --gp-shadow-sm:  0 4px 16px rgba(26,46,34,.09);
}

/* ── RESET (scoped to header only) ── */
.gp-header *, .gp-header *::before, .gp-header *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}
.gp-header a { 
    text-decoration: none; 
    /*color: inherit;*/
}
.gp-header button { font-family: inherit; cursor: pointer; border: none; background: none; }
.gp-header ul, .gp-header li { list-style: none; }

/* ═══════════════════════════════
   TOP BAR
═══════════════════════════════ */
.gp-topbar {
  background: var(--gp-forest-d);
  height: var(--gp-top-h);
  border-bottom: 1px solid rgba(176,141,87,.1);
  position: fixed; top: 0; left: 0; right: 0; z-index: 600;
}
.gp-topbar-inner {
  max-width: 1380px; margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.gp-topbar-left {
  display: flex; align-items: center; gap: 20px;
}
.gp-topbar-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 11.5px; color: rgba(255,255,255,.38);
  font-family: 'DM Sans', sans-serif;
  transition: color .2s;
}
.gp-topbar-item:hover { color: rgba(255,255,255,.65); }
.gp-topbar-item svg { opacity: .5; flex-shrink: 0; }
.gp-topbar-sep {
  width: 1px; height: 14px;
  background: rgba(255,255,255,.1);
}
.gp-topbar-right {
  display: flex; align-items: center; gap: 14px;
}
.gp-topbar-badge {
  display: flex; align-items: center; gap: 5px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .5px;
  color: var(--gp-gold-l); opacity: .75;
  font-family: 'DM Sans', sans-serif;
}
.gp-topbar-badge::before {
  content: ''; width: 5px; height: 5px;
  border-radius: 50%; background: var(--gp-gold);
  animation: gp-pulse 2s infinite;
}
@keyframes gp-pulse {
  0%,100% { opacity: 1; } 50% { opacity: .3; }
}
.gp-topbar-social {
  display: flex; align-items: center; gap: 8px;
}
.gp-social-link {
  width: 24px; height: 24px; border-radius: 4px;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  transition: .2s; color: rgba(255,255,255,.35);
  font-size: 12px;
}
.gp-social-link:hover {
  background: rgba(176,141,87,.18);
  color: var(--gp-gold-l);
}

/* ═══════════════════════════════
   MAIN NAV
═══════════════════════════════ */
.gp-nav {
  position: fixed; top: var(--gp-top-h); left: 0; right: 0; z-index: 599;
  background: var(--gp-forest);
  height: var(--gp-nav-h);
  transition: background .3s, box-shadow .3s, top .3s;
  font-family: 'DM Sans', sans-serif;
}
.gp-nav.scrolled {
  background: rgba(17,30,23,.97);
  box-shadow: var(--gp-shadow);
  backdrop-filter: blur(12px);
}
.gp-nav.top-hidden {
  top: 0;
}
.gp-nav-inner {
  max-width: 1380px; margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex; align-items: center; gap: 0;
}

/* Logo */
.gp-logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0; margin-right: 32px; text-decoration: none;
}
.gp-logo-img {
  height: 34px; width: auto; display: block;
}
.gp-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400; color: #fff;
  line-height: 1; letter-spacing: -.2px;
}
.gp-logo-text span { color: var(--gp-gold-l); font-style: italic; }
.gp-logo-tagline {
  font-size: 8.5px; font-weight: 600; letter-spacing: 1.8px;
  text-transform: uppercase; color: rgba(255,255,255,.28);
  display: block; margin-top: 2px;
}

/* Nav Items */
.gp-nav-list {
  display: flex; align-items: stretch; gap: 0;
  height: 100%; flex: 1;
}
.gp-nav-item {
  position: relative; display: flex; align-items: center;
}
.gp-nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 0 14px; height: 100%;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.55);
  transition: color .2s;
  white-space: nowrap;
  position: relative;
}
.gp-nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 14px; right: 14px;
  height: 2px; background: var(--gp-gold-l);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.gp-nav-item:hover > .gp-nav-link,
.gp-nav-link.active {
  color: #fff;
}
.gp-nav-item:hover > .gp-nav-link::after,
.gp-nav-link.active::after {
  transform: scaleX(1);
}
.gp-nav-link svg {
  transition: transform .25s;
  opacity: .45;
  flex-shrink: 0;
}
.gp-nav-item:hover > .gp-nav-link svg {
  transform: rotate(180deg); opacity: .7;
}

/* Verified badge on nav */
.gp-nav-badge {
  font-size: 8.5px; font-weight: 800; letter-spacing: .6px;
  background: var(--gp-gold); color: var(--gp-forest);
  padding: 2px 5px; border-radius: 3px;
  text-transform: uppercase; margin-left: 2px;
}

/* ═══════════════════════════════
   DROPDOWNS
═══════════════════════════════ */
.gp-dropdown {
  position: absolute; top: calc(100% + 1px); left: 0;
  background: var(--gp-white); border: 1px solid var(--gp-border);
  border-radius: var(--gp-r); box-shadow: var(--gp-shadow);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 700;
}
.gp-nav-item:hover > .gp-dropdown,
.gp-dropdown:hover {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateY(0);
}
.gp-dropdown-sm { min-width: 220px; padding: 8px 0; }
.gp-dropdown-md { min-width: 280px; padding: 8px 0; }
.gp-dropdown-lg { min-width: 680px; padding: 20px; }

/* Simple dropdown item */
.gp-dd-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  font-size: 13px; font-weight: 500; color: var(--gp-slate);
  transition: .18s; cursor: pointer;
  border-left: 3px solid transparent;
}
.gp-dd-item:hover {
  background: var(--gp-gold-pale); color: var(--gp-forest);
  border-left-color: var(--gp-gold);
}
.gp-dd-item svg { color: var(--gp-muted); flex-shrink: 0; transition: .18s; }
.gp-dd-item:hover svg { color: var(--gp-gold); }
.gp-dd-item-sub {
  font-size: 11px; color: var(--gp-muted); line-height: 1.4;
  margin-top: 1px;
}
.gp-dd-sep {
  height: 1px; background: var(--gp-border);
  margin: 6px 16px;
}
.gp-dd-label {
  padding: 8px 16px 4px;
  font-size: 9.5px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gp-muted);
}

/* MEGA DROPDOWN */
.gp-mega {
  left: 50%; transform: translateX(-50%) translateY(8px);
  right: auto;
}
.gp-nav-item:hover > .gp-mega {
  transform: translateX(-50%) translateY(0);
}
.gp-mega-grid {
  display: grid; grid-template-columns: 200px 1fr 1fr;
  gap: 0;
}
.gp-mega-col {
  padding: 4px 0;
}
.gp-mega-col + .gp-mega-col {
  border-left: 1px solid var(--gp-border);
  padding-left: 4px;
}
.gp-mega-col-head {
  padding: 10px 16px 6px;
  font-size: 9.5px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gp-muted);
  display: flex; align-items: center; gap: 7px;
}
.gp-mega-col-head::after {
  content: ''; flex: 1; height: 1px; background: var(--gp-border);
}
.gp-mega-featured {
  background: var(--gp-forest); border-radius: 7px 0 0 7px;
  padding: 16px !important;
  display: flex; flex-direction: column; gap: 0;
}
.gp-mega-feat-label {
  font-size: 9px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,.3);
  margin-bottom: 10px;
}
.gp-mega-feat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; color: #fff; font-weight: 400;
  line-height: 1.3; margin-bottom: 8px;
}
.gp-mega-feat-stat {
  font-size: 11.5px; color: rgba(255,255,255,.42);
  line-height: 1.65; margin-bottom: 14px;
}
.gp-mega-feat-stat strong { color: var(--gp-gold-l); }
.gp-mega-feat-cta {
  margin-top: auto; background: var(--gp-gold);
  color: var(--gp-forest); font-size: 12px; font-weight: 700;
  padding: 9px 14px; border-radius: 5px; display: block;
  text-align: center; transition: .2s;
}
.gp-mega-feat-cta:hover { background: var(--gp-gold-l); }

/* Search-in-land mega item style */
.gp-land-type-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 14px; border-radius: 6px;
  margin: 2px 6px;
  font-size: 12.5px; font-weight: 500; color: var(--gp-slate);
  transition: .18s; cursor: pointer;
}
.gp-land-type-item:hover {
  background: var(--gp-forest-f); color: var(--gp-forest);
}
.gp-lt-icon {
  width: 30px; height: 30px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
  background: var(--gp-cream); border: 1px solid var(--gp-border);
  transition: .18s;
}
.gp-land-type-item:hover .gp-lt-icon {
  background: var(--gp-gold-pale); border-color: var(--gp-gold);
}

/* Resources mega */
.gp-resource-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 14px; border-radius: 6px;
  margin: 2px 6px;
  transition: .18s; cursor: pointer;
}
.gp-resource-item:hover { background: var(--gp-forest-f); }
.gp-ri-icon {
  width: 32px; height: 32px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0; background: var(--gp-cream);
}
.gp-ri-title {
  font-size: 12.5px; font-weight: 600; color: var(--gp-forest);
  margin-bottom: 2px;
}
.gp-ri-sub {
  font-size: 11px; color: var(--gp-muted); line-height: 1.4;
}

/* ═══════════════════════════════
   RIGHT ACTIONS
═══════════════════════════════ */
.gp-nav-actions {
  display: flex; align-items: center; gap: 8px;
  margin-left: auto; padding-left: 16px; flex-shrink: 0;
}
.gp-btn {
  padding: 9px 20px; border-radius: 6px;
  font-family: 'DM Sans', sans-serif; font-size: 12.5px; font-weight: 700;
  cursor: pointer; transition: .22s; display: inline-flex;
  align-items: center; gap: 6px; white-space: nowrap;
}
.gp-btn-ghost {
  background: transparent; color: rgba(255,255,255,.6);
  border: 1.5px solid rgba(255,255,255,.18);
}
.gp-btn-ghost:hover {
  border-color: rgba(255,255,255,.4); color: #fff;
}
.gp-btn-outline {
  background: transparent; color: var(--gp-gold-l);
  border: 1.5px solid rgba(176,141,87,.35);
}
.gp-btn-outline:hover {
  background: rgba(176,141,87,.1);
  border-color: var(--gp-gold-l);
}
.gp-btn-gold {
  background: var(--gp-gold); color: var(--gp-forest);
  border: 1.5px solid var(--gp-gold);
  box-shadow: 0 2px 12px rgba(176,141,87,.25);
}
.gp-btn-gold:hover {
  background: var(--gp-gold-l); border-color: var(--gp-gold-l);
  box-shadow: 0 4px 20px rgba(176,141,87,.35);
  transform: translateY(-1px);
}
.gp-btn-investor {
  background: transparent;
  color: var(--gp-gold-l);
  border: 1.5px solid rgba(176,141,87,.4);
  font-size: 11.5px;
  position: relative; overflow: hidden;
}
.gp-btn-investor::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(176,141,87,.1), transparent);
  transform: translateX(-100%);
  transition: transform .5s;
}
.gp-btn-investor:hover::before { transform: translateX(100%); }
.gp-btn-investor:hover {
  background: rgba(176,141,87,.08);
  border-color: var(--gp-gold-l);
}

/* Notification bell */
.gp-notif-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); transition: .2s; position: relative;
  cursor: pointer; flex-shrink: 0;
}
.gp-notif-btn:hover {
  background: rgba(176,141,87,.12); border-color: rgba(176,141,87,.2);
  color: var(--gp-gold-l);
}
.gp-notif-dot {
  position: absolute; top: 7px; right: 7px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gp-gold); border: 1.5px solid var(--gp-forest);
}

/* User avatar */
.gp-user-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 5px 10px 5px 5px; border-radius: 8px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  cursor: pointer; transition: .2s; color: rgba(255,255,255,.7);
  font-size: 12.5px; font-weight: 500;
}
.gp-user-btn:hover {
  background: rgba(176,141,87,.1); border-color: rgba(176,141,87,.2);
}
.gp-user-avatar {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--gp-gold); color: var(--gp-forest);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; flex-shrink: 0;
}

/* ═══════════════════════════════
   MOBILE HAMBURGER
═══════════════════════════════ */
.gp-hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; align-items: center; justify-content: center;
  border-radius: 7px; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1); cursor: pointer;
  transition: .2s; flex-shrink: 0;
}
.gp-hamburger:hover { background: rgba(176,141,87,.1); }
.gp-ham-line {
  width: 18px; height: 1.5px; background: rgba(255,255,255,.6);
  border-radius: 2px; transition: .25s;
}
.gp-hamburger.open .gp-ham-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.gp-hamburger.open .gp-ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.gp-hamburger.open .gp-ham-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════
   MOBILE DRAWER
═══════════════════════════════ */
.gp-mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(380px, 90vw);
  background: var(--gp-forest-d); z-index: 800;
  transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.2,1);
  overflow-y: auto; padding-top: calc(var(--gp-top-h) + var(--gp-nav-h));
  border-left: 1px solid rgba(176,141,87,.1);
}
.gp-mobile-drawer.open { transform: translateX(0); }
.gp-drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  z-index: 799; opacity: 0; pointer-events: none;
  transition: opacity .3s; backdrop-filter: blur(3px);
}
.gp-drawer-overlay.show { opacity: 1; pointer-events: all; }

.gp-mob-section {
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.gp-mob-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,.65);
  cursor: pointer; transition: .18s;
}
.gp-mob-link:hover, .gp-mob-link.open { color: #fff; background: rgba(255,255,255,.04); }
.gp-mob-link.active { color: var(--gp-gold-l); }
.gp-mob-link svg { transition: transform .25s; opacity: .4; }
.gp-mob-link.open svg { transform: rotate(180deg); opacity: .7; }

.gp-mob-sub {
  display: none; background: rgba(255,255,255,.03);
}
.gp-mob-sub.open { display: block; }
.gp-mob-sub-label {
  padding: 10px 28px 4px;
  font-size: 9.5px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,.2);
}
.gp-mob-sub-link {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 28px;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,.5);
  transition: .18s;
  border-left: 3px solid transparent; margin-left: 4px;
}
.gp-mob-sub-link:hover {
  color: rgba(255,255,255,.8); background: rgba(255,255,255,.04);
  border-left-color: var(--gp-gold);
}

.gp-mob-actions {
  padding: 20px 24px; display: flex; flex-direction: column; gap: 10px;
}
.gp-mob-btn-full {
  width: 100%; padding: 13px; text-align: center;
  border-radius: 7px; font-family: 'DM Sans', sans-serif;
  font-size: 13.5px; font-weight: 700; cursor: pointer;
  transition: .2s; border: none;
}
.gp-mob-btn-primary { background: var(--gp-gold); color: var(--gp-forest); }
.gp-mob-btn-primary:hover { background: var(--gp-gold-l); }
.gp-mob-btn-secondary {
  background: transparent; color: rgba(255,255,255,.6);
  border: 1.5px solid rgba(255,255,255,.15) !important;
}
.gp-mob-btn-secondary:hover { border-color: rgba(255,255,255,.3) !important; color: #fff; }
.gp-mob-investor {
  background: rgba(176,141,87,.1); color: var(--gp-gold-l);
  border: 1.5px solid rgba(176,141,87,.2) !important;
  font-size: 12.5px;
}
.gp-mob-contact {
  padding: 16px 24px 24px;
  font-size: 12px; color: rgba(255,255,255,.28);
  border-top: 1px solid rgba(255,255,255,.05);
}
.gp-mob-contact a {
  color: rgba(255,255,255,.45); text-decoration: none;
  display: flex; align-items: center; gap: 6px; margin-bottom: 7px;
}
.gp-mob-contact a:hover { color: var(--gp-gold-l); }

/* Breadcrumb strip (optional, include per page) */
.gp-breadcrumb {
  position: fixed; top: var(--gp-total-h); left: 0; right: 0; z-index: 500;
  background: rgba(17,30,23,.96); border-bottom: 1px solid rgba(176,141,87,.08);
  padding: 8px 40px; font-size: 11.5px;
}
.gp-breadcrumb-inner {
  max-width: 1380px; margin: 0 auto;
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,.28);
}
.gp-breadcrumb a { color: rgba(255,255,255,.28); transition: color .2s; }
.gp-breadcrumb a:hover { color: var(--gp-gold-l); }
.gp-breadcrumb-sep { color: rgba(255,255,255,.12); }
.gp-breadcrumb-cur { color: var(--gp-gold-l); font-weight: 600; }

/* ── Spacer — add this to page body ── */
.gp-header-spacer { height: var(--gp-total-h); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .gp-topbar-left { display: none; }
  .gp-nav-inner { padding: 0 24px; }
  .gp-nav-list { display: none; }
  .gp-hamburger { display: flex; }
  .gp-nav-actions .gp-btn-ghost,
  .gp-nav-actions .gp-btn-outline { display: none; }
  .gp-breadcrumb { padding: 7px 24px; }
}
@media (max-width: 640px) {
  .gp-topbar { display: none; }
  .gp-nav { top: 0 !important; }
  .gp-nav.top-hidden { top: 0; }
  :root { --gp-total-h: var(--gp-nav-h); }
  .gp-topbar-inner { padding: 0 20px; }
  .gp-nav-inner { padding: 0 20px; }
}

/* ══════════════════════════════════
   DEMO PAGE STYLES (not part of component)
══════════════════════════════════ */
body {
  font-family: 'DM Sans', sans-serif;
  background: #f8f4ec; margin: 0;
}
.demo-body {
  padding: 40px; max-width: 1200px; margin: 0 auto;
}
.demo-section {
  background: white; border-radius: 12px; padding: 32px;
  margin-bottom: 24px; border: 1px solid #e5dfd2;
}
.demo-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; color: #1a2e22; margin-bottom: 8px;
}
.demo-sub {
  font-size: 13.5px; color: #777; line-height: 1.7; margin-bottom: 20px;
}
.demo-tag {
  display: inline-block; background: #f0f5f1; border: 1px solid #e5dfd2;
  color: #444; font-size: 11px; font-weight: 600; padding: 3px 9px;
  border-radius: 4px; margin-right: 6px; margin-bottom: 8px;
}
.demo-code {
  background: #111e17; color: #d4af70; padding: 20px;
  border-radius: 8px; font-family: 'Courier New', monospace;
  font-size: 12.5px; line-height: 1.7; overflow-x: auto;
  margin-top: 16px;
}
.demo-states-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-top: 16px;
}
.demo-state-card {
  background: #f8f4ec; border: 1px solid #e5dfd2; border-radius: 8px;
  padding: 14px; font-size: 12.5px;
}
.demo-state-label { font-weight: 700; color: #1a2e22; margin-bottom: 4px; }
.demo-state-desc { color: #777; font-size: 11.5px; line-height: 1.5; }

/*footer start*/
/* ════════════════════════════════════════════
   GENUINEPLOTS FOOTER — COMPLETE COMPONENT
   ════════════════════════════════════════════ */

.gp-footer *, .gp-footer *::before, .gp-footer *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}
.gp-footer a { 
    text-decoration: none; 
    /*color: inherit;*/
}
.gp-footer ul, .gp-footer li { list-style: none; }
.gp-footer button { font-family: inherit; cursor: pointer; border: none; }

/* ── PRE-FOOTER CTA BAND ── */
.gp-footer-cta {
  background: var(--gp-forest);
  padding: 56px 5vw;
  position: relative; overflow: hidden;
}
.gp-footer-cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 90% 50%, rgba(176,141,87,.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 80% at 10% 50%, rgba(176,141,87,.04) 0%, transparent 60%);
  pointer-events: none;
}
.gp-footer-cta-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 40px;
  position: relative; z-index: 1;
}
.gp-cta-eyebrow {
  font-size: 10px; font-weight: 800; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gp-gold);
  margin-bottom: 10px;
}
.gp-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 300; color: #fff; line-height: 1.15;
  margin-bottom: 8px;
}
.gp-cta-title em { font-style: italic; color: var(--gp-gold-l); }
.gp-cta-sub {
  font-size: 13.5px; color: rgba(255,255,255,.4);
  line-height: 1.8; max-width: 520px;
}
.gp-cta-actions {
  display: flex; flex-direction: column; gap: 10px;
  align-items: flex-end; flex-shrink: 0;
}
.gp-cta-btn-primary {
  background: var(--gp-gold); color: var(--gp-forest);
  padding: 14px 28px; border-radius: 7px;
  font-size: 13.5px; font-weight: 700;
  transition: .22s; display: flex; align-items: center; gap: 8px;
  white-space: nowrap; box-shadow: 0 4px 18px rgba(176,141,87,.3);
}
.gp-cta-btn-primary:hover {
  background: var(--gp-gold-l); transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(176,141,87,.4);
}
.gp-cta-btn-secondary {
  background: transparent; color: rgba(255,255,255,.55);
  padding: 12px 24px; border-radius: 7px;
  font-size: 13px; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,.15);
  transition: .22s; display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.gp-cta-btn-secondary:hover {
  border-color: var(--gp-gold-l); color: var(--gp-gold-l);
}
.gp-cta-stats {
  display: flex; gap: 32px; margin-top: 20px; flex-wrap: wrap;
}
.gp-cta-stat { }
.gp-cta-stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; color: var(--gp-gold-l); line-height: 1;
}
.gp-cta-stat-lab {
  font-size: 10.5px; color: rgba(255,255,255,.3);
  letter-spacing: 1px; text-transform: uppercase; margin-top: 2px;
}

/* ── NEWSLETTER BAND ── */
.gp-footer-news {
  background: var(--gp-forest-m);
  border-top: 1px solid rgba(176,141,87,.08);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 28px 5vw;
}
.gp-footer-news-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.gp-news-left {
  display: flex; align-items: center; gap: 14px; flex: 1; min-width: 240px;
}
.gp-news-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(176,141,87,.12); border: 1px solid rgba(176,141,87,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.gp-news-title {
  font-size: 14.5px; font-weight: 700; color: #fff; margin-bottom: 2px;
}
.gp-news-sub {
  font-size: 12px; color: rgba(255,255,255,.35); line-height: 1.5;
}
.gp-news-form {
  display: flex; gap: 8px; flex: 1; min-width: 280px; max-width: 480px;
}
.gp-news-input {
  flex: 1; padding: 11px 16px;
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 7px; font-family: 'DM Sans', sans-serif;
  font-size: 13px; color: rgba(255,255,255,.75);
  outline: none; transition: .2s;
}
.gp-news-input::placeholder { color: rgba(255,255,255,.28); }
.gp-news-input:focus {
  border-color: rgba(176,141,87,.4);
  background: rgba(255,255,255,.09);
}
.gp-news-btn {
  padding: 11px 22px; background: var(--gp-gold); color: var(--gp-forest);
  border-radius: 7px; font-size: 13px; font-weight: 700;
  transition: .22s; white-space: nowrap;
  display: flex; align-items: center; gap: 6px;
}
.gp-news-btn:hover { background: var(--gp-gold-l); }
.gp-news-note {
  font-size: 10.5px; color: rgba(255,255,255,.22);
  margin-left: 2px; align-self: flex-end;
  white-space: nowrap;
}

/* ── MAIN FOOTER BODY ── */
.gp-footer-main {
  background: var(--gp-forest-d);
  padding: 56px 5vw 0;
  position: relative; overflow: hidden;
}
.gp-footer-main::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; top: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(176,141,87,.018) 80px, rgba(176,141,87,.018) 81px),
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(176,141,87,.018) 80px, rgba(176,141,87,.018) 81px);
  pointer-events: none;
}
.gp-footer-main-inner {
  max-width: 1320px; margin: 0 auto; position: relative; z-index: 1;
}

/* Brand block + grid */
.gp-footer-grid {
  display: grid;
  grid-template-columns: 300px 1fr 1fr 1fr 1fr;
  gap: 40px 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

/* Brand col */
.gp-footer-brand { }
.gp-footer-logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.gp-footer-logo-img { height: 32px; width: auto; }
.gp-footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-weight: 400; color: #fff;
}
.gp-footer-logo-text span { color: var(--gp-gold-l); font-style: italic; }
.gp-footer-tagline {
  font-size: 13px; color: rgba(255,255,255,.38);
  line-height: 1.8; margin-bottom: 20px; max-width: 250px;
}
.gp-footer-contact-list { margin-bottom: 20px; }
.gp-footer-contact-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 12.5px; color: rgba(255,255,255,.42);
  margin-bottom: 9px; transition: .2s;
}
.gp-footer-contact-item:hover { color: rgba(255,255,255,.7); }
.gp-footer-contact-icon {
  width: 28px; height: 28px; border-radius: 6px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; flex-shrink: 0;
}
/* Certs */
.gp-footer-certs {
  display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px;
}
.gp-footer-cert {
  display: flex; align-items: center; gap: 5px;
  background: rgba(176,141,87,.08); border: 1px solid rgba(176,141,87,.16);
  border-radius: 5px; padding: 5px 9px;
  font-size: 10px; font-weight: 700; letter-spacing: .5px;
  color: rgba(176,141,87,.75);
}
.gp-footer-cert::before { content: '✓'; color: var(--gp-gold); font-weight: 900; }
/* Social */
.gp-footer-social { display: flex; gap: 8px; }
.gp-footer-social-link {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: rgba(255,255,255,.38);
  transition: .22s; font-weight: 700;
}
.gp-footer-social-link:hover {
  background: rgba(176,141,87,.14); border-color: rgba(176,141,87,.25);
  color: var(--gp-gold-l); transform: translateY(-2px);
}

/* Nav columns */
.gp-fcol { }
.gp-fcol-title {
  font-size: 10px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,.28);
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.05);
}
.gp-fcol-title::before {
  content: ''; width: 20px; height: 1.5px; background: var(--gp-gold); border-radius: 2px;
}
.gp-fcol-list { display: flex; flex-direction: column; gap: 1px; }
.gp-flink {
  display: flex; align-items: center; gap: 7px;
  padding: 6px 0; font-size: 12.5px; color: rgba(255,255,255,.42);
  transition: .2s; border-left: 2px solid transparent; padding-left: 0;
}
.gp-flink:hover {
  color: rgba(255,255,255,.78);
  padding-left: 6px;
}
.gp-flink .gp-fl-arrow {
  font-size: 9px; opacity: 0; transition: .2s; color: var(--gp-gold);
  margin-left: auto;
}
.gp-flink:hover .gp-fl-arrow { opacity: 1; }
.gp-flink-badge {
  font-size: 9px; font-weight: 800; padding: 2px 6px; border-radius: 3px;
  background: var(--gp-gold); color: var(--gp-forest);
  letter-spacing: .4px; text-transform: uppercase; flex-shrink: 0;
}
.gp-flink-new {
  background: rgba(39,174,96,.15); color: #4caf50;
  font-size: 9px; font-weight: 800; padding: 2px 6px; border-radius: 3px;
  letter-spacing: .4px; text-transform: uppercase; flex-shrink: 0;
}

/* ── MIDDLE ROW: LOCATIONS + APP + AWARDS ── */
.gp-footer-mid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 32px; padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

/* Locations */
.gp-footer-locations { }
.gp-fl-title {
  font-size: 10px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,.28);
  margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.gp-fl-title::before {
  content: ''; width: 20px; height: 1.5px; background: var(--gp-gold); border-radius: 2px;
}
.gp-locations-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
}
.gp-loc-pill {
  font-size: 11px; color: rgba(255,255,255,.38); padding: 5px 0;
  transition: .18s; cursor: pointer; white-space: nowrap; overflow: hidden;
  text-overflow: ellipsis;
}
.gp-loc-pill:hover { color: var(--gp-gold-l); }

/* App + Contact card */
.gp-footer-app { }
.gp-app-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px; padding: 20px; margin-bottom: 14px;
}
.gp-app-title { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.gp-app-sub { font-size: 11.5px; color: rgba(255,255,255,.35); margin-bottom: 14px; line-height: 1.5; }
.gp-app-btns { display: flex; gap: 8px; }
.gp-app-btn {
  flex: 1; display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 7px; padding: 9px 10px; color: #fff;
  transition: .2s; font-size: 10.5px; font-weight: 600;
}
.gp-app-btn:hover {
  background: rgba(176,141,87,.12); border-color: rgba(176,141,87,.2);
}
.gp-app-btn-icon { font-size: 18px; flex-shrink: 0; }
.gp-app-btn-text {}
.gp-app-btn-store { font-size: 9px; color: rgba(255,255,255,.4); display: block; }
.gp-app-btn-name { font-size: 11.5px; font-weight: 700; display: block; line-height: 1.2; }
.gp-whatsapp-btn {
  display: flex; align-items: center; gap: 10px;
  background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.2);
  border-radius: 8px; padding: 12px 16px; color: #4caf50;
  font-size: 13px; font-weight: 600; transition: .22s;
}
.gp-whatsapp-btn:hover {
  background: rgba(37,211,102,.16); border-color: rgba(37,211,102,.3);
}

/* Awards/trust */
.gp-footer-trust { }
.gp-trust-cards { display: flex; flex-direction: column; gap: 8px; }
.gp-trust-card {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px; padding: 12px 14px; transition: .2s;
}
.gp-trust-card:hover { background: rgba(176,141,87,.05); border-color: rgba(176,141,87,.12); }
.gp-trust-icon {
  font-size: 22px; flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(176,141,87,.08); display: flex; align-items: center; justify-content: center;
}
.gp-trust-name { font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,.65); margin-bottom: 2px; }
.gp-trust-desc { font-size: 10.5px; color: rgba(255,255,255,.3); line-height: 1.4; }

/* ── BOTTOM BAR ── */
.gp-footer-bottom {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 0; flex-wrap: wrap; justify-content: space-between;
}
.gp-footer-copy {
  font-size: 11.5px; color: rgba(255,255,255,.22); line-height: 1.6;
}
.gp-footer-copy strong { color: rgba(255,255,255,.38); font-weight: 600; }
.gp-footer-legal-links {
  display: flex; gap: 0; flex-wrap: wrap; align-items: center;
}
.gp-footer-legal-links a {
  font-size: 11.5px; color: rgba(255,255,255,.28);
  padding: 4px 12px; transition: .2s;
  border-right: 1px solid rgba(255,255,255,.08);
}
.gp-footer-legal-links a:first-child { padding-left: 0; }
.gp-footer-legal-links a:last-child { border-right: none; }
.gp-footer-legal-links a:hover { color: var(--gp-gold-l); }
.gp-footer-disclaimer {
  width: 100%;
  font-size: 10.5px; color: rgba(255,255,255,.15); line-height: 1.7;
  padding-top: 14px; border-top: 1px solid rgba(255,255,255,.05);
  padding-bottom: 20px;
}

/* Back to top */
.gp-back-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--gp-forest); border: 1px solid rgba(176,141,87,.25);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 16px; cursor: pointer;
  transition: .3s; opacity: 0; transform: translateY(16px);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.gp-back-top.show {
  opacity: 1; transform: translateY(0);
}
.gp-back-top:hover {
  background: var(--gp-forest-m); border-color: var(--gp-gold);
  color: var(--gp-gold-l); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.4);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .gp-footer-grid {
    grid-template-columns: 260px 1fr 1fr 1fr;
  }
  .gp-footer-grid > .gp-fcol:last-child {
    grid-column: 2 / -1;
  }
}
@media (max-width: 860px) {
  .gp-footer-cta-inner { grid-template-columns: 1fr; }
  .gp-cta-actions { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .gp-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .gp-footer-brand { grid-column: 1 / -1; }
  .gp-footer-mid { grid-template-columns: 1fr 1fr; }
  .gp-footer-mid > .gp-footer-trust { grid-column: 1 / -1; }
  .gp-trust-cards { flex-direction: row; flex-wrap: wrap; }
  .gp-trust-card { flex: 1; min-width: 200px; }
}
@media (max-width: 600px) {
  .gp-footer-cta { padding: 36px 20px; }
  .gp-footer-news-inner { flex-direction: column; gap: 16px; }
  .gp-news-form { width: 100%; }
  .gp-footer-main { padding: 40px 20px 0; }
  .gp-footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .gp-footer-mid { grid-template-columns: 1fr; }
  .gp-locations-grid { grid-template-columns: repeat(3, 1fr); }
  .gp-footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .gp-footer-legal-links { flex-wrap: wrap; }
  .gp-back-top { bottom: 20px; right: 20px; }
}
/*footer end*/

    /* ════════════════════════════════════════
   MODALS / OVERLAYS
════════════════════════════════════════ */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(17, 30, 23, .72);
      backdrop-filter: blur(6px);
      z-index: 900;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px
    }

    .modal-overlay.open {
      display: flex
    }

    .modal {
      background: var(--white);
      border-radius: 14px;
      width: 100%;
      max-width: 460px;
      overflow: hidden;
      box-shadow: var(--shadow-xl);
      animation: modalIn .3s cubic-bezier(.34, 1.56, .64, 1)
    }

    .modal-lg {
      max-width: 720px
    }

    .modal-xl {
      max-width: 960px
    }

    @keyframes modalIn {
      from {
        opacity: 0;
        transform: scale(.93) translateY(16px)
      }

      to {
        opacity: 1;
        transform: scale(1) translateY(0)
      }
    }

    .modal-header {
      padding: 22px 26px 16px;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between
    }

    .modal-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 600;
      color: var(--forest)
    }

    .modal-close {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--cream);
      border: none;
      font-size: 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      transition: .2s
    }

    .modal-close:hover {
      background: var(--cream-d);
      color: var(--ink)
    }

    .modal-body {
      padding: 24px 26px
    }

    .modal-footer {
      padding: 16px 26px;
      border-top: 1px solid var(--border);
      display: flex;
      gap: 10px;
      justify-content: flex-end
    }

    /* Auth Modal */
    .auth-tabs {
      display: flex;
      border-bottom: 1px solid var(--border);
      margin: -24px -26px 24px
    }

    .auth-tab {
      flex: 1;
      padding: 14px;
      text-align: center;
      font-size: 13px;
      font-weight: 600;
      color: var(--muted);
      cursor: pointer;
      border-bottom: 2px solid transparent;
      transition: .2s;
      background: transparent;
      border-top: none;
      border-left: none;
      border-right: none;
      font-family: 'DM Sans', sans-serif
    }

    .auth-tab.active {
      color: var(--forest);
      border-bottom-color: var(--gold)
    }

    .auth-tabs-outer {
      display: flex;
      gap: 0;
      background: var(--cream);
      border-radius: 7px;
      margin-bottom: 22px;
      overflow: hidden
    }

    .auth-role-tab {
      flex: 1;
      padding: 10px;
      text-align: center;
      font-size: 12.5px;
      font-weight: 600;
      color: var(--muted);
      cursor: pointer;
      transition: .2s;
      background: transparent;
      border: none;
      font-family: 'DM Sans', sans-serif
    }

    .auth-role-tab.active {
      background: var(--forest);
      color: #fff
    }

    .form-field {
      margin-bottom: 16px
    }

    .form-label {
      font-size: 12px;
      font-weight: 600;
      color: var(--forest);
      margin-bottom: 6px;
      display: block
    }

    .form-input {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid var(--border);
      border-radius: 6px;
      font-family: 'DM Sans', sans-serif;
      font-size: 13.5px;
      color: var(--ink);
      outline: none;
      transition: .2s;
      background: var(--white)
    }

    .form-input:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(176, 141, 87, .1)
    }

    .form-select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 12px center
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px
    }

    .form-hint {
      font-size: 11px;
      color: var(--muted);
      margin-top: 4px
    }

    .form-divider {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 18px 0;
      color: var(--muted);
      font-size: 12px
    }

    .form-divider::before,
    .form-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border)
    }

    .btn-form {
      width: 100%;
      padding: 13px;
      border-radius: 6px;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      transition: .2s
    }

    .btn-form-gold {
      background: var(--gold);
      color: var(--forest)
    }

    .btn-form-gold:hover {
      background: var(--gold-l)
    }

    .btn-form-forest {
      background: var(--forest);
      color: #fff
    }

    .btn-form-forest:hover {
      background: var(--forest-m)
    }

    .btn-social {
      width: 100%;
      padding: 11px;
      border-radius: 6px;
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      border: 1.5px solid var(--border);
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: .2s;
      color: var(--slate)
    }

    .btn-social:hover {
      border-color: var(--forest);
      color: var(--forest)
    }
    .auth-footer-note {
      text-align: center;
      font-size: 12px;
      color: var(--muted);
      margin-top: 14px
    }

    .auth-footer-note a {
      color: var(--forest);
      font-weight: 600;
      cursor: pointer;
      text-decoration: none
    }

    .auth-footer-note a:hover {
      color: var(--gold)
    }