/* Make all headings and text darker and more consistent */
h1, h2, h3, h4, h5, h6 {
  color: #181818 !important;
  font-weight: 700 !important;
}
p, .footer-col a, .footer-logo, .social-icon {
  color: #232323 !important;
}
button, .btn, .submit-btn {
  opacity: 1 !important;
  visibility: visible !important;
}
:root {
  --gold: #c9b37e;
  --black: #1c1c1c;
  --soft-black: rgba(0,0,0,0.55);
  --bg: #f8f6f2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--black);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* NAVBAR */
.nav {
  height: 90px;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Aptos Narrow', 'Aptos', 'Inter', sans-serif;
  letter-spacing: 0.5px;
  font-size: 25px;
  color: var(--black);
  text-decoration: none;
}

.footer-logo {
  font-family: 'Aptos Narrow', 'Aptos', 'Playfair Display', serif;
  font-size: 34px;
}


.logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.brand-mark {
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  padding: 4px;
  background: rgba(255, 255, 255, 0.85);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: var(--soft-black);
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

/* HERO */
.hero {
  position: relative;
  height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* VERY LIGHT BUILDING */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1501183638710-841dd1904471");
  background-size: cover;
  background-position: center;
  opacity: 0.09; /* VERY IMPORTANT: luxury subtlety */
}

/* CONTENT */
.hero-content {
  position: relative;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

/* HEADLINE */
.headline {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.line {
  display: block;
  opacity: 1;
  transform: translateY(20px);
}

.gold {
  color: var(--gold);
}

/* SUBTEXT */
.subtext {
  font-size: 16px;
  color: rgba(0,0,0,0.6);
  line-height: 1.7;
  margin-bottom: 48px;
}

/* BUTTONS */
.cta-group {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.btn {
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.35s ease;
}

/* View Portfolio */
.btn.primary {
  background: var(--black);
  color: white;
}

.btn.primary:hover {
  background: var(--gold); /* SAME AS ADVISORY */
  color: white;
}

/* Schedule */
.btn.secondary {
  border: 1px solid var(--black);
  color: var(--black);
  background: transparent;
}

.btn.secondary:hover {
  background: var(--black);
  color: white;
}

/* ==============================
   INVESTMENT PHILOSOPHY — PAGE 2
   ============================== */

.philosophy-section {
  position: relative;
  padding: 100px 80px;
  background: #ffffff;
}

/* GRID */
.philosophy-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 140px;
  align-items: center;
}

/* ------------------------------
   LEFT CONTENT
-------------------------------- */

.philosophy-content {
  max-width: 520px;
}

.ph-title {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: #1c1c1c;
  margin-bottom: 18px;
}

.gold-line {
  width: 56px;
  height: 2px;
  background: #855f35;
  margin-bottom: 36px;
}

.ph-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(28, 28, 28, 0.65);
  margin-bottom: 26px;
}

/* LINK */
.ph-link {
  display: inline-block;
  margin-top: 28px;
  font-size: 14px;
  letter-spacing: 0.4px;
  color: #c9b37e;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.ph-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: #c9b37e;
  transition: width 0.45s ease;
}

.ph-link:hover {
  color: #a8925f;
}

.ph-link:hover::after {
  width: 100%;
}

/* ====================================
   VIDEO SECTION
   ==================================== */

.video-container {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #f8f6f2;
  box-shadow: 0 40px 70px rgba(0, 0, 0, 0.06), 0 12px 30px rgba(0, 0, 0, 0.04);
  height: 520px;
}

.video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive Video */
@media (max-width: 1100px) {
  .video-container {
    height: 440px;
  }
}

@media (max-width: 768px) {
  .video-container {
    height: 380px;
  }
}

/* ==============================
   FEATURED OPPORTUNITIES — PAGE 3
   ============================== */

.featured-section {
  position: relative;
  padding: 100px 80px;
  background: linear-gradient(135deg, #ffffff 0%, #fafaf8 100%);
}

.featured-container {
  max-width: 1600px;
  margin: 0 auto;
}

.featured-heading {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: #1c1c1c;
  margin-bottom: 12px;
  text-align: center;
}

.featured-line {
  width: 80px;
  height: 2px;
  background: #c9b37e;
  margin: 12px auto 40px;
  transform-origin: center;
}

/* ==============================
  LUXURY CAROUSEL - PREMIUM COMPONENT
  ============================== */

.luxury-carousel {
  padding: 100px 0;
}

.carousel-viewport {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 40px;
}

.carousel-card {
  flex: 0 0 70%;
  height: 420px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16), inset 0 0 28px rgba(255, 218, 130, 0.18);
  background: linear-gradient(145deg, rgba(252, 247, 241, 0.22), rgba(255, 255, 255, 0.13));
  border: 1px solid rgba(201, 179, 126, 0.25);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.carousel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.20), inset 0 0 32px rgba(201, 179, 126, 0.25);
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 18s ease-in-out infinite alternate;
  transition: transform 0.3s ease;
}

.carousel-card:hover .carousel-image {
  transform: scale(1.13);
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1.14);
  }
}

/* ============================== 
   PORTFOLIO INTRO — OPENING
   ============================== */

.portfolio-intro {
  background: var(--bg);
  min-height: calc((100vh - 90px) * 0.5);
  padding: 56px 20px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-intro__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-intro__heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 5vw, 74px);
  font-weight: 500;
  letter-spacing: -0.6px;
  color: var(--black);
  line-height: 1.08;
}

.portfolio-intro__line {
  display: block;
  width: 112px;
  height: 1px;
  background: var(--gold);
  margin: 26px auto 0;
  transform-origin: center;
}

.portfolio-intro__bottom {
  max-width: 1660px;
  margin: 0 auto;
  width: 100%;
}

.portfolio-intro__filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 58px;
  margin-bottom: 20px;
}

.portfolio-intro__filter {
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 1.85vw, 38px);
  font-weight: 400;
  letter-spacing: 0.1px;
  color: rgba(28, 28, 28, 0.66);
  text-decoration: none;
  position: relative;
  padding-bottom: 14px;
  transition: color 0.35s ease;
}

.portfolio-intro__filter::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease;
}

.portfolio-intro__filter.is-active {
  color: var(--black);
}

.portfolio-intro__filter.is-active::after,
.portfolio-intro__filter:hover::after {
  transform: scaleX(1);
}

.portfolio-intro__filter:hover {
  color: rgba(28, 28, 28, 0.78);
}

.portfolio-intro__footer-line {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.07);
}

.portfolio-nav .logo {
  font-size: 27px;
  font-weight: 500;
  letter-spacing: 2px;
}

.portfolio-nav .nav-links a {
  position: relative;
  padding-bottom: 12px;
}

.portfolio-nav .nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}

.portfolio-nav .nav-links a:hover::after,
.portfolio-nav .nav-links a.is-active::after {
  transform: scaleX(1);
}

@media (max-width: 768px) {
  .portfolio-intro {
    min-height: 42vh;
    padding: 48px 20px 14px;
  }

  .portfolio-intro__line {
    width: 88px;
    margin-top: 20px;
  }

  .portfolio-intro__filters {
    gap: 24px;
    margin-bottom: 14px;
  }

  .portfolio-intro__filter {
    padding-bottom: 10px;
  }

  .portfolio-nav {
    padding: 0 24px;
  }

  .portfolio-nav .logo {
    font-size: 22px;
    letter-spacing: 1.6px;
  }
}

/* ==============================
   PORTFOLIO LIVE — BUY & INVEST
   ============================== */

.portfolio-live {
  padding: 14px 24px 80px;
}

.portfolio-live__tabs {
  max-width: 1760px;
  margin: 0 auto;
  padding: 0 8px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: center;
  gap: 72px;
}

.portfolio-live__tab {
  border: 0;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 1.6vw, 34px);
  color: rgba(28, 28, 28, 0.7);
  font-weight: 400;
  padding: 0 2px 18px;
  cursor: pointer;
  position: relative;
}

.portfolio-live__tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}

.portfolio-live__tab.is-active {
  color: var(--black);
}

.portfolio-live__tab.is-active::after {
  transform: scaleX(1);
}

.portfolio-live__viewport {
  max-width: 1760px;
  margin: 40px auto 0;
  overflow: hidden;
}

.portfolio-live .carousel-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.portfolio-live .carousel-card {
  min-height: 560px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background: #ddd;
}

.portfolio-live .carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-live .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.16) 55%, rgba(0, 0, 0, 0.08) 100%);
}

.portfolio-live .card-content {
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 36px;
  color: #fff;
  z-index: 2;
}

.portfolio-live .card-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.portfolio-live .card-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 2.15vw, 52px);
  font-weight: 500;
  margin: 18px 0 10px;
  line-height: 1.08;
}

.portfolio-live .card-line {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--gold);
  margin: 26px 0 0;
}

.portfolio-live .desc {
  margin-top: 10px;
  opacity: 0.95;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(16px, 1.05vw, 22px);
  transform: none;
}

.portfolio-live__controls {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 36px;
}

.portfolio-live__btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.portfolio-live__btn:hover {
  background: rgba(201, 179, 126, 0.08);
}

.portfolio-live__btn:disabled {
  cursor: default;
}

.portfolio-live__empty {
  text-align: center;
  color: rgba(28, 28, 28, 0.68);
  font-size: 16px;
  padding: 50px 0;
}

@media (max-width: 1100px) {
  .portfolio-live .carousel-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-live .carousel-card {
    min-height: 480px;
  }
}

@media (max-width: 768px) {
  .portfolio-live {
    padding: 8px 16px 60px;
  }

  .portfolio-live__tabs {
    gap: 38px;
    padding-bottom: 10px;
  }

  .portfolio-live__tab {
    padding-bottom: 12px;
  }

  .portfolio-live .carousel-track {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .portfolio-live .carousel-card {
    min-height: 400px;
  }

  .portfolio-live .card-content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
}

/* ==============================
   CONSULTATION PAGE
   ============================== */


.consult-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 5.2vw, 78px);
  line-height: 1.08;
  letter-spacing: -0.5px;
  font-weight: 500;
  color: #232427;
}

.consult-hero .gold-line {
  display: block;
  width: 82px;
  height: 1px;
  background: var(--gold);
  margin: 22px auto 24px;
}

.consult-hero p {
  color: rgba(35, 36, 39, 0.62);
  font-size: clamp(18px, 1.3vw, 24px);
  line-height: 1.65;
}

.consult-section {
  background: #f2f0ec;
  padding: 68px 12px 70px;
}

.consult-grid {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.consult-form {
  background: #efeeec;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.consult-form label {
  display: block;
  font-size: 14px;
  color: rgba(35, 36, 39, 0.64);
  margin-bottom: 16px;
}

.consult-form input,
.consult-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(35, 36, 39, 0.14);
  border-radius: 14px;
  background: #f6f5f3;
  padding: 14px 16px;
  font: inherit;
  color: #232427;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.consult-form textarea {
  resize: vertical;
  min-height: 124px;
}

.consult-form input:hover,
.consult-form textarea:hover,
.consult-form input:focus,
.consult-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fbfaf7;
  box-shadow: 0 0 0 3px rgba(201, 179, 126, 0.14);
}

.submit-btn {
  width: 100%;
  border: 0;
  border-radius: 999px;
  height: 56px;
  margin-top: 2px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: #fff;
  background: linear-gradient(145deg, #2f3137 0%, #1f2024 100%);
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(31, 32, 36, 0.24), 0 0 18px rgba(201, 179, 126, 0.34);
  filter: brightness(1.02);
}

.consult-bottom-note {
  color: rgba(35, 36, 39, 0.62);
  font-size: 15px;
  line-height: 1.8;
  max-width: 620px;
  text-align: left;
}

@media (max-width: 1024px) {
  .consult-section {
    padding: 84px 20px 100px;
  }
}

@media (max-width: 768px) {
  .consult-hero {
    min-height: 34vh;
    padding: 64px 18px 52px;
  }

  .consult-section {
    padding: 60px 16px 82px;
  }

  .consult-form {
    padding: 24px;
    border-radius: 14px;
  }
}

.carousel-card img,
.carousel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
  opacity: 0;
  transition: opacity .6s ease;
}

.card-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  color: #ffe386;
  z-index: 3;
  text-shadow: 0 1px 8px rgba(0,0,0,0.46);
}

.card-category {
  font-size: 12px;
  color: #ffe94f !important;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.card-content h3 {
  color: #fff39a !important;
  font-size: 34px;
}

.card-content p {
  color: #ffe8a1;
}

.desc {
  color: #ffecc4 !important;
}
.card-category {
  font-size: 11px;
  letter-spacing: 1px;
  color: #c9b37e;
}

.card-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin: 8px 0;
}

.card-content p {
  opacity: .8;
  margin: 0;
}

.card-line {
  display: block;
  width: 40px;
  height: 2px;
  background: #c9b37e;
  margin: 12px 0;
  box-shadow: 0 0 0 transparent;
  transition: all .6s ease;
}

.desc {
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s ease;
}

/* HOVER */
.carousel-card:hover img {
  transform: scale(1.15);
}

.carousel-card:hover .card-overlay {
  opacity: 1;
}

.carousel-card:hover .desc {
  opacity: 1;
  transform: translateY(0);
}

.carousel-card:hover .card-line {
  width: 100%;
  box-shadow: 0 0 16px rgba(201,179,126,.8);
}

/* CONTROLS */
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.carousel-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #c9b37e;
  background: transparent;
  color: #c9b37e;
  font-size: 26px;
  cursor: pointer;
  transition: all .4s ease;
}

.carousel-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(201,179,126,.4);
}

/* ==============================
   THE REIA ADVANTAGE — PAGE 4
   ============================== */

.advantage-section {
  padding: 110px 80px 120px;
  background: #f5f3ef;
}

.advantage-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.adv-heading {
  font-family: 'Playfair Display', serif;
  font-size: 50px;
  font-weight: 500;
  letter-spacing: -0.25px;
  color: #1f1f1f;
}

.adv-line {
  width: 86px;
  height: 1px;
  background: #c9b37e;
  margin: 14px auto 62px;
  transform-origin: center;
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.adv-card {
  position: relative;
  background: #ece9e3;
  border-radius: 20px;
  padding: 70px 28px 30px;
  text-align: left;
  box-shadow: 0 12px 30px rgba(21, 21, 21, 0.06);
  transition: background-color 0.5s ease, color 0.5s ease, box-shadow 0.5s ease, transform 0.5s ease;
  will-change: transform;
  transform-style: preserve-3d;
}

.adv-icon-wrap {
  position: absolute;
  top: -26px;
  left: 26px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f7f5f1;
  border: 1px solid rgba(31, 31, 31, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2a2a2a;
  transition: background-color 0.45s ease, color 0.45s ease, transform 0.45s ease, border-color 0.45s ease;
  will-change: transform;
}

.adv-icon {
  width: 24px;
  height: 24px;
}

.adv-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  color: #1f1f1f;
  margin-bottom: 12px;
  transition: color 0.45s ease, transform 0.45s ease;
}

.adv-card p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(31, 31, 31, 0.75);
  transition: color 0.45s ease, opacity 0.45s ease;
}

.adv-card:hover,
.adv-card.is-active {
  background: #8f7748;
  transform: translateY(-10px);
  box-shadow: 0 24px 44px rgba(34, 28, 17, 0.2);
}

.adv-card:hover .adv-icon-wrap,
.adv-card.is-active .adv-icon-wrap {
  background: #755c34;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.adv-card:hover h3,
.adv-card.is-active h3 {
  color: #ffffff;
  transform: translateY(-1px);
}

.adv-card:hover p,
.adv-card.is-active p {
  color: rgba(255, 255, 255, 0.82);
  opacity: 0.85;
}

@media (max-width: 1300px) {
  .advantage-section {
    padding: 130px 70px 150px;
  }

  .adv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
  }
}

@media (max-width: 768px) {
  .advantage-section {
    padding: 110px 24px 120px;
  }

  .adv-heading {
    font-size: 38px;
  }

  .adv-line {
    margin-bottom: 54px;
  }

  .adv-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .adv-card {
    padding: 68px 24px 28px;
  }
}

/* ==============================
   BEGIN YOUR JOURNEY — PAGE 5
   ============================== */

.journey-section {
  min-height: 70vh;
  padding: 70px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f1ed;
  border-top: 1px solid #e2ddd5;
}

.journey-container {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.journey-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.2px;
  color: #2b2c31;
  margin-bottom: 24px;
}

.journey-text {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(14px, 1.35vw, 24px);
  line-height: 1.62;
  color: #4f5a68;
  font-weight: 400;
}

.journey-btn {
  margin-top: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  height: 74px;
  padding: 0 38px;
  border-radius: 50px;
  text-decoration: none;
  font-size: clamp(20px, 1.7vw, 30px);
  font-weight: 400;
  color: #ffffff;
  background: linear-gradient(145deg, #2f3137 0%, #1f2024 100%);
  box-shadow: 0 14px 26px rgba(22, 22, 22, 0.16);
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.journey-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 36px rgba(22, 22, 22, 0.24), 0 0 18px rgba(58, 59, 63, 0.18);
  filter: brightness(1.02);
}

@media (max-width: 1024px) {
  .journey-section {
    min-height: 70vh;
  }
}

@media (max-width: 768px) {
  .journey-section {
    min-height: auto;
    padding: 86px 18px 96px;
  }

  .journey-heading {
    margin-bottom: 18px;
  }

  .journey-text {
    font-size: 19px;
    line-height: 1.6;
  }

  .journey-btn {
    margin-top: 40px;
    min-width: 246px;
    height: 62px;
    font-size: 20px;
    padding: 0 28px;
  }
}

/* ==============================
   PAGE 6 — PREMIUM FOOTER
   ============================== */

.reia-footer {
  background: #ece8e0;
  padding: 84px 90px 28px;
}

.footer-top {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 76px;
}

.footer-brand {
  max-width: 700px;
}

.footer-logo {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 600;
  color: #232427;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.footer-logo-mark {
  height: 90px;
  width: 90px;
  border-radius: 50%;
  border: 1px solid rgba(35, 36, 39, 0.16);
  object-fit: cover;
  padding: 2px;
  background: rgba(255, 255, 255, 0.9);
}

.footer-logo-text {
  font-size: 34px;
  letter-spacing: 0.4px;
}

.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(35, 36, 39, 0.72);
  max-width: 380px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 1.6px;
  color: #3b3c40;
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  text-decoration: none;
  color: rgba(40, 41, 45, 0.78);
  font-size: 11px;
  letter-spacing: 0.1px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-col p {
  margin-bottom: 8px;
  font-size: 11px;
  line-height: 1.4;
  color: rgba(40, 41, 45, 0.78);
}

.social-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(59, 60, 64, 0.26);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #3b3c40;
  flex: 0 0 auto;
  transition: all 0.25s ease;
}

.footer-social a:hover .social-icon {
  animation: popPulse 0.6s ease forwards;
  border-color: #c9b37e;
  color: #c9b37e;
}

.footer-social a:hover {
  color: #232427;
  transform: translateY(-1px);
}

@keyframes popPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.28); }
  100% { transform: scale(1); }
}

.footer-social a {
  align-items: flex-start;
}

.footer-col a:hover {
  color: #232427;
}

.footer-bottom {
  max-width: 1400px;
  margin: 36px auto 0;
  padding-top: 12px;
  border-top: 1px solid rgba(37, 38, 41, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-bottom p {
  font-size: 10px;
  color: rgba(37, 38, 41, 0.7);
  letter-spacing: 0.28px;
}

@media (max-width: 1024px) {
  .reia-footer {
    padding: 54px 18px 18px;
  }
  .footer-top {
    gap: 32px;
    grid-template-columns: 1fr;
  }
  .footer-columns {
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .reia-footer {
    padding: 38px 8px 10px;
  }
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .footer-col h4 {
    margin-bottom: 10px;
  }
  .footer-col a {
    margin-bottom: 7px;
  }
  .footer-bottom {
    margin-top: 22px;
    padding-top: 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
/* Overlay for hero for better text contrast */
.consult-hero {
  position: relative;
  background: url('https://images.unsplash.com/photo-1501183638710-841dd1904471') center/cover no-repeat;
}
.consult-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,20,20,0.62) 60%, rgba(20,20,20,0.32) 100%);
  z-index: 1;
}
.consult-hero__inner {
  position: relative;
  z-index: 2;
}

@media (max-width: 1200px) {
  .nav {
    padding: 0 36px;
  }

  .nav-links a {
    margin-left: 22px;
  }
}

@media (max-width: 900px) {
  .nav {
    height: auto;
    min-height: 90px;
    padding: 14px 18px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }

  .logo {
    font-size: 24px;
  }

  .logo-img {
    height: 36px;
  }

  .nav-links {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .nav-links a {
    margin-left: 0;
    font-size: 14px;
  }

  .portfolio-live__tabs {
    gap: 28px;
  }
}
