/* ============================================
   NEXSTAY CONCIERGERIE — MAIN STYLESHEET
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400&family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&display=swap');

/* ============ VARIABLES ============ */
:root {
  --terracotta: #D4714E;
  --terracotta-dark: #B5583A;
  --terracotta-light: #E8956E;
  --terracotta-pale: #F5E6DF;
  --dark: #1E1E1E;
  --charcoal: #2F2F2F;
  --charcoal-mid: #3D3D3D;
  --white: #FFFFFF;
  --off-white: #F8F5F1;
  --light-gray: #EDE9E3;
  --mid-gray: #B8B0A6;
  --gray: #7A7470;

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.76, 0, 0.24, 1);

  --container-xl: 1440px;
  --container: 1200px;
  --container-sm: 960px;

  --nav-h: 80px;
  --section-v: 130px;
  --section-v-sm: 80px;
}

/* ============ RESET & BASE ============ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* ============ TYPOGRAPHY ============ */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.025em;
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.display-sm {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.serif-xl {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.15;
  font-style: italic;
}

.label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.body-lg {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 300;
  line-height: 1.7;
}

.body-md {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

/* ============ UTILITIES ============ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.container-xl {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 60px;
}

.container-sm {
  max-width: var(--container-sm);
  margin: 0 auto;
  padding: 0 40px;
}

.terracotta { color: var(--terracotta); }
.white { color: var(--white); }
.dark { color: var(--dark); }
.gray { color: var(--gray); }
.mid-gray { color: var(--mid-gray); }

.bg-dark { background: var(--dark); }
.bg-charcoal { background: var(--charcoal); }
.bg-off-white { background: var(--off-white); }
.bg-terracotta { background: var(--terracotta); }
.bg-light-gray { background: var(--light-gray); }

.text-center { text-align: center; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 60px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

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

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease);
  z-index: 0;
}

.btn-primary span,
.btn-primary svg {
  position: relative;
  z-index: 1;
}

.btn-primary:hover::before {
  transform: translateX(0);
}

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

.btn-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--terracotta);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease);
  z-index: 0;
}

.btn-dark span,
.btn-dark svg {
  position: relative;
  z-index: 1;
}

.btn-dark:hover::before {
  transform: translateX(0);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}

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

.btn-lg {
  padding: 20px 44px;
  font-size: 14px;
}

/* Arrow button */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: gap 0.3s var(--ease);
}

.btn-arrow .arrow-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s var(--ease);
  flex-shrink: 0;
}

.btn-arrow:hover {
  gap: 18px;
}

.btn-arrow:hover .arrow-icon {
  background: var(--dark);
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(30, 30, 30, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav.nav-light.scrolled {
  background: rgba(248, 245, 241, 0.97);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav-inner {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: inline-grid;
  grid-template-columns: max-content;
  flex-shrink: 0;
  row-gap: 5px;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  display: block;
  white-space: nowrap;
}

.nav-logo-text .logo-nex {
  color: var(--white);
}

.nav-logo-text .logo-stay {
  color: var(--terracotta);
}

.nav-logo-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.25s var(--ease);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--terracotta);
  transition: width 0.3s var(--ease);
}

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

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

.nav.nav-light .nav-link {
  color: rgba(30,30,30,0.65);
}

.nav.nav-light .nav-link:hover,
.nav.nav-light .nav-link.active {
  color: var(--dark);
}

.nav-cta {
  margin-left: 20px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.35s var(--ease);
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav menu */
.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
  overflow: hidden;
  padding: 0 32px;
}

.nav-mobile.open {
  transform: translateY(0);
}

.nav-mobile .nav-link {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  text-align: center;
}

.nav-mobile .nav-link::after {
  height: 2px;
  bottom: -5px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(18,18,18,0.3) 0%,
    rgba(18,18,18,0.2) 40%,
    rgba(18,18,18,0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-inner {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: flex-end;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7.5vw, 112px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--white);
}

.hero-title em {
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--terracotta);
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 8px;
}

.hero-desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--terracotta);
  animation: scrollLine 2s var(--ease) infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ============ MARQUEE ============ */
.marquee-strip {
  background: var(--terracotta);
  padding: 20px 0;
  overflow: hidden;
  display: flex;
}

.marquee-track {
  display: flex;
  align-items: center;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 40px;
}

.marquee-text {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ SECTION LAYOUT ============ */
.section {
  padding: var(--section-v) 0;
}

.section-sm {
  padding: var(--section-v-sm) 0;
}

.section-header {
  margin-bottom: 80px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.section-label-line {
  width: 32px;
  height: 1.5px;
  background: var(--terracotta);
  flex-shrink: 0;
}

.section-label-text {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
}

/* ============ STATS ============ */
.stats-section {
  background: var(--dark);
  padding: 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat-item {
  padding: 52px 30px;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 68px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}

.stat-number span {
  color: var(--terracotta);
}

.stat-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--mid-gray);
  display: block;
  line-height: 1.4;
}

/* ============ SERVICES GRID ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--light-gray);
}

.service-card {
  background: var(--white);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--ease);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--terracotta);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
  z-index: 0;
}

.service-card:hover::before {
  transform: translateY(0);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  margin-bottom: 32px;
  display: block;
  transition: color 0.4s var(--ease);
}

.service-card:hover .service-num {
  color: rgba(255,255,255,0.6);
}

.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  transition: filter 0.4s var(--ease);
}

.service-card:hover .service-icon path,
.service-card:hover .service-icon circle,
.service-card:hover .service-icon rect,
.service-card:hover .service-icon polyline,
.service-card:hover .service-icon line {
  stroke: rgba(255,255,255,0.9) !important;
}

.service-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
  transition: color 0.4s var(--ease);
}

.service-card:hover .service-title {
  color: var(--white);
}

.service-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray);
  transition: color 0.4s var(--ease);
}

.service-card:hover .service-desc {
  color: rgba(255,255,255,0.8);
}

.service-link {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  transition: color 0.4s var(--ease), gap 0.3s var(--ease);
}

.service-card:hover .service-link {
  color: var(--white);
  gap: 14px;
}

/* ============ SPLIT SECTION ============ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

.split-image {
  position: relative;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.split-image:hover img {
  transform: scale(1.04);
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px;
}

.split-content.bg-dark {
  background: var(--dark);
}

/* ============ PROPERTIES GRID ============ */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.properties-grid.featured {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.properties-grid.featured .prop-card:first-child {
  grid-column: span 2;
}

.prop-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--off-white);
  cursor: pointer;
}

.prop-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.prop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.prop-card:hover .prop-card-img img {
  transform: scale(1.07);
}

.prop-card-img-lg {
  aspect-ratio: 16/9;
}

.prop-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
}

.prop-card-body {
  padding: 24px;
}

.prop-city {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.prop-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.prop-features {
  display: flex;
  align-items: center;
  gap: 20px;
}

.prop-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
}

/* ============ PROCESS STEPS ============ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--dark);
}

.step-card {
  background: var(--charcoal);
  padding: 56px 48px;
  position: relative;
  transition: background 0.3s var(--ease);
}

.step-card:hover {
  background: var(--charcoal-mid);
}

.step-num-big {
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.05);
  position: absolute;
  top: 20px;
  right: 30px;
}

.step-num-sm {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--terracotta);
  margin-bottom: 28px;
  display: block;
}

.step-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.step-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--mid-gray);
}

/* ============ TESTIMONIALS ============ */
.testimonials-section {
  background: var(--off-white);
}

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

.testimonial-card {
  background: var(--white);
  padding: 48px 40px;
  border-radius: 4px;
  position: relative;
}

.testimonial-card:first-child {
  /* uniform white background - same as all cards */
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}

.star {
  width: 16px;
  height: 16px;
  fill: var(--terracotta);
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--dark);
  margin-bottom: 32px;
  font-style: italic;
}

.testimonial-card:first-child .testimonial-text {
  color: var(--dark);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--light-gray);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--terracotta);
}

.testimonial-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.testimonial-card:first-child .testimonial-name {
  color: var(--dark);
}

.testimonial-role {
  font-size: 12px;
  color: var(--gray);
  font-weight: 300;
}

.testimonial-card:first-child .testimonial-role {
  color: var(--gray);
}

/* ============ CTA BAND ============ */
.cta-band {
  background: var(--terracotta);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: 'NEXSTAY';
  position: absolute;
  font-family: var(--font-display);
  font-size: 22vw;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 32px;
}

.cta-subtitle {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  margin-bottom: 48px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--dark);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {}

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 4px;
  display: inline-flex;
  align-items: baseline;
  gap: 0;
}

.footer-logo-text .logo-nex { color: var(--white); }
.footer-logo-text .logo-stay { color: var(--terracotta); }

.footer-logo-sub {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 24px;
  display: block;
}

.footer-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--mid-gray);
  max-width: 280px;
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.social-link:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid-gray);
  transition: color 0.25s var(--ease);
}

.footer-link:hover {
  color: var(--terracotta);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid-gray);
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
}

.footer-copy span {
  color: var(--terracotta);
}

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(212, 113, 78, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.breadcrumb-item {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

.breadcrumb-sep {
  color: rgba(255,255,255,0.2);
}

.breadcrumb-item.active {
  color: var(--terracotta);
}

/* ============ ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============ FAQ ============ */
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--light-gray);
}

.faq-item {
  border-bottom: 1px solid var(--light-gray);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--dark);
  transition: color 0.25s var(--ease);
}

.faq-question:hover {
  color: var(--terracotta);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}

.faq-item.open .faq-icon {
  background: var(--terracotta);
  border-color: var(--terracotta);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-answer-inner {
  padding: 0 0 28px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray);
  max-width: 720px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

/* ============ FORMS ============ */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 10px;
}

.form-label.white {
  color: rgba(255,255,255,0.7);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--dark);
  background: var(--off-white);
  border: 1.5px solid var(--light-gray);
  border-radius: 4px;
  padding: 16px 20px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(212, 113, 78, 0.1);
}

.form-input.dark-input,
.form-select.dark-input,
.form-textarea.dark-input {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
  color: var(--white);
}

.form-input.dark-input::placeholder,
.form-textarea.dark-input::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-input.dark-input:focus,
.form-textarea.dark-input:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(212, 113, 78, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ============ HIGHLIGHT BOX ============ */
.highlight-box {
  background: var(--terracotta-pale);
  border-left: 3px solid var(--terracotta);
  padding: 24px 28px;
  border-radius: 0 4px 4px 0;
}

.highlight-box p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--charcoal);
}

/* ============ CHECKLIST ============ */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.checklist-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--charcoal);
}

/* Dark checklist */
.checklist-dark .check-icon {
  background: rgba(212,113,78,0.15);
}

.checklist-dark .checklist-text {
  color: var(--mid-gray);
}

/* ============ TAGS ============ */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  background: var(--light-gray);
  color: var(--gray);
}

.tag-dark {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

/* ============ NUMBERS FEATURE ============ */
.numbers-feature {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.number-item {}

.number-big {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 4px;
}

.number-label {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.4;
}

.number-label strong {
  font-weight: 500;
  color: var(--dark);
  display: block;
}

/* ============ HORIZONTAL LINE ============ */
.divider {
  width: 100%;
  height: 1px;
  background: var(--light-gray);
  margin: 60px 0;
}

.divider-dark {
  background: rgba(255,255,255,0.08);
}

/* ============ TOAST / ALERT ============ */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  padding: 16px 24px;
  border-radius: 4px;
  border-left: 3px solid var(--terracotta);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  z-index: 999;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s var(--ease-out);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
  :root {
    --section-v: 100px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 0 40px;
  }

  .hero-inner {
    grid-template-columns: 1fr 340px;
    gap: 40px;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(3) {
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .stat-item:nth-child(4) {
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

@media (max-width: 1024px) {
  .nav-inner {
    padding: 0 40px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-right {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .hero-desc {
    flex: 1;
    min-width: 200px;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .split-image {
    aspect-ratio: 16/9;
  }

  .split-content {
    padding: 60px 40px;
  }

  .properties-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .testimonials-grid .testimonial-card:nth-child(3) {
    grid-column: span 2;
  }

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

  .numbers-feature {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-v: 72px;
    --section-v-sm: 56px;
    --nav-h: 68px;
  }

  .container,
  .container-xl,
  .container-sm {
    padding: 0 24px;
  }

  .nav-inner {
    padding: 0 24px;
  }

  .hero {
    padding-bottom: 60px;
  }

  .hero-inner {
    padding: 0 24px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-right {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    padding: 40px 28px;
  }

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

  .service-card {
    padding: 40px 32px;
  }

  .properties-grid,
  .properties-grid.featured {
    grid-template-columns: 1fr;
  }

  .properties-grid.featured .prop-card:first-child {
    grid-column: span 1;
  }

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

  .testimonials-grid .testimonial-card:nth-child(3) {
    grid-column: span 1;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .split-content {
    padding: 48px 24px;
  }

  .step-card {
    padding: 40px 32px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .numbers-feature {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .page-hero {
    padding-top: calc(var(--nav-h) + 48px);
    padding-bottom: 56px;
  }

  .display-xl {
    font-size: clamp(44px, 12vw, 80px);
  }
}

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

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .stat-num-big {
    font-size: 48px;
  }

  .marquee-text {
    font-size: 11px;
  }
}

/* ============ CURSOR ============ */
@media (hover: hover) and (pointer: fine) {
  .custom-cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: var(--terracotta);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease), height 0.3s var(--ease), opacity 0.3s var(--ease);
    mix-blend-mode: normal;
  }

  .custom-cursor.cursor-large {
    width: 60px;
    height: 60px;
    background: rgba(212, 113, 78, 0.2);
    border: 1.5px solid var(--terracotta);
  }
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--off-white);
}

::-webkit-scrollbar-thumb {
  background: var(--terracotta);
  border-radius: 10px;
}

/* ============ SELECTION ============ */
::selection {
  background: var(--terracotta);
  color: var(--white);
}

/* ============ CONTACT PAGE ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--terracotta-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-body {}

.contact-info-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 4px;
}

.contact-info-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--gray);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ============ ABOUT PAGE ============ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--light-gray);
}

.value-card {
  background: var(--white);
  padding: 48px 40px;
}

.value-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--terracotta);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 20px;
}

.value-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--dark);
  margin-bottom: 12px;
}

.value-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray);
}

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

/* ============ PROPRIETAIRES PAGE ============ */
.revenue-calc {
  background: var(--dark);
  padding: 56px;
  border-radius: 4px;
}

.calc-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.calc-result {
  background: rgba(212,113,78,0.12);
  border: 1px solid rgba(212,113,78,0.3);
  border-radius: 4px;
  padding: 24px;
  margin-top: 24px;
  text-align: center;
}

.calc-result-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-weight: 600;
}

.calc-result-amount {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--terracotta);
  line-height: 1;
}

.calc-result-period {
  font-size: 13px;
  color: var(--mid-gray);
  margin-top: 6px;
}

@media (max-width: 768px) {
  .revenue-calc {
    padding: 36px 24px;
  }
}

/* ============ NOS BIENS PAGE ============ */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 30px;
  border: 1.5px solid var(--light-gray);
  color: var(--gray);
  background: var(--white);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.filter-btn.active {
  background: var(--terracotta);
  border-color: var(--terracotta);
}

/* ── RESPONSIVE DATA ATTRIBUTES (override inline grid styles) ── */
@media (max-width: 768px) {
  [data-mob1] {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  [data-mob2] {
    grid-template-columns: 1fr 1fr !important;
  }
  [data-mobpad] {
    padding: 48px 24px !important;
  }
  [data-mobmw] {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}
