/* ============================================
   ATLAS ONE LLC - BRAND SYSTEM
   ============================================ */

/* --- TYPOGRAPHY --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  /* Colors */
  --navy: #122134;
  --gold: #f1bb67;
  --off-white: #f7f5ef;
  --slate: #cbd5e1;
  --charcoal: #0b1220;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  
  /* Max width */
  --max-width: 1200px;
  --max-width-text: 800px;
}

/* --- RESET & BASE --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy);
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  color: var(--navy);
}

.section-title, h2, h3 {
  color: var(--navy);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: var(--spacing-sm);
  max-width: var(--max-width-text);
}

a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.22s ease, opacity 0.22s ease;
}

a:hover {
  opacity: 0.7;
}

/* --- LAYOUT --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-narrow {
  max-width: var(--max-width-text);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-xl) 0;
}

.section-off-white {
  background-color: var(--off-white);
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
}

.section-divider {
  border-top: 1px solid rgba(18, 33, 52, 0.14);
}

.section-abstract-01 {
  position: relative;
  background: url("../../images/backgounds/bg-abstract-atlasone-01.jpg") center/cover no-repeat;
}

.section-abstract-01::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 18, 32, 0.86);
  backdrop-filter: blur(0px);
}

.section-abstract-01 > * {
  position: relative;
  z-index: 1;
}

.section-abstract-01 .section-title,
.section-abstract-01 .section-intro,
.section-abstract-01 .section-intro p,
.section-abstract-01 .icon-highlight h4 {
  color: rgba(247, 245, 239, 0.96);
}

/* --- WHERE WE INVEST (HOME ES) --- */
.where-invest-section {
  position: relative;
  background-image: url("../../images/backgounds/florida-cinematic-bg.jpg");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
  background-color: transparent;
}

.where-invest-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 33, 52, 0.82);
  z-index: 0;
}

.where-invest-section > .container {
  position: relative;
  z-index: 1;
}

.where-invest-section > .container::before {
  content: "";
  position: absolute;
  inset: 0;
  margin-inline: auto;
  max-width: 960px;
  background: radial-gradient(circle at center, rgba(18, 33, 52, 0.4) 0%, rgba(18, 33, 52, 0) 60%);
  z-index: 0;
}

.where-invest-section > .container > * {
  position: relative;
  z-index: 1;
}

.where-invest-section .section-title {
  color: rgba(247, 245, 239, 0.96);
}

.where-invest-section .section-intro {
  color: rgba(247, 245, 239, 0.86);
}

.where-invest-section .divider {
  background-color: var(--gold);
}

.where-invest-section .locations {
  margin-top: var(--spacing-md);
}

.where-invest-section .locations-list {
  justify-content: center;
  gap: var(--spacing-sm);
}

.where-invest-section .location-tag {
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(241, 187, 103, 0.28);
  background-color: rgba(255, 255, 255, 0.05);
  color: rgba(225, 220, 184, 0.95);
  font-weight: 500;
  cursor: default;
  transition: background-color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  box-shadow: none;
}

.where-invest-section .location-tag:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(241, 187, 103, 0.45);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.where-invest-section .location-tag:focus-visible {
  outline: 2px solid rgba(241, 187, 103, 0.55);
  outline-offset: 2px;
}

.where-invest-section .location-tag.is-active {
  background-color: rgba(241, 187, 103, 0.16);
  border-color: rgba(241, 187, 103, 0.75);
  color: rgba(255, 255, 255, 0.98);
  transform: none;
  box-shadow: none;
}

.where-invest-section .locations-support {
  margin-top: var(--spacing-sm);
  text-align: center;
  color: rgba(225, 220, 184, 0.8);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.where-invest-section .text-center.mt-lg {
  margin-top: var(--spacing-md);
}

.where-invest-section .btn-primary {
  background-color: var(--gold);
  color: var(--navy);
  padding: 0.9rem 1.9rem;
  border-radius: 999px;
  min-width: 260px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.22);
}

.where-invest-section .btn-primary:hover {
  background-color: rgba(241, 187, 103, 0.95);
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.3);
}

.where-invest-section .btn-primary:focus-visible {
  outline: 2px solid rgba(241, 187, 103, 0.8);
  outline-offset: 3px;
}

/* --- HEADER --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  backdrop-filter: none;
  border-bottom: none;
  z-index: 1000;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.header .logo img {
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 3px rgba(0, 0, 0, 0.4));
}

.header .nav a,
.header .lang-toggle,
.header .lang-toggle a {
  color: rgba(247, 245, 239, 0.9);
}

.header .lang-toggle a.active {
  border-bottom: 1px solid var(--gold);
}

.header-scrolled {
  background-color: rgba(18, 33, 52, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(18, 33, 52, 0.32);
  box-shadow: 0 8px 24px rgba(11, 18, 32, 0.4);
}

.header-scrolled .nav a,
.header-scrolled .lang-toggle,
.header-scrolled .lang-toggle a {
  color: rgba(247, 245, 239, 0.95);
}

.header-scrolled .logo img {
  filter: none;
  height: 72px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-sm) var(--spacing-md);
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  height: 72px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  gap: var(--spacing-md);
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav li {
  display: flex;
  align-items: center;
}

.nav a {
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0;
  position: relative;
  line-height: 1.4;
  display: flex;
  align-items: center;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.4;
}

.lang-toggle a {
  opacity: 0.5;
}

.lang-toggle a.active {
  opacity: 1;
  border-bottom: 1px solid var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background-color 0.24s ease, color 0.24s ease, border-color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
  text-decoration: none;
  line-height: 1.4;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--navy);
  transition: background-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.btn-primary:hover {
  background-color: rgba(241, 187, 103, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(18, 33, 52, 0.12);
}

.btn-outline {
  background-color: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background-color: var(--navy);
  color: #ffffff;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: rgba(247, 245, 239, 0.9);
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  align-items: center;
  justify-content: center;
  height: 100%;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
}

/* --- HERO --- */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--charcoal);
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  padding: 0 var(--spacing-md);
}

.hero-logo {
  margin-bottom: 22px;
}

.hero-logo img {
  width: 450px;
  max-width: 80vw;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero-logo {
    margin-bottom: 18px;
  }
  
  .hero-logo img {
    width: 300px;
  }
}

.hero-subtitle {
  margin-top: 14px;
  font-size: 0.95rem;
  line-height: 1.85;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
  max-width: 720px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 0.88rem;
    line-height: 1.8;
    max-width: 90vw;
  }
}

.hero-ctas {
  position: absolute;
  bottom: var(--spacing-lg);
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 var(--spacing-md);
  z-index: 2;
}

.hero-cta {
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
  padding: var(--spacing-sm) var(--spacing-md);
  border-bottom: 2px solid var(--gold);
  transition: color 0.24s ease, opacity 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.hero-cta:hover {
  opacity: 1;
  border-bottom-color: #ffffff;
}

@media (max-width: 768px) {
  .hero-cta {
    font-size: 0.88rem;
  }
}

/* --- SECTIONS --- */
.section-title {
  text-align: center;
  margin-bottom: var(--spacing-sm);
  margin-top: 0;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: rgba(18, 33, 52, 0.7);
  margin-bottom: var(--spacing-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-intro {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-quienes {
  position: relative;
}

.section-quienes .section-title {
  position: relative;
  padding-top: 1rem;
}

.section-quienes .section-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: var(--gold);
  opacity: 0.6;
}

.section-quienes .intro-lead {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: var(--spacing-md);
  opacity: 1;
  letter-spacing: -0.01em;
}

.section-quienes .intro-support {
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(18, 33, 52, 0.7);
  margin-bottom: var(--spacing-sm);
  opacity: 0.8;
}

.section-quienes .section-intro {
  margin-bottom: var(--spacing-sm);
}

.section-quienes .text-center {
  margin-top: var(--spacing-md);
}

/* --- CARDS --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.card {
  background-color: #ffffff;
  padding: 0;
  border: 1px solid rgba(18, 33, 52, 0.18);
  box-shadow: 0 4px 20px rgba(11, 18, 32, 0.04);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--gold);
  opacity: 0;
  transition: opacity 0.32s ease;
  z-index: 1;
}

.card:hover::before {
  opacity: 0.5;
}

.card-primary {
  border: 1px solid rgba(18, 33, 52, 0.22);
  box-shadow: 0 6px 24px rgba(11, 18, 32, 0.05);
}

.card-primary:hover {
  border-color: rgba(241, 187, 103, 0.65);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(11, 18, 32, 0.09);
}

.card-primary:hover::before {
  opacity: 0.7;
}

.card-supporting {
  border: 1px solid rgba(18, 33, 52, 0.14);
  box-shadow: 0 3px 16px rgba(11, 18, 32, 0.03);
}

.card-supporting:hover {
  border-color: rgba(241, 187, 103, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(11, 18, 32, 0.06);
}

.card-supporting:hover::before {
  opacity: 0.4;
}

.card-image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background-color: var(--off-white);
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.36s ease, opacity 0.32s ease;
  display: block;
}

.card:hover .card-image-wrapper {
  transition: transform 0.28s ease;
}

.card:hover .card-image {
  transform: scale(1.015);
  opacity: 0.96;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-xs);
  color: var(--navy);
  padding: var(--spacing-md) var(--spacing-md) 0 var(--spacing-md);
  position: relative;
  padding-top: calc(var(--spacing-md) + 0.5rem);
  font-weight: 600;
}

.card-title::after {
  content: '';
  position: absolute;
  top: var(--spacing-md);
  left: var(--spacing-md);
  width: 28px;
  height: 1.5px;
  background-color: var(--gold);
  opacity: 0.6;
  transition: opacity 0.32s ease, width 0.32s ease;
}

.card-primary .card-title::after {
  opacity: 0.65;
}

.card-supporting .card-title::after {
  opacity: 0.5;
}

.card:hover .card-title::after {
  opacity: 0.85;
  width: 36px;
}

.card-primary:hover .card-title::after {
  opacity: 0.95;
  width: 38px;
}

.card-text {
  color: rgba(18, 33, 52, 0.7);
  margin-bottom: var(--spacing-sm);
  padding: 0 var(--spacing-md);
  flex-grow: 1;
}

.card > *:last-child {
  padding-bottom: var(--spacing-md);
}

/* --- ICON HIGHLIGHTS --- */
.icon-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.icon-highlight {
  text-align: center;
  padding: var(--spacing-md);
}

.icon-highlight img {
  width: 60px;
  height: 60px;
  margin-bottom: var(--spacing-sm);
  filter: brightness(0) saturate(100%) invert(75%) sepia(48%) saturate(1234%) hue-rotate(340deg) brightness(98%) contrast(89%);
}

.icon-highlight h4 {
  font-size: 1.1rem;
  color: var(--navy);
}

/* --- INVESTMENT OPTIONS --- */
.investment-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
  align-items: stretch;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.investment-card {
  background-color: #ffffff;
  padding: var(--spacing-md);
  border: 1px solid rgba(18, 33, 52, 0.2);
  box-shadow: 0 2px 16px rgba(11, 18, 32, 0.05), 0 1px 4px rgba(11, 18, 32, 0.03);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.investment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--gold);
  opacity: 0;
  transition: opacity 0.32s ease;
  z-index: 1;
}

.investment-card:hover::before {
  opacity: 0.5;
}

.investment-card-primary {
  border: 1px solid rgba(18, 33, 52, 0.18);
  box-shadow: 0 2px 16px rgba(11, 18, 32, 0.05), 0 1px 4px rgba(11, 18, 32, 0.03);
}

.investment-card-primary:hover {
  border-color: rgba(18, 33, 52, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(11, 18, 32, 0.07), 0 2px 8px rgba(11, 18, 32, 0.04);
}

.investment-card-primary:hover::before {
  opacity: 0.4;
}

.investment-card-featured {
  border: 1px solid rgba(18, 33, 52, 0.26);
  box-shadow: 0 4px 20px rgba(11, 18, 32, 0.06), 0 2px 6px rgba(11, 18, 32, 0.04);
}

.investment-card-featured::before {
  opacity: 0.35;
}

.investment-card-featured:hover {
  border-color: rgba(18, 33, 52, 0.36);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(11, 18, 32, 0.09), 0 3px 10px rgba(11, 18, 32, 0.05);
}

.investment-card-featured:hover::before {
  opacity: 0.75;
}

.investment-card h3 {
  color: var(--navy);
  margin-bottom: var(--spacing-sm);
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
  padding-top: 0.5rem;
}

.investment-card h3::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 1.5px;
  background-color: var(--gold);
  opacity: 0.6;
  transition: opacity 0.32s ease, width 0.32s ease;
}

.investment-card-featured h3::after {
  opacity: 0.75;
  width: 32px;
}

.investment-card:hover h3::after {
  opacity: 0.85;
  width: 36px;
}

.investment-card-featured:hover h3::after {
  opacity: 0.95;
  width: 40px;
}

.investment-card ul {
  list-style: none;
  margin-bottom: var(--spacing-md);
  flex-grow: 1;
  padding: 0;
}

.investment-card li {
  padding: 0.65rem 0;
  color: rgba(18, 33, 52, 0.75);
  border-bottom: 1px solid rgba(203, 213, 225, 0.3);
  font-size: 0.95rem;
  line-height: 1.65;
  font-weight: 400;
}

.investment-card li:last-child {
  border-bottom: none;
}

.investment-card li .highlight-number {
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.investment-card .btn {
  width: 100%;
  margin-top: auto;
  padding-top: var(--spacing-sm);
  padding-bottom: var(--spacing-sm);
  border: 1px solid transparent;
  transition: background-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.investment-card .btn:hover {
  background-color: rgba(241, 187, 103, 0.92);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(18, 33, 52, 0.14);
  border-color: rgba(18, 33, 52, 0.08);
}

.legal-note {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(18, 33, 52, 0.68);
  margin-top: var(--spacing-lg);
  margin-left: auto;
  margin-right: auto;
  padding-top: var(--spacing-md);
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  position: relative;
  display: block;
  max-width: 100%;
}

.legal-note::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background-color: rgba(18, 33, 52, 0.18);
}

/* --- PROCESS --- */
.process-grid {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-md);
  position: relative;
  padding: var(--spacing-md) 0;
}

.process-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: var(--spacing-md);
  position: relative;
  flex-wrap: wrap;
}

.process-row-1 {
  padding-bottom: var(--spacing-lg);
}

.process-row-1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - var(--spacing-md) * 2);
  max-width: 900px;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(18, 33, 52, 0.1) 10%, rgba(18, 33, 52, 0.1) 90%, transparent 100%);
  z-index: 0;
}

.process-row-2 {
  padding-top: var(--spacing-lg);
  justify-content: center;
}

.process-item {
  text-align: center;
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 100%;
  max-width: 280px;
  min-width: 220px;
}

.process-image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  margin-bottom: var(--spacing-sm);
  overflow: hidden;
  border-radius: 2px;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-item.is-visible .process-image-wrapper {
  opacity: 1;
  transform: translateX(0);
}

.process-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(18, 33, 52, 0.1);
  pointer-events: none;
  z-index: 1;
}

.process-text-content {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.12s, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.12s;
}

.process-item.is-visible .process-text-content {
  opacity: 1;
  transform: translateX(0);
}

.process-number {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  background-color: rgba(18, 33, 52, 0.85);
  padding: 4px 8px;
  border-radius: 2px;
  line-height: 1.2;
  margin-bottom: var(--spacing-xs);
}

.process-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}

.process-item h4 {
  color: var(--navy);
  margin-bottom: var(--spacing-xs);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 0;
}

.process-subtext {
  color: rgba(18, 33, 52, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

.process-trust-statement {
  text-align: center;
  font-size: 1.08rem;
  color: rgba(18, 33, 52, 0.8);
  font-weight: 500;
  line-height: 1.65;
  margin-top: var(--spacing-md);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--spacing-md);
}

@media (min-width: 768px) {
  .process-row-1::after {
    display: block;
  }
}

@media (max-width: 767px) {
  .process-row {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
  }
  
  .process-row-1 {
    padding-bottom: var(--spacing-md);
  }
  
  .process-row-1::after {
    display: none;
  }
  
  .process-row-2 {
    padding-top: 0;
  }
  
  .process-item {
    max-width: 100%;
  }
  
  .process-image-wrapper {
    transform: translateY(20px);
  }
  
  .process-item.is-visible .process-image-wrapper {
    transform: translateY(0);
  }
  
  .process-text-content {
    transform: translateY(20px);
  }
  
  .process-item.is-visible .process-text-content {
    transform: translateY(0);
  }
  
  .process-trust-statement {
    font-size: 1rem;
    margin-top: var(--spacing-md);
  }
}

/* --- LOCATIONS --- */
.locations {
  text-align: center;
  margin-top: var(--spacing-lg);
}

.locations-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-sm);
  margin: var(--spacing-md) 0;
}

.location-tag {
  padding: var(--spacing-xs) var(--spacing-sm);
  background-color: var(--off-white);
  border: 1px solid var(--slate);
  color: var(--navy);
  font-weight: 500;
}

/* --- PROJECTS --- */
/* --- PROJECTS SECTION (PREMIUM LEDGER) --- */
.projects-ledger {
  position: relative;
}

.projects-ledger > .container {
  position: relative;
  z-index: 1;
}

.section-projects {
  position: relative;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.project-card {
  background-color: #ffffff;
  border: 1px solid rgba(18, 33, 52, 0.18);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(11, 18, 32, 0.04);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, opacity 0.55s ease-out;
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(16px);
}

.project-card.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.project-card:nth-child(1).reveal-visible {
  transition-delay: 0s;
}

.project-card:nth-child(2).reveal-visible {
  transition-delay: 0.12s;
}

.project-card:nth-child(3).reveal-visible {
  transition-delay: 0.24s;
}

@media (min-width: 769px) {
  .project-card:hover {
    border-color: rgba(241, 187, 103, 0.45);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(11, 18, 32, 0.15);
  }
}

.project-image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background-color: rgba(18, 33, 52, 0.05);
}

.project-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 45%, rgba(18, 33, 52, 0.18) 100%);
  pointer-events: none;
  z-index: 1;
}

.project-status-stamp {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(18, 33, 52, 0.75);
  border: 1px solid rgba(241, 187, 103, 0.55);
  color: rgba(241, 187, 103, 0.98);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
  letter-spacing: 0.02em;
  backdrop-filter: blur(4px);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 0;
}

@media (min-width: 769px) {
  .project-card:hover .project-image-wrapper img {
    transform: scale(1.03);
  }
}

.project-card-content {
  padding: var(--spacing-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.project-meta-pills {
  display: flex;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-sm);
  flex-wrap: wrap;
}

.project-pill {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(241, 187, 103, 0.35);
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.project-headline {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--spacing-sm);
  line-height: 1.4;
}

.project-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-sm) var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.project-details-grid .project-detail-item:nth-child(3) {
  grid-column: 1 / -1;
}

.project-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.project-detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(18, 33, 52, 0.6);
  line-height: 1.3;
}

.project-detail-value {
  font-size: 0.95rem;
  color: rgba(18, 33, 52, 0.85);
  font-weight: 500;
  line-height: 1.4;
}

.project-result {
  margin-top: auto;
  padding: var(--spacing-md);
  background: linear-gradient(135deg, rgba(241, 187, 103, 0.12) 0%, rgba(241, 187, 103, 0.06) 100%);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  margin-bottom: var(--spacing-sm);
  box-shadow: 0 2px 12px rgba(241, 187, 103, 0.1);
}

.project-result-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(18, 33, 52, 0.7);
  margin-bottom: 0.4rem;
}

.project-result-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.project-link {
  display: inline-block;
  font-size: 0.9rem;
  color: rgba(18, 33, 52, 0.7);
  text-decoration: none;
  margin-top: var(--spacing-xs);
  transition: color 0.28s ease, opacity 0.28s ease;
  align-self: flex-start;
  cursor: pointer;
}

@media (min-width: 769px) {
  .project-card:hover .project-link {
    color: var(--gold);
    opacity: 1;
  }
}

.project-link:focus-visible {
  outline: 2px solid rgba(241, 187, 103, 0.6);
  outline-offset: 2px;
  border-radius: 2px;
}

@media (min-width: 1025px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }
}

@media (max-width: 768px) {
  
  .projects-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .project-image-wrapper {
    height: 240px;
  }
  
  .project-headline {
    font-size: 1.1rem;
  }
  
  .project-result-value {
    font-size: 1.15rem;
  }
}

/* ========================================
   CASE STUDY LAYOUT (Premium Projects Section)
   ======================================== */

.case-studies-subheading {
  text-align: center !important;
  font-size: 0.95rem;
  color: rgba(18, 33, 52, 0.65);
  margin: var(--spacing-sm) auto var(--spacing-md);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.5;
  display: block;
  width: 100%;
  max-width: 100%;
}

.case-studies {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--spacing-md);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

.case-studies.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.case-study {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  background-color: #ffffff;
  border: 1px solid rgba(18, 33, 52, 0.18);
  border-left: 2px solid var(--gold);
  border-radius: 8px;
  padding: var(--spacing-xl);
  box-shadow: 0 4px 20px rgba(11, 18, 32, 0.04);
  transition: box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
}

.case-study:hover {
  border-color: rgba(241, 187, 103, 0.35);
  box-shadow: 0 8px 32px rgba(11, 18, 32, 0.08);
}

.case-study-alternate {
  grid-template-columns: 1fr 1fr;
}

.case-study-alternate .case-study-media {
  order: -1;
}

.case-study-details {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.case-study-header {
  display: flex;
  gap: var(--spacing-xs);
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.case-study-status {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background-color: rgba(18, 33, 52, 0.08);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(18, 33, 52, 0.2);
}

.case-study-strategy {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(241, 187, 103, 0.35);
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.case-study-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0.25rem 0 0.5rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.case-study-address {
  font-size: 0.85rem;
  color: rgba(18, 33, 52, 0.65);
  margin: 0 0 var(--spacing-sm);
  line-height: 1.5;
  font-weight: 400;
}

.case-study-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-sm) var(--spacing-lg);
  margin: var(--spacing-sm) 0;
  padding: var(--spacing-md) 0;
  border-top: 1px solid rgba(18, 33, 52, 0.1);
  border-bottom: 1px solid rgba(18, 33, 52, 0.1);
}

.case-study-spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.case-study-spec-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(18, 33, 52, 0.65);
  line-height: 1.3;
}

.case-study-spec-value {
  font-size: 0.95rem;
  color: rgba(18, 33, 52, 0.9);
  font-weight: 500;
  line-height: 1.4;
}

.case-study-outcome {
  margin-top: var(--spacing-sm);
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(241, 187, 103, 0.25);
}

.case-study-outcome-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(18, 33, 52, 0.7);
  margin-bottom: 0.5rem;
}

.case-study-outcome-value {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.3;
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
}

.case-study-outcome-note {
  font-size: 0.9rem;
  color: rgba(18, 33, 52, 0.7);
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}

.case-study-media {
  display: flex;
  align-items: stretch;
}

.case-study-image-grid {
  display: grid;
  width: 100%;
}

.case-study-image-grid-2 {
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-sm);
}

.case-study-image-grid-stack {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--spacing-sm);
  height: 100%;
  min-height: 0;
}

.case-study-image-grid-hero {
  grid-template-columns: 1fr;
  grid-template-rows: 1.5fr 1fr;
  gap: var(--spacing-sm);
  height: 100%;
  min-height: 0;
}

.case-study-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-sm);
  min-height: 0;
  height: 100%;
}

.case-study-image-item {
  position: relative;
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(18, 33, 52, 0.12);
  background-color: rgba(18, 33, 52, 0.03);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  display: flex;
}

.case-study-image-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 18, 32, 0.12);
}

.case-study-image-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.case-study-image-item .case-study-image-trigger {
  width: 100%;
  height: 100%;
}

.case-study-image-grid-2 .case-study-image-item {
  aspect-ratio: 4 / 3;
}

.case-study-image-grid-stack .case-study-image-item {
  min-height: 0;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.case-study-image-grid-stack .case-study-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  flex: 1;
}

.case-study-image-hero {
  min-height: 0;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.case-study-image-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  flex: 1;
}

.case-study-image-row .case-study-image-item {
  height: 100%;
  min-height: 200px;
  display: flex;
  overflow: hidden;
}

.case-study-image-row .case-study-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  flex: 1;
}

.case-study-image-chip {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(18, 33, 52, 0.85);
  color: rgba(241, 187, 103, 0.98);
  padding: 0.35rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(241, 187, 103, 0.3);
  z-index: 2;
}

.case-study-image-trigger {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  transition: transform 0.28s ease;
}

.case-study-image-trigger:hover {
  transform: translateY(-2px);
}

.case-study-image-trigger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 6px;
}

.case-study-image-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.case-study-image-expand {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 33, 52, 0.5);
  color: rgba(241, 187, 103, 0.85);
  border: 1px solid rgba(241, 187, 103, 0.25);
  border-radius: 5px;
  backdrop-filter: blur(4px);
  z-index: 3;
  opacity: 0.7;
  transition: opacity 0.28s ease, background 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
  pointer-events: none;
}

.case-study-image-trigger:hover .case-study-image-expand,
.case-study-image-trigger:focus .case-study-image-expand {
  opacity: 0.95;
  background: rgba(18, 33, 52, 0.75);
  border-color: rgba(241, 187, 103, 0.4);
  transform: scale(1.05);
}

.case-study-image-expand svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

/* ========================================
   IMAGE LIGHTBOX MODAL
   ======================================== */

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.image-lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(4px);
}

.image-lightbox-container {
  position: relative;
  z-index: 1;
  max-width: 95vw;
  max-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xl);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.image-lightbox.active .image-lightbox-container {
  transform: scale(1);
}

.image-lightbox-close {
  position: fixed;
  top: clamp(16px, calc(env(safe-area-inset-top, 0px) + 20px), 40px);
  right: clamp(16px, calc(env(safe-area-inset-right, 0px) + 20px), 40px);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 33, 52, 0.85);
  color: rgba(241, 187, 103, 0.95);
  border: 1px solid rgba(241, 187, 103, 0.4);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.28s ease, transform 0.28s ease, opacity 0.28s ease;
  z-index: 10000;
  padding: 0;
}

.image-lightbox-close:hover,
.image-lightbox-close:focus {
  background: rgba(18, 33, 52, 0.95);
  transform: scale(1.05);
  outline: none;
}

.image-lightbox-close:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.image-lightbox-close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.image-lightbox-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  max-height: 100%;
}

.image-lightbox-image {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  background: rgba(18, 33, 52, 0.05);
}

.image-lightbox-caption {
  margin-top: var(--spacing-md);
  font-size: 0.9rem;
  color: rgba(241, 187, 103, 0.9);
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .image-lightbox-container {
    padding: var(--spacing-md);
    max-width: 98vw;
    padding-top: calc(var(--spacing-md) + env(safe-area-inset-top, 0px));
    padding-right: calc(var(--spacing-md) + env(safe-area-inset-right, 0px));
  }

  .image-lightbox-close {
    top: calc(env(safe-area-inset-top, 0px) + 20px);
    right: calc(env(safe-area-inset-right, 0px) + 20px);
    width: 44px;
    height: 44px;
  }

  .image-lightbox-close svg {
    width: 18px;
    height: 18px;
  }

  .image-lightbox-image {
    max-height: 80vh;
  }

  .image-lightbox-caption {
    font-size: 0.85rem;
    margin-top: var(--spacing-sm);
  }
}

/* Responsive: Stack columns on tablet/mobile */
@media (max-width: 900px) {
  .case-studies {
    padding: 0 var(--spacing-sm);
  }

  .case-study {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
  }

  .case-study-alternate {
    grid-template-columns: 1fr;
  }

  .case-study-alternate .case-study-media {
    order: 0;
  }

  .case-study-media {
    order: -1;
  }

  .case-study-image-grid-2 {
    grid-template-columns: 1fr;
  }

  .case-study-image-grid-stack {
    grid-template-rows: auto auto;
    height: auto;
    min-height: 400px;
  }

  .case-study-image-grid-stack .case-study-image-item {
    min-height: 200px;
    max-height: 300px;
  }

  .case-study-image-grid-hero {
    grid-template-rows: auto auto;
    height: auto;
    min-height: 400px;
  }

  .case-study-image-hero {
    min-height: 250px;
    max-height: 350px;
  }

  .case-study-image-row {
    grid-template-columns: 1fr;
    height: auto;
  }

  .case-study-image-row .case-study-image-item {
    min-height: 180px;
    max-height: 250px;
  }

  .case-study-title {
    font-size: 1.3rem;
  }

  .case-study-specs {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm) var(--spacing-md);
  }
  
  .case-study-spec-item:nth-child(3) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .case-studies {
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    padding: 0 var(--spacing-xs);
  }

  .case-study {
    padding: var(--spacing-md);
  }

  .case-study-title {
    font-size: 1.2rem;
  }

  .case-study-specs {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .case-study-outcome-value {
    font-size: 1.15rem;
  }

  .case-study-image-chip {
    top: 0.5rem;
    left: 0.5rem;
    padding: 0.3rem 0.6rem;
    font-size: 0.65rem;
  }

  .case-study-image-grid-hero {
    min-height: 350px;
  }

  .case-study-image-hero {
    min-height: 200px;
    max-height: 280px;
  }

  .case-study-image-row .case-study-image-item {
    min-height: 150px;
    max-height: 220px;
  }
}

.project-link:focus-visible {
  outline: 2px solid rgba(241, 187, 103, 0.6);
  outline-offset: 2px;
  border-radius: 2px;
}

/* --- PROJECT MODAL --- */
.project-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.project-modal.active {
  opacity: 1;
  visibility: visible;
}

.project-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
}

.project-modal-container {
  position: relative;
  width: 100%;
  max-width: 920px;
  max-height: 90vh;
  margin: var(--spacing-md);
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.project-modal.active .project-modal-container {
  transform: scale(1);
}

.project-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  color: var(--navy);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.project-modal-close:hover {
  background: #ffffff;
  transform: scale(1.1);
}

.project-modal-content {
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  overflow-y: auto;
}

.project-modal-image-wrapper {
  width: 100%;
  height: 320px;
  overflow: hidden;
  background-color: rgba(18, 33, 52, 0.05);
}

.project-modal-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-modal-body {
  padding: var(--spacing-lg);
}

.project-modal-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--spacing-lg);
  line-height: 1.3;
}

.project-modal-section {
  margin-bottom: var(--spacing-lg);
}

.project-modal-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}

.project-modal-summary {
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-modal-summary li {
  position: relative;
  padding-left: var(--spacing-md);
  margin-bottom: var(--spacing-xs);
  color: rgba(18, 33, 52, 0.8);
  line-height: 1.6;
}

.project-modal-summary li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.project-modal-data {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--spacing-xs) var(--spacing-md);
  margin: 0;
}

.project-modal-data dt {
  font-weight: 600;
  color: rgba(18, 33, 52, 0.7);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.project-modal-data dd {
  margin: 0;
  color: rgba(18, 33, 52, 0.9);
  font-size: 0.95rem;
}

.project-modal-cta {
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(18, 33, 52, 0.1);
  text-align: center;
}

@media (max-width: 768px) {
  .project-modal-container {
    margin: var(--spacing-sm);
    max-height: 95vh;
  }

  .project-modal-image-wrapper {
    height: 240px;
  }

  .project-modal-body {
    padding: var(--spacing-md);
  }

  .project-modal-title {
    font-size: 1.5rem;
  }
}

/* --- TESTIMONIALS --- */
/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
  position: relative;
}

.testimonials-subheading {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(18, 33, 52, 0.7);
  margin-top: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.testimonial {
  background-color: var(--off-white);
  padding: var(--spacing-md);
  border-left: 3px solid var(--gold);
  box-shadow: 0 10px 30px rgba(11, 18, 32, 0.03);
  border-radius: 4px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.testimonial.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial:nth-child(1).reveal-visible {
  transition-delay: 0s;
}

.testimonial:nth-child(2).reveal-visible {
  transition-delay: 0.12s;
}

.testimonial:nth-child(3).reveal-visible {
  transition-delay: 0.24s;
}

.testimonial:nth-child(4).reveal-visible {
  transition-delay: 0.36s;
}

.testimonial-text {
  font-style: italic;
  color: rgba(18, 33, 52, 0.85);
  margin-bottom: var(--spacing-sm);
  line-height: 1.75;
  font-size: 1rem;
}

.t-highlight {
  font-weight: 600;
  color: rgba(18, 33, 52, 0.95);
  background-image: linear-gradient(to bottom, transparent 0%, transparent 90%, rgba(241, 187, 103, 0.25) 90%, rgba(241, 187, 103, 0.25) 100%);
  background-repeat: no-repeat;
  background-size: 100% 1.2em;
  background-position: 0 0.95em;
}

.testimonial-author {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
  margin-top: var(--spacing-xs);
}

.testimonials-context {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(18, 33, 52, 0.6);
  margin-top: var(--spacing-lg);
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  width: 100%;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .testimonials {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }
}

@media (max-width: 768px) {
  .testimonials {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .testimonials-subheading {
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
  }

  .testimonial-text {
    line-height: 1.7;
  }
}

/* --- FINAL CTA --- */
.final-cta {
  position: relative;
  padding: var(--spacing-xl) 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  text-align: center;
}

.final-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--charcoal);
  opacity: 0.8;
}

.final-cta-content {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  color: #ffffff;
  margin-bottom: var(--spacing-sm);
  font-size: 2rem;
}

.final-cta-subline {
  color: rgba(247, 245, 239, 0.85);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--spacing-md);
  align-items: center;
}

.final-cta .btn-cta-primary {
  background-color: var(--gold);
  color: var(--navy);
  font-size: 1rem;
  padding: 0.9rem 2rem;
  font-weight: 600;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.final-cta .btn-cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(241, 187, 103, 0.4);
}

.final-cta .btn-cta-secondary {
  background-color: transparent;
  border: 1px solid rgba(241, 187, 103, 0.55);
  color: rgba(247, 245, 239, 0.95);
  font-size: 0.95rem;
  padding: 0.85rem 1.8rem;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.22s ease, border-color 0.22s ease;
}

.final-cta .btn-cta-secondary:hover {
  background-color: rgba(241, 187, 103, 0.10);
  border-color: rgba(241, 187, 103, 0.75);
}

.final-cta .btn-cta-secondary svg {
  display: inline-block;
}

/* --- CONTACT SECTION --- */
.contact-section {
  background-color: #ffffff;
  padding: clamp(var(--spacing-lg), 5vw, var(--spacing-xl)) 0;
}

.contact-section--page {
  padding-top: clamp(8rem, 12vw, 10rem);
}

.contact-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 48px);
  align-items: start;
  position: relative;
}

.contact-left {
  max-width: 100%;
  position: relative;
  padding-right: clamp(24px, 3vw, 32px);
}

.contact-left::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  background-color: rgba(241, 187, 103, 0.7);
  height: calc(100% - 40px);
  pointer-events: none;
}

.contact-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(241, 187, 103, 0.75);
  margin-bottom: var(--spacing-xs);
  line-height: 1.4;
}

.contact-title {
  font-size: 2.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--spacing-sm);
  line-height: 1.3;
}

.contact-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(18, 33, 52, 0.75);
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.contact-expect-heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
}

.contact-expect-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-lg) 0;
}

.contact-expect-list li {
  position: relative;
  padding-left: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
  color: rgba(18, 33, 52, 0.8);
  line-height: 1.7;
  font-size: 1rem;
}

.contact-expect-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
  font-size: 1.2rem;
}

.contact-privacy {
  font-size: 0.85rem;
  color: rgba(18, 33, 52, 0.5);
  line-height: 1.6;
  margin-top: var(--spacing-lg);
}

.contact-form-panel {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(18, 33, 52, 0.12);
  box-shadow: 0 4px 20px rgba(11, 18, 32, 0.06);
  border-radius: 6px;
  padding: clamp(24px, 3vw, 32px);
}

/* --- FORM --- */
.form {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.contact-form-panel .form {
  max-width: 100%;
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
  color: var(--navy);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--slate);
  background-color: #ffffff;
  color: var(--navy);
  transition: border-color 0.2s ease;
}

.contact-form-panel .form-input,
.contact-form-panel .form-select,
.contact-form-panel .form-textarea {
  padding: 14px 16px;
  border: 1px solid rgba(18, 33, 52, 0.18);
  background-color: rgba(247, 245, 239, 0.4);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.contact-form-panel .form-input:focus,
.contact-form-panel .form-select:focus,
.contact-form-panel .form-textarea:focus {
  background-color: #ffffff;
}

.contact-form-panel .form-input:focus-visible,
.contact-form-panel .form-select:focus-visible,
.contact-form-panel .form-textarea:focus-visible {
  outline: 2px solid rgba(241, 187, 103, 0.60);
  outline-offset: 2px;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(241, 187, 103, 0.1);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form-panel .form-input:focus,
.contact-form-panel .form-select:focus,
.contact-form-panel .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  text-align: center;
  margin-top: var(--spacing-sm);
  font-size: 0.85rem;
  color: rgba(18, 33, 52, 0.6);
  line-height: 1.5;
}

.contact-form-panel .form-group:last-of-type {
  margin-bottom: var(--spacing-sm);
}

.contact-form-panel .btn-primary {
  background-color: var(--gold);
  color: var(--navy);
  font-weight: 600;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.contact-form-panel .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(241, 187, 103, 0.4);
}

.contact-form-panel .btn-primary:focus-visible {
  outline: 2px solid rgba(241, 187, 103, 0.8);
  outline-offset: 2px;
}

.contact-form-panel .form-label {
  font-size: 0.95rem;
}

/* --- CONTACT METHODS --- */
.contact-methods {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(18, 33, 52, 0.1);
}

.contact-method {
  display: flex;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(18, 33, 52, 0.1);
  border-radius: 6px;
  transition: all 0.22s ease;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(241, 187, 103, 0.3);
  box-shadow: 0 2px 8px rgba(11, 18, 32, 0.04);
}

.contact-method-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 33, 52, 0.05);
  border-radius: 6px;
  color: var(--navy);
  transition: all 0.22s ease;
}

.contact-method:hover .contact-method-icon {
  background: rgba(241, 187, 103, 0.15);
  color: var(--navy);
}

.contact-method-icon svg {
  width: 20px;
  height: 20px;
}

.contact-method-content {
  flex: 1;
  min-width: 0;
}

.contact-method-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 var(--spacing-xs) 0;
  line-height: 1.3;
}

.contact-method-description {
  font-size: 0.85rem;
  color: rgba(18, 33, 52, 0.65);
  margin: 0 0 var(--spacing-xs) 0;
  line-height: 1.4;
}

.contact-method-link {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.22s ease;
  position: relative;
  word-break: break-word;
}

.contact-method-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.22s ease;
}

.contact-method:hover .contact-method-link {
  color: var(--navy);
}

.contact-method:hover .contact-method-link::after {
  width: 100%;
}

.contact-method-link:focus-visible {
  outline: 2px solid rgba(241, 187, 103, 0.8);
  outline-offset: 2px;
  border-radius: 2px;
}

/* --- CONTACT PAGE CONTACT METHODS --- */
.contact-methods-page {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
  flex-wrap: wrap;
}

.contact-method-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(18, 33, 52, 0.12);
  border-radius: 6px;
  min-width: 280px;
  max-width: 320px;
  transition: all 0.22s ease;
}

.contact-method-page:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(241, 187, 103, 0.3);
  box-shadow: 0 4px 12px rgba(11, 18, 32, 0.08);
  transform: translateY(-2px);
}

.contact-method-page-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 33, 52, 0.06);
  border-radius: 8px;
  color: var(--navy);
  transition: all 0.22s ease;
  margin-bottom: var(--spacing-xs);
}

.contact-method-page:hover .contact-method-page-icon {
  background: rgba(241, 187, 103, 0.15);
  color: var(--navy);
}

.contact-method-page-icon svg {
  width: 24px;
  height: 24px;
}

.contact-method-page-content {
  width: 100%;
}

.contact-method-page-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 var(--spacing-xs) 0;
  line-height: 1.3;
}

.contact-method-page-description {
  font-size: 0.9rem;
  color: rgba(18, 33, 52, 0.65);
  margin: 0 0 var(--spacing-sm) 0;
  line-height: 1.5;
}

.contact-method-page-link {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.22s ease;
  position: relative;
  word-break: break-word;
}

.contact-method-page-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.22s ease;
}

.contact-method-page:hover .contact-method-page-link {
  color: var(--navy);
}

.contact-method-page:hover .contact-method-page-link::after {
  width: 100%;
}

.contact-method-page-link:focus-visible {
  outline: 2px solid rgba(241, 187, 103, 0.8);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Form status messages */
.hidden {
  display: none;
}

.form-status {
  margin-top: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-status.success {
  color: rgba(18, 33, 52, 0.85);
}

.form-status.error {
  color: #b91c1c;
}

.btn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

@media (max-width: 768px) {
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .contact-left::after {
    display: none;
  }

  .contact-title {
    font-size: 1.9rem;
  }

  .contact-subtitle {
    font-size: 1rem;
  }

  .contact-form-panel {
    padding: var(--spacing-md);
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .contact-methods-page {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
  }
  
  .contact-method-page {
    width: 100%;
    max-width: 100%;
    min-width: auto;
  }
}

/* --- FOOTER --- */
.footer {
  background: var(--navy);
  color: rgba(247, 245, 239, 0.92);
  padding: 0;
}

.footer-divider {
  height: 1px;
  background: rgba(241, 187, 103, 0.20);
  width: 100%;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
  padding: var(--spacing-xl) 0;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column-title {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(247, 245, 239, 0.95);
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}

.footer-brand-tagline {
  color: rgba(247, 245, 239, 0.75);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: var(--spacing-xs);
}

.footer-brand-location {
  color: rgba(247, 245, 239, 0.7);
  font-size: 0.85rem;
}

.footer-contact-item {
  margin-bottom: var(--spacing-xs);
}

.footer-contact-item a {
  color: rgba(247, 245, 239, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.22s ease;
  display: inline-flex;
  align-items: center;
}

.footer-contact-item a:hover {
  color: var(--gold);
}

.footer-whatsapp-link {
  display: inline-flex;
  align-items: center;
}

.footer-whatsapp-link svg {
  display: inline-block;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li {
  margin-bottom: var(--spacing-xs);
}

.footer-nav-list a {
  color: rgba(247, 245, 239, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.22s ease;
}

.footer-nav-list a:hover {
  color: var(--gold);
}

.footer-copyright {
  text-align: center;
  padding: var(--spacing-md) 0;
  border-top: 1px solid rgba(241, 187, 103, 0.15);
  margin-top: var(--spacing-md);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-copyright p {
  color: rgba(247, 245, 239, 0.6);
  font-size: 0.8rem;
  margin: 0;
  display: block;
  text-align: center;
  width: 100%;
}

.footer-credit {
  margin-top: var(--spacing-xs) !important;
  color: rgba(247, 245, 239, 0.5) !important;
  font-size: 0.75rem !important;
  text-align: center !important;
  width: 100% !important;
  display: block !important;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg) var(--spacing-md);
  }

  .footer-column {
    text-align: left;
  }

  .final-cta h2 {
    font-size: 1.75rem;
  }

  .final-cta-subline {
    font-size: 0.95rem;
  }

  .final-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .final-cta .btn-cta-primary,
  .final-cta .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* --- SCROLL REVEAL --- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- DIVIDERS --- */
.divider {
  width: 60px;
  height: 2px;
  background-color: var(--gold);
  margin: var(--spacing-md) auto;
}

/* --- SCROLL TO TOP BUTTON --- */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background-color: var(--navy);
  color: var(--gold);
  border: 1px solid rgba(241, 187, 103, 0.3);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.32s ease;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(18, 33, 52, 0.15);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background-color: rgba(18, 33, 52, 0.95);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(18, 33, 52, 0.25);
}

.scroll-to-top:active {
  transform: translateY(0);
}

.scroll-to-top svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
  }
  
  .scroll-to-top svg {
    width: 18px;
    height: 18px;
  }
}

/* --- UTILITIES --- */
.text-center {
  text-align: center;
}

.mt-lg {
  margin-top: var(--spacing-lg);
}

.mb-lg {
  margin-bottom: var(--spacing-lg);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  /* Reorder header elements: Logo → CTA → Language → Hamburger */
  .header-inner {
    flex-wrap: nowrap;
  }
  
  .logo {
    order: 1;
  }
  
  .header-actions {
    order: 2;
    display: flex;
    /* Reorder children within header-actions: CTA first, then language */
  }
  
  .header-actions .btn {
    order: 1;
  }
  
  .header-actions .lang-toggle {
    order: 2;
  }
  
  nav {
    order: 3;
  }
  
  .nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(18, 33, 52, 0.98);
    flex-direction: column;
    padding: var(--spacing-md);
    border-top: 1px solid rgba(18, 33, 52, 0.6);
    box-shadow: 0 8px 20px rgba(11, 18, 32, 0.6);
    opacity: 0;
    transform: translateY(-10px);
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease, visibility 0.3s ease;
  }
  
  .nav.active {
    opacity: 1;
    transform: translateY(0);
    max-height: 500px;
    visibility: visible;
  }
  
  .mobile-menu-toggle {
    display: flex;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  
  .header-actions {
    gap: var(--spacing-xs);
  }
  
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .hero-ctas {
    flex-direction: column;
    gap: var(--spacing-sm);
    align-items: center;
  }
  
  .hero-cta {
    text-align: center;
  }
  
  .cards-grid,
  .investment-options {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .project-details-grid {
    grid-template-columns: 1fr;
  }
  
  .project-headline {
    font-size: 1.05rem;
  }
  
  .project-image-wrapper {
    height: 220px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .icon-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .process-grid::before {
    display: none;
  }
  
  .process-trust-statement {
    font-size: 0.98rem;
    margin-top: var(--spacing-md);
  }
  
}

@media (max-width: 480px) {
  .icon-highlights {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: var(--spacing-lg) 0;
  }
}
