/* =====================================================================
   NEXA GLOBAL GROUP INC. — Luxury Design System  (v2)
   Editorial serif display + refined navy & gold. Image-driven, premium.
   Mobile-first, fully responsive.
   ===================================================================== */

:root {
  --navy-900: #0a1526;
  --navy-800: #0f2038;
  --navy-700: #182a49;   /* primary brand navy */
  --navy-600: #223763;
  --navy-500: #33487a;

  --gold-600: #b8862f;
  --gold-500: #c9a24b;   /* primary gold */
  --gold-400: #d9b869;
  --gold-300: #e8d19a;
  --gold-soft: #f6efdd;

  --ink: #10192a;
  --body: #4d5a6e;
  --muted: #8792a4;
  --line: #e8ebf2;
  --line-2: #eef1f7;
  --bg: #ffffff;
  --bg-soft: #f7f9fc;
  --bg-cream: #faf7f1;
  --white: #ffffff;
  --danger: #d64545;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(12,26,48,.05);
  --shadow: 0 18px 46px rgba(12,26,48,.10);
  --shadow-lg: 0 40px 90px rgba(12,26,48,.20);
  --shadow-gold: 0 16px 40px rgba(201,162,75,.38);

  --container: 1240px;
  --gutter: 24px;

  --ff-display: "Fraunces", "Playfair Display", Georgia, serif;
  --ff-head: "Poppins", "Segoe UI", system-ui, sans-serif;
  --ff-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  font-family: var(--ff-body); color: var(--body); background: var(--bg);
  line-height: 1.75; font-size: 16.5px; overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
img, svg, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
::selection { background: var(--gold-300); color: var(--navy-900); }

h1, h2, h3, h4, h5 { color: var(--ink); line-height: 1.15; font-weight: 600; }
h1, h2 { font-family: var(--ff-display); letter-spacing: -.01em; font-weight: 600; }
h3, h4, h5 { font-family: var(--ff-head); letter-spacing: -.005em; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); line-height: 1.08; }
h2 { font-size: clamp(1.9rem, 3.9vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
p { color: var(--body); }
strong { color: var(--ink); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(64px, 8.5vw, 130px) 0; position: relative; }
.section--soft { background: var(--bg-soft); }
.section--cream { background: var(--bg-cream); }
.section--navy { background: var(--navy-800); color: #c3cee0; }
.section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }
.center { text-align: center; }
.grid { display: grid; gap: 28px; }

/* ---------- Eyebrow / section head ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; font-family: var(--ff-head);
  font-weight: 600; font-size: .76rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-600);
}
.eyebrow::before { content: ""; width: 30px; height: 1.5px; background: linear-gradient(90deg,var(--gold-500),transparent); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ""; width: 30px; height: 1.5px; background: linear-gradient(90deg,transparent,var(--gold-500)); }
.section-head { max-width: 760px; margin-bottom: 60px; }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: 16px; }
.section-head p { margin-top: 18px; font-size: 1.08rem; }
.text-gold { background: linear-gradient(115deg, var(--gold-300), var(--gold-500)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.text-italic { font-style: italic; font-family: var(--ff-display); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; position: relative;
  font-family: var(--ff-head); font-weight: 600; font-size: .96rem; padding: 15px 30px;
  border-radius: var(--radius-pill); line-height: 1; white-space: nowrap; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn svg { width: 18px; height: 18px; }
.btn--gold { background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); color: var(--navy-900); box-shadow: var(--shadow-gold); }
.btn--gold::after { content:""; position:absolute; inset:0; background: linear-gradient(135deg,#fff6,transparent 45%); opacity:.6; }
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 22px 48px rgba(201,162,75,.55); }
.btn--navy { background: var(--navy-700); color: #fff; }
.btn--navy:hover { background: var(--navy-600); transform: translateY(-3px); box-shadow: var(--shadow); }
.btn--ghost { background: rgba(255,255,255,.06); color: #fff; border: 1.5px solid rgba(255,255,255,.35); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: #fff; color: var(--navy-800); border-color: #fff; transform: translateY(-3px); }
.btn--outline { background: transparent; color: var(--navy-700); border: 1.5px solid var(--line); }
.btn--outline:hover { border-color: var(--navy-700); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.btn--wa { background: #25d366; color: #05341a; }
.btn--wa:hover { background: #1eb85a; transform: translateY(-3px); box-shadow: 0 18px 40px rgba(37,211,102,.42); }
.btn--block { width: 100%; }
.btn--lg { padding: 18px 38px; font-size: 1.02rem; }

/* ---------- Top utility bar ---------- */
.topbar { position: fixed; inset: 0 0 auto 0; z-index: 101; height: 42px; display: flex; align-items: center;
  background: var(--navy-900); color: #b7c2d6; font-size: .82rem; transition: transform .35s var(--ease); }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar__left { display: flex; gap: 22px; align-items: center; }
.topbar__left a, .topbar__left span { display: inline-flex; align-items: center; gap: 7px; }
.topbar__left svg { width: 14px; height: 14px; color: var(--gold-400); }
.topbar__left a:hover { color: #fff; }
.topbar__social { display: flex; gap: 8px; }
.topbar__social a { width: 26px; height: 26px; border-radius: 6px; display: grid; place-items: center; background: rgba(255,255,255,.07); color: #cdd6e6; transition: all .25s var(--ease); }
.topbar__social a:hover { background: var(--gold-500); color: var(--navy-900); }
.topbar__social svg { width: 14px; height: 14px; }
body.scrolled .topbar { transform: translateY(-100%); }

/* ---------- Header ---------- */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; height: 82px; display: flex; align-items: center;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), height .35s var(--ease); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
body.scrolled .site-header { background: rgba(255,255,255,.97); backdrop-filter: blur(12px); box-shadow: 0 6px 30px rgba(12,26,48,.09); height: 70px; }

.brand { display: flex; align-items: center; gap: 13px; }
.brand__mark { width: 46px; height: 46px; flex: none; filter: drop-shadow(0 4px 10px rgba(0,0,0,.25)); }
.brand__name { font-family: var(--ff-head); font-weight: 700; font-size: 1.18rem; color: #fff; letter-spacing: .02em; line-height: 1.05; transition: color .35s var(--ease); }
.brand__name span { display: block; font-size: .6rem; font-weight: 500; letter-spacing: .34em; color: var(--gold-400); margin-top: 2px; }
/* Stylized "E" in NEXA — three horizontal bars, no vertical spine */
.brand-e { display: inline-block; width: .5em; height: .7em; vertical-align: -.02em; margin: 0 .06em 0 .03em;
  background-image: linear-gradient(currentColor,currentColor), linear-gradient(currentColor,currentColor), linear-gradient(currentColor,currentColor);
  background-size: 100% .12em, 72% .12em, 100% .12em;
  background-position: left top, left center, left bottom;
  background-repeat: no-repeat; }
body.scrolled .brand__name { color: var(--navy-800); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > a, .drop-toggle { font-family: var(--ff-head); font-weight: 500; font-size: .95rem; color: rgba(255,255,255,.92); padding: 10px 16px; border-radius: var(--radius-pill); position: relative; }
body.scrolled .nav > a, body.scrolled .drop-toggle { color: var(--navy-700); }
.nav > a::after, .drop-toggle::after { content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 1.5px; background: var(--gold-500); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav > a:hover::after, .nav > a.active::after, .has-drop:hover .drop-toggle::after, .drop-toggle.active::after { transform: scaleX(1); }
.nav > a:hover, .nav > a.active, .drop-toggle:hover, .drop-toggle.active { color: var(--gold-400); }
body.scrolled .nav > a:hover, body.scrolled .nav > a.active { color: var(--gold-600); }

.has-drop { position: relative; }
.drop-toggle { display: inline-flex; align-items: center; gap: 6px; }
.drop-toggle .chev { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.has-drop:hover .drop-toggle .chev { transform: rotate(180deg); }
.dropdown { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(12px);
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 14px; width: 360px;
  opacity: 0; visibility: hidden; transition: all .3s var(--ease); display: grid; grid-template-columns: 1fr 1fr; gap: 3px; border: 1px solid var(--line); }
.has-drop:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown::before { content: ""; position: absolute; top: -7px; left: 50%; transform: translateX(-50%) rotate(45deg); width: 14px; height: 14px; background: #fff; border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.dropdown a { color: var(--navy-700) !important; font-size: .85rem; padding: 10px 12px; border-radius: 10px; font-weight: 500; display: flex; align-items: center; gap: 9px; }
.dropdown a .di { width: 30px; height: 30px; border-radius: 8px; background: var(--gold-soft); color: var(--gold-600); display: grid; place-items: center; flex: none; transition: all .25s var(--ease); }
.dropdown a .di svg { width: 16px; height: 16px; }
.dropdown a:hover { background: var(--bg-soft); }
.dropdown a:hover .di { background: var(--navy-700); color: var(--gold-400); }

.header-cta { display: inline-flex; }
.nav .header-cta { display: none; }
.skip-link:focus { position: fixed !important; left: 12px !important; top: 10px; z-index: 200; background: #fff; color: var(--navy-800); padding: 10px 16px; border-radius: 8px; box-shadow: var(--shadow); }

.nav-toggle { display: none; width: 48px; height: 48px; border-radius: 12px; position: relative; }
.nav-toggle span { position: absolute; left: 13px; right: 13px; height: 2.2px; background: #fff; border-radius: 3px; transition: all .3s var(--ease); }
body.scrolled .nav-toggle span { background: var(--navy-800); }
.nav-toggle span:nth-child(1){top:17px} .nav-toggle span:nth-child(2){top:23px} .nav-toggle span:nth-child(3){top:29px}
body.nav-open .nav-toggle span:nth-child(1){top:23px;transform:rotate(45deg);background:var(--navy-800)}
body.nav-open .nav-toggle span:nth-child(2){opacity:0}
body.nav-open .nav-toggle span:nth-child(3){top:23px;transform:rotate(-45deg);background:var(--navy-800)}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 100px; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -3; background-size: cover; background-position: center; transform: scale(1.05); animation: heroZoom 18s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero__bg::after { content: ""; position: absolute; inset: 0; background:
  linear-gradient(90deg, rgba(10,21,38,.94) 0%, rgba(10,21,38,.82) 42%, rgba(10,21,38,.5) 100%),
  linear-gradient(0deg, rgba(10,21,38,.9), transparent 55%); }
/* Hero slideshow */
.hero-slider { position: absolute; inset: 0; z-index: -3; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s var(--ease); will-change: opacity; }
.hero-slide.is-active { opacity: 1; animation: heroKen 7.5s ease-out forwards; }
@keyframes heroKen { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero-slider::after { content: ""; position: absolute; inset: 0; background:
  linear-gradient(90deg, rgba(10,21,38,.94) 0%, rgba(10,21,38,.8) 42%, rgba(10,21,38,.5) 100%),
  linear-gradient(0deg, rgba(10,21,38,.92), transparent 58%); }
.hero-slider__ui { position: absolute; left: 0; right: 0; bottom: 40px; z-index: 3; }
.hero-slider__ui .container { display: flex; align-items: center; justify-content: flex-end; gap: 22px; }
.hero-slider__label { display: inline-flex; align-items: center; gap: 12px; color: var(--gold-300); font-family: var(--ff-head); font-weight: 600; font-size: .76rem; letter-spacing: .24em; text-transform: uppercase; }
.hero-slider__label .bar { width: 28px; height: 1.5px; background: var(--gold-400); display: inline-block; }
/* Hero carousel arrows — centered on the left & right edges */
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 6; width: 56px; height: 56px; border-radius: 50%; background: rgba(15,32,56,.42); border: 1px solid rgba(255,255,255,.4); color: #fff; display: grid; place-items: center; backdrop-filter: blur(6px); transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease); }
.hero-prev { left: 26px; } .hero-next { right: 26px; }
.hero-arrow:hover { background: var(--gold-500); color: var(--navy-900); border-color: var(--gold-500); }
.hero-prev:hover { transform: translateY(-50%) scale(1.08); }
.hero-next:hover { transform: translateY(-50%) scale(1.08); }
.hero-arrow svg { width: 24px; height: 24px; }
.hero-slider__dots { display: flex; gap: 9px; }
.hero-slider__dots button { width: 32px; height: 4px; border-radius: 3px; background: rgba(255,255,255,.28); transition: all .35s var(--ease); }
.hero-slider__dots button:hover { background: rgba(255,255,255,.55); }
.hero-slider__dots button.active { background: linear-gradient(90deg, var(--gold-400), var(--gold-500)); width: 46px; }

.hero__grid-overlay { position: absolute; inset: 0; z-index: -2; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 58px 58px; mask-image: radial-gradient(circle at 75% 50%, #000, transparent 78%); }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(100px); z-index: -1; }
.hero__glow--gold { width: 480px; height: 480px; background: rgba(201,162,75,.22); top: 4%; right: 2%; }
.hero__inner { max-width: 820px; padding: 50px 0; }
.hero .eyebrow { color: var(--gold-300); }
.hero .eyebrow::before, .hero .eyebrow--center::after { background: var(--gold-300); }
.hero h1 { color: #fff; margin: 22px 0 22px; }
.hero__lead { font-size: 1.2rem; color: #cdd7e8; max-width: 640px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 14px 46px; margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.14); }
.hero__stats .stat b { font-family: var(--ff-display); font-weight: 600; font-size: 2.5rem; color: #fff; display: block; line-height: 1; }
.hero__stats .stat b .suffix { color: var(--gold-400); }
.hero__stats .stat span { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: #9fb0cc; margin-top: 6px; display: block; }
.hero__scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); color: #9fb0cc; font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero__scroll .mouse { width: 24px; height: 38px; border: 1.5px solid rgba(255,255,255,.45); border-radius: 14px; position: relative; }
.hero__scroll .mouse::after { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 4px; height: 7px; background: var(--gold-400); border-radius: 3px; animation: scrolldot 1.7s infinite; }
@keyframes scrolldot { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 80%{opacity:0;transform:translate(-50%,12px)} }

/* ---------- Page hero (image-backed) ---------- */
.page-hero { position: relative; padding: 150px 0 92px; color: #fff; overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; background:
  linear-gradient(90deg, rgba(10,21,38,.93), rgba(10,21,38,.7)), linear-gradient(0deg, rgba(10,21,38,.85), transparent 60%); }
.page-hero .hero__grid-overlay { opacity: .35; }
.page-hero h1 { color: #fff; margin-top: 14px; }
.page-hero p { color: #cdd7e8; max-width: 660px; margin-top: 16px; font-size: 1.1rem; }
.page-hero .hero__actions { margin-top: 30px; }
.breadcrumb { display: flex; gap: 9px; align-items: center; font-size: .84rem; color: #9fb0cc; font-family: var(--ff-head); }
.breadcrumb a:hover { color: var(--gold-300); }
.breadcrumb span { color: var(--gold-300); }

/* ---------- Media service cards (image-driven) ---------- */
.services-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }
.media-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 380px; display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: var(--shadow-sm); transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out); isolation: isolate; }
.media-card__img { position: absolute; inset: 0; z-index: -2; }
.media-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.media-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(10,21,38,.94) 8%, rgba(10,21,38,.55) 46%, rgba(10,21,38,.18) 100%); transition: background .4s var(--ease); }
.media-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.media-card:hover .media-card__img img { transform: scale(1.09); }
.media-card:hover::after { background: linear-gradient(0deg, rgba(10,21,38,.96) 12%, rgba(24,42,73,.7) 55%, rgba(24,42,73,.32) 100%); }
.media-card__body { padding: 30px 28px; color: #fff; }
.media-card__no { position: absolute; top: 22px; right: 26px; font-family: var(--ff-display); font-weight: 600; font-size: 1.05rem; color: var(--gold-300); opacity: .85; }
.media-card__icon { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; background: rgba(201,162,75,.16); border: 1px solid rgba(201,162,75,.4); color: var(--gold-300); margin-bottom: 18px; backdrop-filter: blur(4px); transition: all .4s var(--ease); }
.media-card:hover .media-card__icon { background: var(--gold-500); color: var(--navy-900); border-color: var(--gold-500); }
.media-card__icon svg { width: 28px; height: 28px; }
.media-card h3 { color: #fff; margin-bottom: 8px; font-size: 1.32rem; }
.media-card p { color: #c3cee0; font-size: .93rem; line-height: 1.6; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .5s var(--ease), opacity .4s var(--ease), margin .4s var(--ease); }
.media-card:hover p { max-height: 120px; opacity: 1; margin-bottom: 4px; }
.media-card__link { margin-top: 16px; display: inline-flex; align-items: center; gap: 9px; font-family: var(--ff-head); font-weight: 600; font-size: .86rem; letter-spacing: .04em; color: var(--gold-300); }
.media-card__link svg { width: 17px; height: 17px; transition: transform .3s var(--ease); }
.media-card:hover .media-card__link svg { transform: translateX(6px); }

/* ---------- Feature cards ---------- */
.feature-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.feature { padding: 34px 30px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); position: relative; overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.feature::before { content:""; position:absolute; top:0; left:0; width:100%; height:3px; background: linear-gradient(90deg,var(--gold-400),var(--gold-500)); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.feature:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.feature:hover::before { transform: scaleX(1); }
.feature__icon { width: 58px; height: 58px; border-radius: 15px; display: grid; place-items: center; background: linear-gradient(145deg,var(--gold-soft),#fff); border: 1px solid var(--line); color: var(--gold-600); margin-bottom: 20px; transition: all .35s var(--ease); }
.feature:hover .feature__icon { background: linear-gradient(145deg,var(--navy-700),var(--navy-600)); color: var(--gold-400); transform: rotate(-6deg); }
.feature__icon svg { width: 27px; height: 27px; }
.feature h3 { font-size: 1.18rem; margin-bottom: 10px; }
.feature p { font-size: .95rem; }

/* section on navy tweaks for features */
.section--navy .feature { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }
.section--navy .feature p { color: #b1bdd2; }
.section--navy .feature__icon { background: rgba(201,162,75,.14); border-color: rgba(201,162,75,.32); color: var(--gold-300); }

/* ---------- Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 30px; }
.stats-band .stat { text-align: center; position: relative; padding: 10px; }
.stats-band .stat:not(:last-child)::after { content: ""; position: absolute; right: -1px; top: 20%; height: 60%; width: 1px; background: rgba(255,255,255,.14); }
.stats-band .stat b { font-family: var(--ff-display); font-weight: 600; font-size: clamp(2.6rem, 4.5vw, 3.7rem); color: #fff; line-height: 1; display: inline-flex; align-items: baseline; }
.stats-band .stat b .suffix, .stats-band .stat b .plus { color: var(--gold-400); }
.stats-band .stat span { display: block; margin-top: 14px; color: #9fb0cc; font-size: .92rem; letter-spacing: .03em; }

/* ---------- Split / about (layered images) ---------- */
.split { display: grid; grid-template-columns: 1.02fr 1fr; gap: 68px; align-items: center; }
.split--rev .split__media { order: 2; }
.split__body .eyebrow { margin-bottom: 4px; }
.split__body h2 { margin: 14px 0 20px; }
.lead { font-size: 1.14rem; color: var(--body); }
.split__body p { margin-bottom: 14px; }

.about-stack { position: relative; padding: 0 26px 34px 0; }
.about-stack__main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/4.4; }
.about-stack__main img { width: 100%; height: 100%; object-fit: cover; }
.about-stack__sub { position: absolute; right: 0; bottom: 0; width: 52%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 5px solid #fff; aspect-ratio: 4/3.2; }
.about-stack__sub img { width: 100%; height: 100%; object-fit: cover; }
.about-stack__ring { position: absolute; top: -18px; left: -18px; width: 90px; height: 90px; border: 2px solid var(--gold-400); border-radius: var(--radius); z-index: -1; }
.media-badge { position: absolute; top: 24px; left: -22px; background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); color: var(--navy-900); border-radius: var(--radius); padding: 18px 24px; box-shadow: var(--shadow); }
.media-badge b { font-family: var(--ff-display); font-weight: 600; font-size: 2.1rem; display: block; line-height: 1; }
.media-badge span { font-size: .78rem; font-weight: 600; }

.check-list { margin-top: 26px; display: grid; gap: 15px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 1rem; color: var(--ink); font-weight: 500; }
.check-list li svg { flex: none; width: 24px; height: 24px; color: var(--gold-500); margin-top: 2px; }
.section--navy .check-list li { color: #e6ebf3; }

/* ---------- Split with single image ---------- */
.media-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Process timeline ---------- */
.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; counter-reset: step; }
.process__step { position: relative; padding: 38px 28px 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.process__step:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.process__step .num { counter-increment: step; font-family: var(--ff-display); font-weight: 600; font-size: 1.15rem; width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(145deg,var(--navy-700),var(--navy-600)); color: var(--gold-400); display: grid; place-items: center; margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.process__step .num::before { content: "0" counter(step); }
.process__step h3 { font-size: 1.14rem; margin-bottom: 9px; }
.process__step p { font-size: .93rem; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.gallery figure { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4/3; position: relative; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.gallery figure:hover img { transform: scale(1.1); }
.gallery figure::after { content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(10,21,38,.55), transparent 55%); opacity:.85; transition: opacity .4s var(--ease); }
.gallery figcaption { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 26px 18px 16px; color: #fff; font-family: var(--ff-head); font-weight: 600; font-size: .95rem; }

/* ---------- Service gallery slideshow ---------- */
.svc-gallery { max-width: 1000px; margin-inline: auto; }
.sg-stage { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16/9; background: var(--navy-900); }
.sg-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .45s var(--ease); }
.sg-slide.is-active { opacity: 1; }
.sg-slide img { width: 100%; height: 100%; object-fit: cover; }
.sg-stage::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(0deg, rgba(10,21,38,.28), transparent 30%); }
.sg-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4; width: 54px; height: 54px; border-radius: 50%; background: rgba(15,32,56,.5); color: #fff; display: grid; place-items: center; backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.18); transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease); }
.sg-nav:hover { background: var(--gold-500); color: var(--navy-900); }
.sg-prev { left: 18px; } .sg-next { right: 18px; }
.sg-prev:hover { transform: translateY(-50%) scale(1.08); } .sg-next:hover { transform: translateY(-50%) scale(1.08); }
.sg-nav svg { width: 24px; height: 24px; }
.sg-count { position: absolute; right: 18px; bottom: 16px; z-index: 4; background: rgba(15,32,56,.62); color: #fff; padding: 7px 15px; border-radius: var(--radius-pill); font-family: var(--ff-head); font-weight: 600; font-size: .84rem; backdrop-filter: blur(6px); }
.sg-count .sg-cur { color: var(--gold-300); }
.sg-thumbs { display: flex; gap: 10px; margin-top: 16px; overflow-x: auto; padding: 4px 2px 10px; scroll-behavior: smooth; }
.sg-thumbs::-webkit-scrollbar { height: 7px; }
.sg-thumbs::-webkit-scrollbar-track { background: var(--bg-soft); border-radius: 4px; }
.sg-thumbs::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
.sg-thumbs::-webkit-scrollbar-thumb:hover { background: var(--gold-400); }
.sg-thumb { flex: 0 0 auto; width: 108px; height: 72px; border-radius: 10px; overflow: hidden; opacity: .5; border: 2px solid transparent; transition: opacity .25s var(--ease), border-color .25s var(--ease); }
.sg-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sg-thumb:hover { opacity: .85; }
.sg-thumb.is-active { opacity: 1; border-color: var(--gold-500); }
@media (max-width: 560px) {
  .sg-nav { width: 42px; height: 42px; } .sg-nav svg { width: 20px; height: 20px; }
  .sg-prev { left: 10px; } .sg-next { right: 10px; }
  .sg-thumb { width: 84px; height: 58px; }
}

/* ---------- Real-estate property listings ---------- */
.prop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.prop-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); display: flex; flex-direction: column; }
.prop-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.prop-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.prop-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.prop-card:hover .prop-media img { transform: scale(1.07); }
.prop-badge { position: absolute; top: 14px; left: 14px; font-family: var(--ff-head); font-weight: 700; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: #fff; padding: 7px 14px; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm); backdrop-filter: blur(2px); }
.prop-badge--sale { background: linear-gradient(135deg, #1f9d55, #12864a); }
.prop-badge--pending { background: linear-gradient(135deg, #e0a02a, #c9861a); color: #2a1e05; }
.prop-badge--sold { background: linear-gradient(135deg, #d64545, #b23434); }
.prop-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.prop-body h3 { font-family: var(--ff-head); font-size: 1.16rem; margin-bottom: 6px; }
.prop-loc { display: inline-flex; align-items: center; gap: 6px; font-size: .9rem; color: var(--muted); margin-bottom: 16px; }
.prop-loc svg { width: 16px; height: 16px; color: var(--gold-500); }
.prop-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.prop-price { font-family: var(--ff-display); font-weight: 600; font-size: 1.3rem; color: var(--navy-700); }
.btn--sm { padding: 10px 16px; font-size: .84rem; }
.btn--sm svg { width: 15px; height: 15px; }

/* ---------- Service layout ---------- */
.svc-layout { display: grid; grid-template-columns: 1fr 390px; gap: 56px; align-items: start; }
.svc-body h2 { margin: 10px 0 18px; }
.svc-body h3 { margin: 36px 0 14px; font-size: 1.35rem; }
.svc-body p { margin-bottom: 16px; }
.svc-body > p:first-of-type { font-size: 1.12rem; color: var(--ink); }
.svc-intro-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 36px; aspect-ratio: 16/8; }
.svc-intro-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-sidebar { position: sticky; top: 100px; display: grid; gap: 22px; }
.card-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.card-box--navy { background: linear-gradient(160deg, var(--navy-700), var(--navy-900)); color: #c3cee0; border: none; position: relative; overflow: hidden; }
.card-box--navy::before { content:""; position:absolute; top:-40px; right:-40px; width:140px; height:140px; border-radius:50%; background: radial-gradient(circle,var(--gold-500),transparent 70%); opacity:.25; }
.card-box--navy h3 { color: #fff; }
.contact-line { display: flex; align-items: center; gap: 13px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.12); position: relative; }
.card-box:not(.card-box--navy) .contact-line { border-bottom-color: var(--line); }
.contact-line:last-child { border-bottom: none; }
.contact-line .ci { width: 44px; height: 44px; flex: none; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.1); color: var(--gold-400); }
.card-box:not(.card-box--navy) .contact-line .ci { background: var(--gold-soft); color: var(--gold-600); }
.contact-line .ci svg { width: 20px; height: 20px; }
.contact-line small { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: #9fb0cc; }
.card-box:not(.card-box--navy) .contact-line small { color: var(--muted); }
.contact-line a, .contact-line span.v { color: #fff; font-weight: 600; font-size: .97rem; word-break: break-word; }
.card-box:not(.card-box--navy) .contact-line a, .card-box:not(.card-box--navy) .contact-line span.v { color: var(--ink); }

.svc-list { display: grid; gap: 6px; }
.svc-list a { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-radius: 12px; background: var(--bg-soft); font-family: var(--ff-head); font-weight: 500; font-size: .92rem; color: var(--navy-700); transition: all .25s var(--ease); }
.svc-list a svg { width: 16px; height: 16px; opacity: .5; transition: all .25s var(--ease); }
.svc-list a:hover, .svc-list a.active { background: var(--navy-700); color: #fff; }
.svc-list a:hover svg, .svc-list a.active svg { opacity: 1; transform: translateX(4px); color: var(--gold-400); }

/* ---------- Testimonials ---------- */
.testi-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.testi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px 32px; position: relative; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.testi:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.testi__quote { font-family: var(--ff-display); font-size: 4rem; line-height: .6; color: var(--gold-300); height: 30px; }
.testi__stars { color: var(--gold-500); letter-spacing: 3px; margin: 6px 0 14px; font-size: .95rem; }
.testi p { font-size: 1rem; color: var(--body); font-style: italic; }
.testi__by { display: flex; align-items: center; gap: 14px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.testi__by img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold-300); }
.testi__by b { display: block; font-family: var(--ff-head); color: var(--ink); font-size: .98rem; }
.testi__by span { font-size: .84rem; color: var(--muted); }

/* ---------- Forms ---------- */
.form { display: grid; gap: 18px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-family: var(--ff-head); font-weight: 500; font-size: .89rem; color: var(--ink); }
.field label .req { color: var(--danger); }
.field input, .field textarea, .field select { width: 100%; padding: 15px 17px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: #fff; color: var(--ink); transition: border-color .25s var(--ease), box-shadow .25s var(--ease); }
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 4px rgba(201,162,75,.16); }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: var(--danger); }
.field .err { display: none; color: var(--danger); font-size: .8rem; }
.field.invalid .err { display: block; }
.form-note { font-size: .84rem; color: var(--muted); }
.form-success { display: none; padding: 16px 18px; border-radius: var(--radius-sm); background: #e9f7ef; color: #14663a; border: 1px solid #b7e4c9; font-weight: 500; }
.form-success.show { display: block; }

/* ---------- CTA band (image-backed) ---------- */
.cta-band { position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: clamp(48px, 7vw, 88px); color: #fff; text-align: center; isolation: isolate; }
.cta-band__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
.cta-band__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(135deg, rgba(10,21,38,.92), rgba(24,42,73,.82)); }
.cta-band h2 { color: #fff; }
.cta-band p { color: #cdd7e8; max-width: 640px; margin: 16px auto 0; font-size: 1.08rem; }
.cta-band .hero__actions { justify-content: center; margin-top: 34px; }

/* ---------- Contact page ---------- */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map-frame iframe { width: 100%; min-height: 340px; border: 0; }
.info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 18px; margin-top: 26px; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.info-card .ci { width: 50px; height: 50px; border-radius: 13px; background: var(--gold-soft); color: var(--gold-600); display: grid; place-items: center; margin-bottom: 15px; }
.info-card .ci svg { width: 24px; height: 24px; }
.info-card h4 { font-family: var(--ff-head); color: var(--ink); font-size: 1.04rem; margin-bottom: 5px; }
.info-card a, .info-card p { font-size: .95rem; }

/* ---------- Trust row ---------- */
.trust-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 20px; }
.trust-chip { display: inline-flex; align-items: center; gap: 10px; font-family: var(--ff-head); font-weight: 600; font-size: .9rem; color: var(--navy-700); background: #fff; border: 1px solid var(--line); padding: 13px 22px; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm); }
.trust-chip svg { width: 20px; height: 20px; color: var(--gold-500); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #9fb0cc; position: relative; padding-top: 80px; }
.site-footer::before { content:""; position:absolute; top:0; left:0; right:0; height:3px; background: linear-gradient(90deg, transparent, var(--gold-500), transparent); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.4fr; gap: 46px; padding-bottom: 56px; }
.site-footer .brand__name { color: #fff; }
.footer-about p { margin-top: 20px; font-size: .95rem; max-width: 330px; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.footer-social a { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: #cdd6e6; transition: all .3s var(--ease); }
.footer-social a:hover { background: var(--gold-500); color: var(--navy-900); transform: translateY(-4px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-col h4 { color: #fff; font-size: 1.02rem; margin-bottom: 22px; font-family: var(--ff-head); }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: .94rem; color: #9fb0cc; display: inline-flex; }
.footer-col a:hover { color: var(--gold-400); padding-left: 5px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: .94rem; margin-bottom: 15px; }
.footer-contact svg { width: 19px; height: 19px; flex: none; color: var(--gold-400); margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 26px 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .86rem; }
.footer-bottom a:hover { color: var(--gold-400); }

/* ---------- Floating actions ---------- */
.fab-wa { position: fixed; right: 24px; bottom: 24px; z-index: 90; width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 14px 34px rgba(37,211,102,.5); animation: wapulse 2.6s infinite; }
.fab-wa svg { width: 31px; height: 31px; }
@keyframes wapulse { 0%{box-shadow:0 0 0 0 rgba(37,211,102,.5)} 70%{box-shadow:0 0 0 18px rgba(37,211,102,0)} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0)} }
.to-top { position: fixed; right: 27px; bottom: 96px; z-index: 89; width: 46px; height: 46px; border-radius: 13px; background: var(--navy-700); color: #fff; display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .3s var(--ease); }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold-500); color: var(--navy-900); }
.to-top svg { width: 20px; height: 20px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1{transition-delay:.09s}.reveal.d2{transition-delay:.18s}.reveal.d3{transition-delay:.27s}.reveal.d4{transition-delay:.36s}

/* ---------- Mobile nav backdrop ---------- */
.nav-backdrop { position: fixed; inset: 0; background: rgba(10,21,38,.55); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: opacity .3s var(--ease); z-index: 98; }
body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .split, .contact-split { grid-template-columns: 1fr; gap: 48px; }
  .split--rev .split__media { order: 0; }
  .svc-layout { grid-template-columns: 1fr; }
  .svc-sidebar { position: static; grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .about-stack { max-width: 520px; margin-inline: auto; }
}
@media (max-width: 880px) {
  .topbar__left { gap: 16px; }
  .topbar__left .tb-hide { display: none; }
  .header-cta.desktop-only { display: none; }
  .nav-toggle { display: block; }
  .nav { position: fixed; top: 0; right: 0; z-index: 99; height: 100dvh; width: min(84vw, 350px); background: #fff;
    flex-direction: column; align-items: stretch; justify-content: flex-start; padding: 96px 22px 30px; gap: 4px;
    transform: translateX(100%); transition: transform .4s var(--ease); box-shadow: var(--shadow-lg); overflow-y: auto; }
  body.nav-open .nav { transform: translateX(0); }
  .nav > a, .drop-toggle { color: var(--navy-700) !important; padding: 15px 16px; font-size: 1.05rem; border-radius: 12px; }
  .nav > a::after, .drop-toggle::after { display: none; }
  .nav > a:hover, .nav > a.active { background: var(--bg-soft); }
  .has-drop { display: flex; flex-direction: column; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; width: 100%; box-shadow: none; border: none; padding: 4px 0 4px 10px; grid-template-columns: 1fr; display: none; }
  .dropdown::before { display: none; }
  .has-drop.open .dropdown { display: grid; }
  .has-drop:hover .dropdown { transform: none; }
  .nav .header-cta { display: inline-flex; margin-top: 16px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  h1 { font-size: clamp(2.1rem, 8vw, 2.7rem); }
  .topbar__left span.tb-loc { display: none; }
  .hero { padding-top: 104px; }
  .hero-slider__ui { bottom: 64px; }
  .hero-slider__label { display: none; }
  .hero-slider__ui .container { justify-content: center; }
  .hero-arrow { width: 42px; height: 42px; }
  .hero-arrow svg { width: 20px; height: 20px; }
  .hero-prev { left: 12px; } .hero-next { right: 12px; }
  .hero__stats { gap: 20px 30px; }
  .hero__stats .stat b { font-size: 2rem; }
  .hero__actions .btn, .cta-band .btn { width: 100%; }
  .form .row { grid-template-columns: 1fr; }
  .svc-sidebar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 122px 0 60px; }
  .about-stack { padding-right: 0; }
  .about-stack__sub { position: relative; width: 70%; margin: -30px auto 0; }
  .media-badge { left: 0; }
  .stats-band .stat:not(:last-child)::after { display: none; }
}

/* Short viewports: hide the scroll cue so it never collides with hero content */
@media (max-height: 780px) {
  .hero__scroll { display: none; }
  .hero-slider__ui { bottom: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero__bg { transform: none; }
  .media-card p { max-height: none; opacity: 1; }
}
