:root {
  --gold: #d4af37;
  --gold-soft: #f2dc8b;
  --gold-deep: #9a6f16;
  --navy: #111827;
  --dark: #0f172a;
  --ink: #172033;
  --muted: #687083;
  --mist: #f8fafc;
  --paper: #fffdf8;
  --white: #ffffff;
  --line: rgba(212, 175, 55, .24);
  --shadow: 0 24px 70px rgba(15, 23, 42, .16);
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, .09);
  --shadow-premium: 0 30px 90px rgba(15, 23, 42, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(248,250,252,.65), rgba(255,255,255,0) 420px),
    var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
html { overflow-x: hidden; }
body.loading { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--dark);
  color: var(--white);
  transition: opacity .55s ease, visibility .55s ease;
}
.loader.is-hidden { opacity: 0; visibility: hidden; }
.loader-mark {
  width: 132px;
  height: 132px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  position: relative;
}
.loader-mark:before {
  content: "";
  width: 82px;
  height: 82px;
  border: 3px solid transparent;
  border-top-color: var(--gold);
  border-right-color: var(--gold);
  animation: spin 1.1s linear infinite;
}
.loader-mark span { position: absolute; font-weight: 800; letter-spacing: 2px; color: var(--gold-soft); }
@keyframes spin { to { transform: rotate(360deg); } }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-header:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.46), transparent);
  opacity: .55;
}
.site-header.scrolled {
  background: rgba(9, 14, 25, .94);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .16);
}
.nav-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--white); }
.brand img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.24));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 750;
  padding: 7px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(14px);
}
.nav-links a {
  opacity: .9;
  padding: 9px 13px;
  transition: color .2s ease, opacity .2s ease, background .2s ease;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold-soft);
  opacity: 1;
  background: rgba(212,175,55,.12);
}
.nav-cta { display: flex; gap: 10px; align-items: center; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  color: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-toggle span, .menu-toggle span:before, .menu-toggle span:after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  position: relative;
}
.menu-toggle span:before { position: absolute; top: -7px; }
.menu-toggle span:after { position: absolute; top: 7px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 32%, rgba(255,255,255,.36) 46%, transparent 62% 100%);
  transform: translateX(-130%);
  transition: transform .55s ease;
}
.btn:hover:after { transform: translateX(130%); }
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, #f7e6a2, var(--gold) 48%, #b7871e);
  color: #15110a;
  box-shadow: 0 14px 30px rgba(212,175,55,.28);
}
.btn-primary:hover { background: var(--gold-soft); }
.btn-outline { border-color: rgba(255,255,255,.42); color: var(--white); background: rgba(255,255,255,.06); }
.btn-outline:hover { border-color: var(--gold-soft); color: var(--gold-soft); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-light { background: var(--white); color: var(--dark); }

.hero, .page-hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero:before, .page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 24%, rgba(212,175,55,.22), transparent 28%),
    linear-gradient(90deg, rgba(7,11,20,.94), rgba(15,23,42,.68) 48%, rgba(15,23,42,.26));
  z-index: 1;
}
.hero:after, .page-hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(15,23,42,.94));
  z-index: 1;
}
.hero-bg, .page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 18s ease-in-out infinite alternate;
}
@keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.06); } }
.hero-inner, .page-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 132px 0 72px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.eyebrow:before { content: ""; width: 42px; height: 1px; background: var(--gold); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 850px;
  margin: 18px 0 22px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}
.hero p, .page-hero p {
  max-width: 680px;
  color: rgba(255,255,255,.86);
  font-size: clamp(17px, 2vw, 22px);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-panel {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 900px;
  border: 1px solid rgba(212,175,55,.28);
  background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
}
.hero-panel div { padding: 22px; border-right: 1px solid rgba(255,255,255,.16); position: relative; }
.hero-panel div:before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  width: 42px;
  height: 2px;
  background: var(--gold);
}
.hero-panel div:last-child { border-right: 0; }
.hero-panel strong { display: block; color: var(--gold-soft); font-size: 25px; }
.hero-panel span { color: rgba(255,255,255,.8); font-size: 13px; font-weight: 700; }

.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -46px;
  padding: 0 0 46px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(212,175,55,.3);
  border: 1px solid rgba(212,175,55,.3);
  box-shadow: var(--shadow-premium);
}
.trust-item {
  min-height: 132px;
  padding: 24px;
  background: rgba(255,255,255,.96);
  display: grid;
  align-content: start;
  gap: 6px;
}
.trust-item span { color: var(--gold-deep); font-weight: 950; font-size: 13px; }
.trust-item strong { color: var(--dark); font-size: 17px; line-height: 1.2; }
.trust-item small { color: var(--muted); font-weight: 650; line-height: 1.45; }

.section { padding: 102px 0; }
.section.alt {
  background:
    linear-gradient(135deg, rgba(212,175,55,.08), transparent 34%),
    linear-gradient(180deg, #f8fafc, #f2f5f9);
}
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section-head { display: flex; justify-content: space-between; gap: 28px; align-items: end; margin-bottom: 42px; }
.section-head h2, .split h2 {
  color: var(--dark);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  margin-bottom: 0;
  text-wrap: balance;
}
.section-head p { max-width: 510px; margin-bottom: 0; color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}
.media-frame {
  position: relative;
  min-height: 510px;
  background: var(--dark);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(212,175,55,.18);
}
.media-frame img { width: 100%; height: 100%; min-height: 510px; object-fit: cover; transition: transform .55s ease; }
.media-frame:hover img { transform: scale(1.045); }
.gold-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(260px, calc(100% - 44px));
  padding: 22px;
  background: linear-gradient(145deg, rgba(15,23,42,.9), rgba(7,11,20,.82));
  color: var(--white);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0,0,0,.26);
}
.gold-card strong { color: var(--gold-soft); font-size: 30px; display: block; }
.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.check-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid rgba(15,23,42,.075);
  background: linear-gradient(180deg, var(--white), #fbfcff);
  font-weight: 750;
  box-shadow: 0 12px 28px rgba(15,23,42,.055);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.check-item:hover { transform: translateY(-3px); border-color: var(--line); box-shadow: 0 18px 40px rgba(15,23,42,.1); }
.check-item:before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  box-shadow: 0 0 0 5px rgba(212,175,55,.12);
  flex: 0 0 auto;
}

.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  position: relative;
  background: linear-gradient(180deg, var(--white), var(--paper));
  border: 1px solid rgba(15,23,42,.075);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border-radius: 8px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  z-index: 2;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .9;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-premium); border-color: rgba(212,175,55,.36); }
.card-img { height: 230px; overflow: hidden; background: #eef2f7; position: relative; }
.card-img:after {
  content: "Verified";
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  background: rgba(15,23,42,.78);
  color: var(--gold-soft);
  border: 1px solid rgba(212,175,55,.4);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-img img { transform: scale(1.075); }
.card-body { padding: 25px; position: relative; }
.card h3 { margin-bottom: 10px; color: var(--dark); font-size: 22px; line-height: 1.18; }
.card h3:after {
  content: "";
  display: block;
  width: 38px;
  height: 2px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.card p { color: var(--muted); margin-bottom: 0; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag {
  padding: 7px 10px;
  background: linear-gradient(180deg, #fff8df, #f5e6af);
  color: #6b4d08;
  border: 1px solid rgba(212,175,55,.28);
  font-size: 12px;
  font-weight: 850;
}
.project-card .card-img { height: 255px; }
.project-card .btn { width: 100%; }
.project-actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}
.project-specs {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  color: var(--dark);
  font-size: 13px;
  font-weight: 800;
}
.project-specs span {
  padding: 9px 10px;
  background: rgba(15,23,42,.045);
  border-left: 3px solid var(--gold);
}
.brochure-grid { align-items: stretch; }
.brochure-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 190px;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(15,23,42,.95), rgba(8,13,24,.92)),
    linear-gradient(135deg, rgba(212,175,55,.18), transparent 46%);
  border: 1px solid rgba(212,175,55,.3);
  box-shadow: var(--shadow-soft);
  border-radius: 8px;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.brochure-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,.68);
  box-shadow: var(--shadow-premium);
}
.brochure-card span {
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.brochure-card strong {
  font-size: 24px;
  line-height: 1.16;
}
.brochure-card small {
  color: rgba(255,255,255,.72);
  font-weight: 750;
}

.leadership-band {
  position: relative;
  overflow: hidden;
  padding: 106px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(212,175,55,.16), transparent 30%),
    linear-gradient(145deg, #101827, #060a12 64%, #111827);
}
.leadership-band:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(115deg, rgba(255,255,255,.055) 0 1px, transparent 1px 24px),
    linear-gradient(90deg, transparent, rgba(212,175,55,.12), transparent);
  opacity: .55;
  animation: leadershipLines 14s linear infinite;
}
.leadership-band .container { position: relative; z-index: 1; }
.leadership-band .section-head h2 { color: var(--white); }
.leadership-band .section-head p { color: rgba(255,255,255,.76); }
.leadership-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 26px;
  align-items: stretch;
}
.leader-card {
  position: relative;
  min-height: 440px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: end;
  gap: 24px;
  padding: 28px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.045));
  border: 1px solid rgba(212,175,55,.32);
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
  border-radius: 8px;
  transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease;
}
.leader-card:before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,.09);
  pointer-events: none;
}
.leader-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 34%, rgba(255,255,255,.18) 45%, transparent 58% 100%);
  transform: translateX(-130%);
  transition: transform .72s ease;
}
.leader-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212,175,55,.78);
  box-shadow: 0 36px 100px rgba(0,0,0,.36);
}
.leader-card:hover:after { transform: translateX(130%); }
.leader-card-featured { min-height: 500px; }
.leader-photo {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 360px;
  background: #eef2f7;
  border: 1px solid rgba(212,175,55,.4);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
  animation: leadershipFloat 5.5s ease-in-out infinite;
}
.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .5s ease, filter .5s ease;
}
.leader-card:hover .leader-photo img {
  transform: scale(1.055);
  filter: contrast(1.05) saturate(1.05);
}
.leader-content {
  position: relative;
  z-index: 1;
  align-self: center;
}
.leader-content span {
  display: inline-flex;
  padding: 7px 10px;
  color: #15110a;
  background: linear-gradient(135deg, #f7e6a2, var(--gold));
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.leader-content h3 {
  margin: 18px 0 12px;
  color: var(--white);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}
.leader-content p {
  color: rgba(255,255,255,.78);
  margin-bottom: 0;
}
.leader-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}
.leader-tags small {
  padding: 8px 10px;
  color: var(--gold-soft);
  background: rgba(15,23,42,.64);
  border: 1px solid rgba(212,175,55,.24);
  font-weight: 850;
}
@keyframes leadershipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes leadershipLines {
  from { background-position: 0 0, -220px 0; }
  to { background-position: 180px 0, 220px 0; }
}

.process {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  background: rgba(212,175,55,.24);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.process-step {
  background: linear-gradient(145deg, #111827, #080d18);
  color: var(--white);
  padding: 30px 20px;
  min-height: 170px;
  position: relative;
  overflow: hidden;
}
.process-step:after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(212,175,55,.18);
  transform: rotate(45deg);
}
.process-step span { color: var(--gold-soft); font-weight: 900; }
.process-step h3 { color: var(--white); margin: 18px 0 0; font-size: 18px; }

.counter-band {
  background:
    linear-gradient(135deg, rgba(212,175,55,.13), transparent 38%),
    linear-gradient(145deg, #111827, #050914);
  color: var(--white);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.counter-band:before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(212,175,55,.16), transparent 46%); }
.counters { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.counter {
  border-left: 1px solid var(--line);
  padding: 10px 0 10px 24px;
  min-height: 106px;
  display: grid;
  align-content: center;
}
.counter strong { display: block; font-size: clamp(34px, 5vw, 54px); color: var(--gold-soft); line-height: 1; }
.counter span { color: rgba(255,255,255,.78); font-weight: 800; }

.testimonial .card { background: #fff; }
.testimonial .card-img { height: 290px; }
.testimonial .card-img:after { content: "Client Story"; }
.stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; margin-bottom: 12px; }
.client { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 18px; color: var(--dark); font-weight: 900; }
.client small { display: block; color: var(--muted); font-weight: 700; }

.cta-band {
  background: linear-gradient(rgba(15,23,42,.72), rgba(15,23,42,.82)), url("../images/property-32.jpg") center/cover;
  color: var(--white);
  padding: 92px 0;
  position: relative;
  overflow: hidden;
}
.cta-band:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(212,175,55,.28), transparent 26%);
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 { font-size: clamp(32px, 4vw, 52px); line-height: 1.08; margin-bottom: 12px; }
.cta-inner p { color: rgba(255,255,255,.82); margin-bottom: 0; max-width: 620px; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: stretch; }
.contact-panel, .form-panel {
  background: linear-gradient(180deg, var(--white), var(--paper));
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: var(--shadow-premium);
  padding: 32px;
  border-radius: 8px;
}
.contact-item { padding: 18px 0; border-bottom: 1px solid rgba(15,23,42,.08); }
.contact-item:last-child { border-bottom: 0; }
.contact-item strong { display: block; color: var(--dark); font-size: 15px; }
.contact-item a, .contact-item span { color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
.field { display: grid; gap: 7px; }
.field label { font-weight: 800; color: var(--dark); font-size: 13px; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid rgba(15,23,42,.14);
  background: var(--mist);
  padding: 14px;
  min-height: 48px;
  color: var(--dark);
  border-radius: 6px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: rgba(212,175,55,.7);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(212,175,55,.12);
}
.field textarea { min-height: 130px; resize: vertical; }

.site-footer {
  background:
    linear-gradient(135deg, rgba(212,175,55,.1), transparent 32%),
    #080d18;
  color: rgba(255,255,255,.72);
  padding: 64px 0 24px;
}
.footer-grid { display: grid; grid-template-columns: 1.25fr repeat(3, 1fr); gap: 34px; }
.footer-logo {
  width: 132px;
  height: 132px;
  object-fit: contain;
  margin-bottom: 18px;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,.32));
}
.site-footer h3 { color: var(--white); font-size: 16px; margin-bottom: 18px; }
.site-footer a { display: block; margin: 9px 0; color: rgba(255,255,255,.72); }
.site-footer a:hover { color: var(--gold-soft); }
.footer-bottom { margin-top: 42px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; }

.float-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  display: grid;
  gap: 10px;
}
.float-actions a {
  width: 56px;
  height: 54px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #15110a;
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 16px 36px rgba(0,0,0,.2);
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .2px;
  transition: transform .2s ease;
  border-radius: 8px;
}
.float-actions img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,.12));
}
.float-actions a:hover { transform: translateY(-4px); }
.float-actions a:nth-child(2) { background: #25d366; color: #06170c; }
.float-actions a:nth-child(3) { background: var(--dark); color: var(--white); }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s ease; }
.reveal.fade-left { transform: translateX(-38px); }
.reveal.fade-right { transform: translateX(38px); }
.reveal.in-view { opacity: 1; transform: translate(0); }

@media (max-width: 1020px) {
  .nav-links {
    position: fixed;
    inset: 98px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 18px 24px 26px;
    background: rgba(15, 23, 42, .98);
    border: 0;
    border-top: 1px solid rgba(212,175,55,.24);
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .menu-toggle { display: flex; }
  .nav-cta .btn { display: none; }
  .grid-4, .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .leadership-grid { grid-template-columns: 1fr; }
  .leader-card { grid-template-columns: .82fr 1.18fr; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  body { line-height: 1.58; }
  .nav-wrap { width: min(100% - 24px, 1180px); height: 82px; }
  .brand img { width: 70px; height: 70px; }
  .menu-toggle { width: 42px; height: 42px; }
  .nav-links { inset: 82px 0 auto 0; padding: 12px 22px 22px; }
  .nav-links a { padding: 13px 0; }
  .hero, .page-hero { min-height: auto; align-items: end; }
  .hero-bg, .page-hero img { object-position: center; }
  .hero-inner, .page-hero-inner {
    width: min(100% - 28px, 1180px);
    padding: 118px 0 48px;
  }
  h1 {
    font-size: clamp(36px, 10.5vw, 44px);
    line-height: 1.05;
    margin: 16px 0 18px;
  }
  .hero p, .page-hero p { font-size: 16px; line-height: 1.65; }
  .eyebrow { font-size: 11px; letter-spacing: 1.2px; }
  .eyebrow:before { width: 30px; }
  .hero-actions .btn { width: 100%; }
  .hero-actions { gap: 11px; margin-top: 26px; }
  .hero-panel {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 34px;
  }
  .hero-panel div {
    padding: 18px 15px;
    border-bottom: 1px solid rgba(255,255,255,.16);
  }
  .hero-panel strong { font-size: 22px; }
  .hero-panel span { font-size: 12px; }
  .trust-strip { margin-top: 0; padding: 28px 0 0; background: #f8fafc; }
  .trust-grid { grid-template-columns: 1fr; box-shadow: var(--shadow-soft); }
  .trust-item { min-height: auto; padding: 20px; }
  .section { padding: 58px 0; }
  .container { width: min(100% - 28px, 1180px); }
  .section-head { display: block; }
  .section-head p { margin-top: 14px; }
  .section-head { margin-bottom: 28px; }
  .section-head h2, .split h2 { font-size: clamp(29px, 8vw, 36px); line-height: 1.12; }
  .grid-4, .grid-3, .process, .counters, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .grid { gap: 18px; }
  .split { gap: 32px; }
  .media-frame, .media-frame img { min-height: 315px; }
  .gold-card { right: 14px; bottom: 14px; padding: 17px; }
  .gold-card strong { font-size: 25px; }
  .check-grid { grid-template-columns: 1fr; }
  .check-item { padding: 14px 15px; }
  .card-img { height: 215px; }
  .testimonial .card-img { height: 230px; }
  .card-body { padding: 21px; }
  .card h3 { font-size: 21px; }
  .leadership-band { padding: 64px 0; }
  .leader-card, .leader-card-featured {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
  .leader-photo {
    min-height: 360px;
    aspect-ratio: 4 / 5;
  }
  .leader-content h3 { font-size: clamp(28px, 8vw, 34px); }
  .leader-tags small { font-size: 12px; }
  .process-step { min-height: 132px; padding: 24px 20px; }
  .counter-band { padding: 50px 0; }
  .counter { min-height: 86px; padding-left: 18px; }
  .cta-inner { display: block; }
  .cta-inner .btn { margin-top: 24px; width: 100%; }
  .cta-band { padding: 64px 0; }
  .contact-panel, .form-panel { padding: 22px; }
  .form-panel .btn { width: 100%; margin-top: 8px; }
  .footer-grid { gap: 24px; }
  .site-footer { padding-bottom: 92px; }
  .footer-logo { width: 112px; height: 112px; }
  .float-actions { right: 12px; bottom: 12px; }
  .float-actions a { width: 50px; height: 48px; font-size: 11px; }
}
