/* =====================================================
   DRP Property Investments – styles.css
   Template-inspired editorial redesign
   Blues: #0b1d36 navy | #0069c0 blue | #e8f0fe light
   ===================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0b1d36;
  --navy-mid: #122a4e;
  --blue: #0069c0;
  --blue-dark: #004ea3;
  --yellow: #FFD700;
  --blue-mid: #1976d2;
  --blue-light: #bbdefb;
  --accent: #0069c0;
  --light: #f6f8fb;
  --lighter: #edf2f9;
  --white: #ffffff;
  --off-white: #fafafa;
  --dark: #111418;
  --text: #1e2d3d;
  --text-mid: #4a5568;
  --text-light: #718096;
  --border: #e2e8f0;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, .06);
  --shadow: 0 6px 30px rgba(0, 0, 0, .10);
  --shadow-lg: 0 16px 60px rgba(0, 0, 0, .16);
  --font-head: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.3s var(--ease);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.accent {
  color: var(--blue);
}

.accent-light {
  color: var(--blue-light);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2.2rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 105, 192, .35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .7);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--blue-light);
  border-color: var(--blue-light);
}

.btn-ghost:hover {
  background: rgba(187, 222, 251, .15);
}

.btn-sm {
  padding: .6rem 1.4rem;
  font-size: .8rem;
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-dark:hover {
  background: var(--dark);
  border-color: var(--dark);
  transform: translateY(-2px);
}

/* ============================================================
   SECTION UTILITY
   ============================================================ */
.section-label {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 4px;
  height: 28px;
  background: var(--blue);
  flex-shrink: 0;
}

.section-label span {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}

/* Legacy section-tag kept for compat */
.section-tag {
  display: inline-block;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .8rem;
  position: relative;
  padding-left: 1.4rem;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  background: var(--blue);
}

.section-tag.light {
  color: var(--blue-light);
}

.section-tag.light::before {
  background: var(--blue-light);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -.01em;
}

.section-header.light h2 {
  color: var(--white);
}

.section-header.light p {
  color: rgba(255, 255, 255, .65);
}

.section-header p {
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), padding 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.navbar.nav-hidden {
  transform: translateY(-100%);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, .15);
  padding: .75rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
  filter: brightness(0) invert(1);
  /* Make white at top */
}

.navbar.scrolled .nav-logo img {
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  margin-left: auto;
}

.nav-links a {
  color: rgba(255, 255, 255, .8);
  font-size: .83rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  position: relative;
  padding: .25rem 0;
  transition: var(--transition);
}

.navbar.scrolled .nav-links a {
  color: var(--navy);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width .3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--blue);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--blue);
  color: var(--white);
  padding: .6rem 1.5rem;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .hamburger span {
  background: var(--navy);
}

/* ============================================================
   HERO  –  editorial grid overlay style
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: heroZoom 16s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(11, 29, 54, .90) 0%,
      rgba(11, 29, 54, .70) 50%,
      rgba(0, 105, 192, .20) 100%);
  z-index: 1;
}

/* Grid overlay lines – inspired by template */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-grid::before,
.hero-grid::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, .06);
}

/* Vertical lines */
.hero-grid::before {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.hero-grid::after {
  top: 0;
  bottom: 0;
  left: 70%;
  width: 1px;
}

/* Side nav labels – floating right panel like template */
.hero-side-nav {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-side-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.2rem .7rem;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, .10);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.hero-side-link:hover {
  background: var(--blue);
}

.hero-side-link .side-brand {
  font-family: var(--font-head);
  font-size: .6rem;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: .2rem;
}

.hero-side-link .side-label {
  font-family: var(--font-head);
  font-size: .72rem;
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

/* Blue accent block behind right portion */
.hero-accent-block {
  position: absolute;
  right: 60px;
  bottom: 15%;
  width: 90px;
  height: 130px;
  background: var(--blue);
  z-index: 2;
  opacity: .85;
}

.hero-content {
  position: relative;

  z-index: 3;
  max-width: 1500px;
  padding: 0 2.5rem;
  margin: 0 7rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(0, 105, 192, .2);
  border: 1px solid rgba(0, 105, 192, .5);
  color: var(--blue-light);
  padding: .4rem 1.1rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.hero-badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--blue-light);
  line-height: 1.08;
  margin-bottom: 1.6rem;
  max-width: 700px;
  text-transform: uppercase;
  letter-spacing: -.02em;
}

.hero-content h1 .accent {
  color: var(--light);
  font-weight: 10;
  font-size: 3rem;
}

.hero-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .75);
  max-width: 500px;
  margin-bottom: 2.4rem;
  line-height: 1.85;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding-top: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
  padding-right: 2.5rem;
  margin-right: 2.5rem;
  border-right: 1px solid rgba(255, 255, 255, .15);
}

.stat:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -.02em;
}

.stat-label {
  font-size: .72rem;
  color: rgba(255, 255, 255, .55);
  font-weight: 500;
  margin-top: .3rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.stat-divider {
  display: none;
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  right: 140px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .45);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 55px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .5), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .25;
  }
}

.hero-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.hero-divider svg {
  width: 100%;
  height: 70px;
}

/* ============================================================
   WELCOME / WHO WE ARE  –  split editorial
   ============================================================ */
.welcome-section {
  background: var(--white);
  padding: 7rem 0;
  position: relative;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.welcome-text h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.12;
  margin-bottom: 1.4rem;
  text-transform: uppercase;
  letter-spacing: -.01em;
}

.welcome-text p {
  color: var(--text-mid);
  margin-bottom: 1rem;
  font-size: .98rem;
}

.welcome-text .btn {
  margin-top: 1.2rem;
}

.welcome-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.visual-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--light);
  padding: 1.4rem 1.8rem;
  width: 100%;
  font-weight: 700;
  font-size: .92rem;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 4px solid var(--blue);
}

.visual-card i {
  font-size: 1.4rem;
  color: var(--blue);
  min-width: 28px;
}

.visual-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow);
}

.visual-card--mid {
  margin-left: 2.5rem;
}

.section-divider-dark {
  line-height: 0;
}

.section-divider-dark svg {
  width: 100%;
  height: 70px;
}

.section-divider-light {
  line-height: 0;
}

.section-divider-light svg {
  width: 100%;
  height: 70px;
}

/* ============================================================
   DARK SECTION
   ============================================================ */
.dark-section {
  background: var(--navy);
}

/* ============================================================
   INVESTMENTS – editorial cards with number
   ============================================================ */
.investments-section {
  position: relative;
  padding: 6rem 0 7rem;
}

.invest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.invest-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.invest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
  z-index: 2;
  border-color: var(--blue);
}

.invest-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.invest-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.invest-card:hover .invest-card-img img {
  transform: scale(1.08);
}

.invest-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 29, 54, .75) 0%, transparent 55%);
}

.invest-card-num {
  position: absolute;
  top: 1rem;
  left: 1.2rem;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: .1em;
  z-index: 2;
  background: rgba(11, 29, 54, .7);
  padding: .25rem .6rem;
}

.invest-card-body {
  padding: 1.8rem;
}

.invest-icon {
  width: 46px;
  height: 46px;
  background: rgba(0, 105, 192, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.invest-icon i {
  font-size: 1.2rem;
  color: var(--blue);
}

.invest-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .7rem;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.invest-card-body p {
  font-size: .87rem;
  color: rgba(255, 255, 255, .58);
  line-height: 1.8;
  margin-bottom: 1.4rem;
}

.invest-link {
  font-size: .82rem;
  color: var(--blue);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .45rem;
  transition: var(--transition);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.invest-link:hover {
  color: var(--blue-light);
  gap: .8rem;
}

/* ============================================================
   PHILOSOPHY – large number/icon style
   ============================================================ */
.philosophy-section {
  position: relative;
  background: var(--light);
  padding: 7rem 0 8rem;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.phil-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.phil-card::before {
  content: attr(data-num);
  position: absolute;
  top: -0.5rem;
  right: 1.2rem;
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(0, 105, 192, .06);
  line-height: 1;
  pointer-events: none;
}

.phil-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-top-color: var(--blue);
}

.phil-card--accent {
  background: var(--navy);
  border-top-color: var(--blue);
}

.phil-card--accent h3,
.phil-card--accent p {
  color: var(--white);
}

.phil-card--accent h3 {
  color: var(--light);
}

.phil-card--accent .phil-icon {
  background: rgba(0, 105, 192, .2);

}

.phil-card--accent .phil-icon i {
  color: var(--blue-light);
}

.phil-card--accent::before {
  color: rgba(255, 255, 255, .04);
}

.phil-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 105, 192, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.phil-icon i {
  font-size: 1.4rem;
  color: var(--blue);
}

.phil-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .9rem;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.phil-card p {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  padding: 6rem 0 7rem;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: .9rem;
  text-transform: uppercase;
  letter-spacing: -.01em;
}

.cta-text p {
  color: rgba(255, 255, 255, .6);
  max-width: 500px;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   MORE SECTION (portfolio/additional)
   ============================================================ */
.more-section {
  background: var(--off-white);
  padding: 7rem 0 6rem;
}

.more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.more-card {
  background: var(--white);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.more-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--blue);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .35s var(--ease);
}

.more-card:hover::after {
  transform: scaleY(1);
}

.more-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.more-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 105, 192, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.more-icon i {
  font-size: 1.3rem;
  color: var(--blue);
}

.more-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: .7rem;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.more-card p {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
}

.footer-top {
  padding: 5.5rem 0 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
}

.footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.4rem;
  filter: brightness(1.1);
}

.footer-brand p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.85;
  margin-bottom: 1.6rem;
}

.footer-social {
  display: flex;
  gap: .8rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  font-size: .85rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 800;
  margin-bottom: 1.4rem;
  position: relative;
  padding-bottom: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--blue);
}

.footer-links ul li {
  margin-bottom: .65rem;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, .42);
  font-size: .86rem;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--blue-light);
  padding-left: 5px;
}

.footer-contact ul li {
  display: flex;
  gap: .9rem;
  color: rgba(255, 255, 255, .42);
  font-size: .86rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.footer-contact ul li i {
  color: var(--blue);
  margin-top: .2rem;
  min-width: 16px;
}

.footer-contact ul li a {
  color: rgba(255, 255, 255, .42);
}

.footer-contact ul li a:hover {
  color: var(--blue-light);
}

.footer-contact .btn {
  margin-top: .8rem;
}

.footer-bottom {
  padding: 1.6rem 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}

.footer-bottom p {
  font-size: .78rem;
  color: rgba(255, 255, 255, .28);
}

.footer-bottom a {
  color: var(--blue-light);
}

.footer-bottom a:hover {
  color: var(--blue);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {

  .invest-grid,
  .philosophy-grid,
  .more-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .welcome-grid {
    gap: 3rem;
  }

  .hero-side-nav {
    display: none;
  }

  .hero-content {
    padding-right: 2.5rem;
    margin: 0 auto;
  }

  .hero-scroll {
    right: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11, 29, 54, .98);
    padding: 2rem;
    gap: 1.2rem;
  }

  .navbar.scrolled .nav-links {
    background: rgba(255, 255, 255, .98);
  }

  .navbar.scrolled .nav-links a {
    color: var(--navy);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-container {
    flex-wrap: wrap;
    position: relative;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .stat {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .stat:last-child {
    border-bottom: none;
  }

  .hero-accent-block {
    display: none;
  }

  .welcome-grid {
    grid-template-columns: 1fr;
  }

  .invest-grid,
  .philosophy-grid,
  .more-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-text p {
    margin: 0 auto;
  }

  .cta-actions {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
    width: 100%;
    max-width: 280px;
  }

  .hero-scroll {
    display: none;
  }
}