/* =============================================
   FAB — Curaduría Inmobiliaria
   styles.css
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@200;300;400;500;600;700;800&display=swap');

/* --- Variables --- */
:root {
  --black:      #0a0a0a;
  --white:      #ffffff;
  --off-white:  #f5f4f0;
  --gray-light: #e4e3df;
  --gray-mid:   #9a9a95;
  --gray-dark:  #3a3a38;
  --blue-sky:   #6bb5d6;
  --blue-deep:  #3a6fa8;
  --grad:       linear-gradient(135deg, #6bb5d6 0%, #3a6fa8 100%);
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --pad-x:      64px;
  --pad-y:      120px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Urbanist', sans-serif;
  background: var(--black);
  color: var(--white);
  cursor: none;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; object-fit: cover; }
ul { list-style: none; }

/* --- Custom Cursor --- */
#cursor {
  width: 12px; height: 12px;
  background: var(--white);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s;
  mix-blend-mode: difference;
}
#cursor-ring {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s var(--ease), width 0.4s var(--ease), height 0.4s var(--ease), opacity 0.3s;
  mix-blend-mode: difference;
}
body.cursor-hover #cursor { width: 6px; height: 6px; }
body.cursor-hover #cursor-ring { width: 60px; height: 60px; opacity: 0.6; }

/* --- Scroll Reveal --- */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.rv.visible { opacity: 1; transform: translateY(0); }
.rv2 { transition-delay: 0.12s; }
.rv3 { transition-delay: 0.24s; }
.rv4 { transition-delay: 0.36s; }
.rv5 { transition-delay: 0.48s; }

/* --- Tag Label --- */
.tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blue-sky);
  margin-bottom: 24px;
  display: block;
}
.tag::before {
  content: '— ';
  letter-spacing: 0;
}
.tag-light { color: var(--blue-sky); }

/* =============================================
   NAVIGATION
   ============================================= */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 28px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.4s var(--ease), backdrop-filter 0.4s, background 0.4s;
}
nav.scrolled {
  padding: 18px var(--pad-x);
  backdrop-filter: blur(16px);
  background: rgba(10,10,10,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo img { height: 43px; width: auto; }
.nav-logo span {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
}
.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.btn-nav {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--black);
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-nav:hover { background: transparent; color: var(--white); border-color: var(--white); }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding: 0 var(--pad-x) 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 1;
  background: #111 center/cover no-repeat;
  animation: zoomIn 14s ease-out forwards;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}
.hero-bg { background-image: url('../images/Cipriani-Pool-2.jpg'); }

@keyframes zoomIn {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}
.hero-text {}
.hero-cta {
  display: flex;
  align-items: flex-end;
  padding-bottom: 4px;
}
.hero-cta .btn-wh {
  font-size: 13px;
  padding: 20px 64px;
  white-space: nowrap;
}
.hero-tag {
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
  display: block;
  animation: fadeUp 0.8s var(--ease) 0.9s both;
}
.hero h1 {
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 200;
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeUp 0.9s var(--ease) 0.7s both;
}
.hero h1 em {
  font-style: normal;
  display: block;
  color: var(--white);
}
.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--white);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 40px;
  animation: fadeUp 0.9s var(--ease) 0.9s both;
}
.hero-btns {
  display: flex;
  gap: 16px;
  animation: fadeUp 0.9s var(--ease) 1.1s both;
}
.btn-wh {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 44px;
  background: var(--white);
  color: var(--black);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.btn-wh:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
.btn-ghost-wh {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 44px;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost-wh:hover { border-color: var(--white); color: var(--white); }

/* =============================================
   MARQUEE
   ============================================= */
.marquee-wrap {
  background: var(--off-white);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-item {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-dark);
  padding: 0 40px;
  white-space: nowrap;
}
.marquee-dot {
  color: var(--blue-sky);
  font-size: 18px;
  line-height: 1;
  align-self: center;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   STATEMENT (Filosofía)
   ============================================= */
.statement {
  background: var(--off-white);
  padding: var(--pad-y) var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.statement-left {}
.statement-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 200;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 20px;
}
.statement-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--gray-dark);
  line-height: 1.65;
  max-width: 420px;
}
.statement-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.stmnt-card {
  padding: 28px 24px;
}
.stmnt-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--blue-sky);
  margin-bottom: 12px;
}
.stmnt-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.3;
}
.stmnt-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray-dark);
  line-height: 1.6;
}

/* =============================================
   PANEL (Full-bleed image)
   ============================================= */
.panel {
  height: 92vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 80px var(--pad-x);
  overflow: hidden;
}
.panel-bg {
  position: absolute; inset: 0;
  background: #1a1a1a center/cover no-repeat;
  transition: transform 0.6s var(--ease);
}
.panel:hover .panel-bg { transform: scale(1.02); }
.panel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}
.panel-content { position: relative; z-index: 2; max-width: 560px; }
.panel-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 200;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.panel-body {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 24px;
}
.panel-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.panel-list li {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  padding-left: 22px;
  position: relative;
  line-height: 1.4;
}
.panel-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--blue-sky);
  font-weight: 700;
}

/* Set panel background images */
#panel-dev .panel-bg { background-image: url('../images/Amenity-Lobby.jpg'); }
#panel-inv .panel-bg { background-image: url('../images/galery_hype4.jpg'); }

/* =============================================
   STATS
   ============================================= */
.stats {
  background: var(--black);
  padding: 80px var(--pad-x);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 32px 40px;
}
.stat-number {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 200;
  letter-spacing: -0.03em;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-mid);
  letter-spacing: 0.04em;
}

/* =============================================
   TABS SECTION
   ============================================= */
.tabs-section {
  background: var(--off-white);
}
.tabs-nav {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
  padding: 0 var(--pad-x);
  background: var(--off-white);
}
.tab-btn {
  position: relative;
  padding: 20px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--blue-sky);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}
.tab-btn.active { color: var(--blue-sky); }
.tab-btn.active::after { transform: scaleX(1); }
.tab-btn:hover:not(.active) { color: var(--black); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.tab-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.tab-text {
  padding: var(--pad-y) var(--pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tab-title {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 200;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 16px;
}
.tab-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--gray-dark);
  line-height: 1.6;
  margin-bottom: 28px;
}
.tab-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tab-list li {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-dark);
  padding-left: 22px;
  position: relative;
  line-height: 1.4;
}
.tab-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--blue-sky);
  font-weight: 700;
}
.tab-image {
  background: #ccc center/cover no-repeat;
}
.tab-image-dev { background-image: url('../images/Amenity-Lobby.jpg'); }
.tab-image-inv { background-image: url('../images/galery_hype4.jpg'); }

/* =============================================
   AUDIENCES
   ============================================= */
.audiences {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.audience-panel {
  padding: var(--pad-y) var(--pad-x);
  position: relative;
  background: var(--black);
}
.audience-panel:first-child {
  border-right: 1px solid rgba(255,255,255,0.06);
}
.audience-title {
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 200;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.audience-body {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 40px;
}
.audience-list {
  margin-top: 8px;
}
.audience-list li {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  padding: 16px 0;
  display: flex;
  align-items: baseline;
  gap: 16px;
  border: none;
}
.audience-list li::before {
  content: '—';
  color: rgba(255,255,255,0.25);
  font-weight: 300;
  flex-shrink: 0;
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  background: var(--off-white);
  padding: var(--pad-y) var(--pad-x);
}
.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
  align-items: end;
}
.section-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 200;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--black);
}
.section-intro {
  font-size: 16px;
  font-weight: 300;
  color: var(--gray-dark);
  line-height: 1.65;
  align-self: end;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.srv {
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.srv:hover { background: var(--white); }
.srv::after {
  content: '';
  position: absolute;
  bottom: 0; left: 32px; right: 32px;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.srv:hover::after { transform: scaleX(1); }
.srv-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--blue-sky);
  margin-bottom: 16px;
}
.srv-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.3;
}
.srv-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-dark);
  line-height: 1.6;
}

/* =============================================
   GALLERY STRIP
   ============================================= */
.gallery-strip {
  display: flex;
  height: 280px;
  overflow: hidden;
}
.gs-item {
  flex: 1;
  position: relative;
  overflow: hidden;
  transition: flex 0.6s var(--ease);
  cursor: none;
}
.gs-item:hover { flex: 2.5; }
.gs-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gs-item:hover img { transform: scale(1.05); }
.gs-label {
  position: absolute;
  bottom: 16px; left: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  opacity: 0;
  transition: opacity 0.3s;
}
.gs-item:hover .gs-label { opacity: 1; }

/* =============================================
   SPLIT SECTIONS
   ============================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.split.reverse .split-image { order: 2; }
.split.reverse .split-text  { order: 1; }
.split-image {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.split-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.split:hover .split-image img { transform: scale(1.03); }
.split-text {
  padding: var(--pad-y) var(--pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-text.dark { background: var(--black); }
.split-text.light { background: var(--off-white); }
.split-text.light .tag { color: var(--gray-mid); }
.split-text.light .split-title { color: var(--black); }
.split-text.light .split-body { color: var(--gray-dark); }
.split-title {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 200;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.split-body {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 28px;
}
.split-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-sky);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.split-link:hover { gap: 14px; }

/* Bold accents inside light-weight headings */
.panel-title strong,
.section-title strong,
.split-title strong { font-weight: 700; }

/* Set split images */
#split-1 .split-image { background: url('../images/Corner-Unit_V1_Modern_BATHROOM_2.jpg') center/cover; }
#split-2 .split-image { background: url('../images/hA-emprendimientos-oficinas-y-residencias-en-grand-atlantida-10.jpg') center/cover; }
#split-2 .split-text { background: rgb(245, 244, 240); }

/* =============================================
   TEAM
   ============================================= */
.team {
  background: var(--black);
  padding: var(--pad-y) var(--pad-x);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.tm {
  display: flex;
  flex-direction: column;
  border-radius: 2px;
  overflow: hidden;
}
.tm-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s var(--ease);
  border-radius: 2px;
}
.tm:hover .tm-img { transform: scale(1.05); }
.tm-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 16px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, transparent 100%);
}
.tm-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.tm-role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-sky);
}

/* =============================================
   CLIENTS
   ============================================= */
.clients {
  background: var(--black);
  padding: 80px 0;
  overflow: hidden;
}
.clients-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-bottom: 48px;
  padding: 0 var(--pad-x);
}
.carousel-wrapper {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.carousel-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: scroll-logos 28s linear infinite;
}
.carousel-track img {
  height: 32px;
  width: auto;
  opacity: 0.55;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.carousel-track img:hover { opacity: 1; }
@keyframes scroll-logos {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   MODAL CONTACTO
   ============================================= */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(6px);
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white);
  padding: 48px 40px;
  max-width: 520px;
  width: 100%;
  border-radius: 2px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none; border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--gray-mid);
  transition: color 0.2s;
}
.modal-close:hover { color: var(--black); }
.modal-title {
  font-size: 26px;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  color: var(--black);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-light);
  border-radius: 2px;
  font-size: 15px;
  font-family: inherit;
  color: var(--black);
  background: var(--off-white);
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue-sky); }
.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea { border-color: #d94f4f; }
.form-error {
  display: none;
  font-size: 11px;
  color: #d94f4f;
  margin-top: 5px;
}
.form-group.invalid .form-error { display: block; }
.form-success {
  text-align: center;
  padding: 40px 0;
  font-size: 18px;
  font-weight: 300;
  color: var(--black);
  line-height: 1.6;
}
.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--blue-deep); }

/* =============================================
   CTA
   ============================================= */
.cta {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  padding: var(--pad-y) var(--pad-x);
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background: #111 center/cover no-repeat;
  background-image: url('../images/Penthouse.jpg');
}
.cta-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.78);
}
.cta-content { position: relative; z-index: 2; max-width: 680px; }
.cta-title {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 200;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  line-height: 1.6;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-cta-ghost {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-cta-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 56px var(--pad-x);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}
.footer-logo img { height: 24px; width: auto; }
.footer-logo span {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.footer-tagline {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray-mid);
  letter-spacing: 0.06em;
  margin-top: 6px;
}
.footer-contact {
  text-align: center;
  font-size: 13px;
  color: var(--gray-mid);
  line-height: 1.8;
}
.footer-contact a:hover { color: var(--white); transition: color 0.2s; }
.footer-right {
  text-align: right;
  font-size: 12px;
  color: var(--gray-dark);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  :root { --pad-x: 40px; --pad-y: 96px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --pad-x: 24px; --pad-y: 72px; }
  body { cursor: auto; }
  #cursor, #cursor-ring { display: none; }
  .nav-links { display: none; }
  .hero { min-height: 100svh; }
  .hero-bg { background-position: 72% center; background-size: cover; }
  .hero h1 { font-size: 44px; }
  .hero-btns { flex-direction: column; }
  .btn-wh, .btn-ghost-wh { text-align: center; }
  .statement { grid-template-columns: 1fr; gap: 48px; }
  .section-header { grid-template-columns: 1fr; gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .audiences { grid-template-columns: 1fr; }
  .tab-inner { grid-template-columns: 1fr; }
  .tab-image { min-height: 260px; order: -1; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-image, .split.reverse .split-text { order: unset; }
  .split-image { min-height: 300px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .tm-info { position: static; padding: 12px 4px 0; background: none; }
  .cta-btns { flex-direction: column; }
  footer { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .footer-right { text-align: center; }
  .footer-logo { display: flex; justify-content: center; }
  .gallery-strip { height: 180px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) and (orientation: landscape) {
  .hero { min-height: auto; padding-top: 100px; padding-bottom: 48px; }
  .hero h1 { font-size: 32px; line-height: 1.1; }
  .hero-sub { font-size: 14px; margin-top: 8px; }
  .hero-tag { font-size: 11px; margin-bottom: 8px; }
  .hero-content { gap: 24px; }
  .hero-cta .btn-wh { padding: 14px 40px; }
}
