/* ===========================
   Brookfields – Modern Static CSS
   File: assets/css/style.css
   =========================== */

:root {
  --bg: #0b0f14;
  --surface: rgba(255, 255, 255, 0.06);
  --surface2: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.12);

  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);

  --accent: #93a6ff;
  --accentHover: #7f96ff;

  --shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
}
button {
  font-family: inherit;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  line-height: 1.5;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   Header / Nav
   =========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 15, 20, 0.55);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.1;
}

.brand__name {
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 1.1rem;
}

.brand__sub {
  font-weight: 700;
  opacity: 0.8;
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.nav-link {
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 650;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.nav-link.is-active {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.nav-link--cta {
  background: rgba(147, 166, 255, 0.18);
  border: 1px solid rgba(147, 166, 255, 0.35);
}

.nav-link--cta:hover {
  background: rgba(147, 166, 255, 0.25);
}

/* Mobile nav */
@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nav-menu {
    position: absolute;
    top: 64px;
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    background: rgba(11, 15, 20, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }
  .nav-menu.is-open {
    display: flex;
  }
}

/* ===========================
   Hero (video background)
   =========================== */
.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 14, 18, 0.78),
    rgba(10, 14, 18, 0.35)
  );
}

.hero__content {
  position: relative;
  max-width: 1100px;
  padding: 96px 24px;
  color: #fff;
}

.hero__kicker {
  opacity: 0.85;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin: 0 0 12px;
}

.hero__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  margin: 0 0 12px;
}

.hero__lead {
  max-width: 54ch;
  font-size: 1.1rem;
  opacity: 0.92;
  margin: 0 0 22px;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 650;
  font-size: 0.9rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    transform 0.12s ease,
    background 0.12s ease,
    border-color 0.12s ease;
}
.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--accent);
  color: #0b1220;
}
.btn--primary:hover {
  background: var(--accentHover);
}

.btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* ===========================
   Trust Strip
   =========================== */
.trust {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.trust__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 24px 0;
}

.trust__title {
  font-weight: 800;
  margin-bottom: 6px;
}

.trust__text {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .trust__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .trust__inner {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   Sections / layout helpers
   =========================== */
.section {
  padding: 72px 0;
}

.section__head {
  margin-bottom: 28px;
}

.section__title {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  margin: 0 0 10px;
}

.section__intro {
  margin: 0;
  max-width: 68ch;
  color: var(--muted);
  line-height: 1.6;
}

/* ===========================
   Service cards
   =========================== */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.02);
}

.card__title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 900;
}

.card__text {
  margin: 0 0 12px;
  color: var(--muted);
}

.card__link {
  text-decoration: none;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
}
.card__link:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 1000px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

/* Sector chips */
.sector-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.chip {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 650;
  font-size: 0.92rem;
}

/* ===========================
   Split (About section)
   =========================== */
.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: stretch;
}

.split__text p {
  color: var(--muted);
  line-height: 1.7;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.media-placeholder {
  height: 100%;
  min-height: 320px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 800;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }
  .media-placeholder {
    min-height: 220px;
  }
}

/* ===========================
   Steps / Process
   =========================== */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0;
  margin: 24px 0 0;
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
}

.step__title {
  margin: 0 0 8px;
  font-weight: 900;
}

.step__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   CTA block
   =========================== */
.cta {
  padding: 56px 0;
  background: linear-gradient(
    180deg,
    rgba(147, 166, 255, 0.12),
    rgba(255, 255, 255, 0.02)
  );
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cta__title {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 950;
}

.cta__lead {
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
}

.cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===========================
   Footer
   =========================== */
.site-footer {
  padding: 48px 0 22px;
  background: rgba(255, 255, 255, 0.02);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand__name {
  font-weight: 950;
  font-size: 1.1rem;
}
.footer-brand__sub {
  opacity: 0.75;
  font-weight: 800;
  margin-top: 2px;
}

.footer-title {
  margin: 0 0 10px;
  font-weight: 900;
}

.footer-text {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 50ch;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.footer-list a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.86);
}
.footer-list a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.62);
}

::selection {
  background: rgba(147, 166, 255, 0.35);
}

.cards .card {
  display: flex;
  flex-direction: column;
}

.cards .card > p:last-child {
  margin-top: auto !important;
}
