/* ==========================================================================
   NICOLA VINCIGUERRA — MAVINS
   Design tokens: off-white, black, MAVINS dusty blue, warm tan.
   Type: Archivo (display, headlines) / JetBrains Mono (body, labels).
   ========================================================================== */

:root {
  --off-white: #E9E8E6;
  --black: #111110;
  --white: #FFFFFF;
  --blue: #95B5D0;
  --blue-dark: #6F93B4;
  --tan: #D5B8A6;
  --grey-line: rgba(17,17,16,0.12);

  --font-display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Consolas, monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 84px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  background: var(--off-white);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--black);
  color: var(--white);
  padding: 12px 20px;
  z-index: 9999;
}
.skip-link:focus { left: 0; }

::selection { background: var(--black); color: var(--blue); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.02;
}

.mono { font-family: var(--font-mono); text-transform: none; letter-spacing: 0; }

.label-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--blue);
  color: var(--black);
  padding: 5px 10px;
  margin-bottom: 22px;
}
.label-tag.light { background: var(--black); color: var(--white); border: 1px solid rgba(255,255,255,0.3); }

.section-title {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  margin-bottom: 24px;
}

.display-heading {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  margin-bottom: 24px;
}
.display-heading.light { color: var(--white); }

.section-subtitle {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--black);
  opacity: 0.65;
  margin-bottom: 32px;
}

.section-subtitle-lead {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  text-transform: none;
  letter-spacing: -0.01em;
  max-width: 620px;
  margin-bottom: 18px;
}

.section-lead {
  max-width: 620px;
  font-size: 15px;
  line-height: 1.85;
  opacity: 0.8;
}

section { position: relative; }

/* ==========================================================================
   Reveal animations
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-line { overflow: hidden; display: block; }
.reveal-text {
  display: block;
  transform: translateY(110%);
  transition: transform 1.1s var(--ease);
}
.hero-title.is-visible .reveal-text { transform: translateY(0); }

.stats-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.stats-grid .reveal:nth-child(2) { transition-delay: 0.15s; }
.stats-grid .reveal:nth-child(3) { transition-delay: 0.25s; }
.stats-grid .reveal:nth-child(4) { transition-delay: 0.35s; }

.metodo-grid .reveal:nth-child(1) { transition-delay: 0.03s; }
.metodo-grid .reveal:nth-child(2) { transition-delay: 0.09s; }
.metodo-grid .reveal:nth-child(3) { transition-delay: 0.15s; }
.metodo-grid .reveal:nth-child(4) { transition-delay: 0.21s; }
.metodo-grid .reveal:nth-child(5) { transition-delay: 0.27s; }

.property-grid .reveal:nth-child(1) { transition-delay: 0.03s; }
.property-grid .reveal:nth-child(2) { transition-delay: 0.09s; }
.property-grid .reveal:nth-child(3) { transition-delay: 0.15s; }
.property-grid .reveal:nth-child(4) { transition-delay: 0.21s; }

.press-grid .reveal:nth-child(1) { transition-delay: 0.03s; }
.press-grid .reveal:nth-child(2) { transition-delay: 0.09s; }
.press-grid .reveal:nth-child(3) { transition-delay: 0.15s; }
.press-grid .reveal:nth-child(4) { transition-delay: 0.21s; }
.press-grid .reveal:nth-child(5) { transition-delay: 0.27s; }

.stories-grid .reveal:nth-child(1) { transition-delay: 0.03s; }
.stories-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.stories-grid .reveal:nth-child(3) { transition-delay: 0.13s; }
.stories-grid .reveal:nth-child(4) { transition-delay: 0.18s; }
.stories-grid .reveal:nth-child(5) { transition-delay: 0.23s; }
.stories-grid .reveal:nth-child(6) { transition-delay: 0.28s; }
.stories-grid .reveal:nth-child(7) { transition-delay: 0.33s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-text, * { transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Progress bar
   ========================================================================== */

.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--blue);
  z-index: 1100;
  transition: width 0.1s linear;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 28px;
  border: 1px solid var(--black);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
  cursor: pointer;
  background: transparent;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue); color: var(--black); border-color: var(--blue); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-ghost:hover { background: var(--black); color: var(--white); transform: translateY(-2px); }

.btn-sm { padding: 11px 18px; font-size: 11.5px; }

.btn-block { width: 100%; }

.btn-nav {
  padding: 11px 20px;
  font-size: 12px;
}

/* ==========================================================================
   Lang switch
   ========================================================================== */

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.lang-switch button {
  background: none;
  border: none;
  color: var(--black);
  opacity: 0.45;
  cursor: pointer;
  padding: 4px 2px;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  transition: opacity 0.3s;
}
.site-header:not(.scrolled) .lang-switch button { color: var(--white); }
.lang-switch button.active { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }
.lang-switch span { opacity: 0.3; }
.site-header:not(.scrolled) .lang-switch span { color: var(--white); }

.lang-switch-mobile { margin: 6px 0 4px; }
.lang-switch-mobile button { color: var(--black); font-size: 15px; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.4s var(--ease), height 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}

.site-header.scrolled {
  background: rgba(233,232,230,0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  height: 68px;
  box-shadow: 0 1px 0 var(--grey-line);
}

.header-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--black);
  white-space: nowrap;
}
.site-header:not(.scrolled) .brand { color: var(--white); }
.brand span { opacity: 0.55; }

.main-nav {
  display: flex;
  gap: clamp(12px, 1.8vw, 24px);
  font-size: 12.5px;
  letter-spacing: 0.04em;
}

.main-nav a {
  position: relative;
  padding: 6px 0;
  color: var(--black);
  transition: opacity 0.3s;
}
.site-header:not(.scrolled) .main-nav a { color: var(--white); }

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0%;
  height: 1px;
  background: currentColor;
  transition: width 0.35s var(--ease);
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1200;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--black);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background 0.3s;
}
.site-header:not(.scrolled) .nav-toggle span { background: var(--white); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-toggle.open span { background: var(--black) !important; }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--off-white);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 90px 32px 32px;
  gap: 24px;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform 0.55s var(--ease);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav nav a {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 8vw, 2.6rem);
  line-height: 1.25;
}

/* ==========================================================================
   Hero (video)
   ========================================================================== */

.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

.hero-media {
  position: absolute;
  inset: 0;
}
.hero-video, .hero-img-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}
.hero-img-fallback { position: absolute; inset: 0; display: none; }
.hero.no-video .hero-video { display: none; }
.hero.no-video .hero-img-fallback { display: block; }

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 42%, rgba(0,0,0,0.1) 65%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px) clamp(64px, 9vw, 110px);
  color: var(--white);
}

.hero .eyebrow {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  color: var(--white);
  margin-bottom: 28px;
}

.hero-sub {
  max-width: 560px;
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .btn-ghost { border-color: rgba(255,255,255,0.6); color: var(--white); }
.hero .btn-ghost:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.hero .btn-primary:hover { background: var(--blue); }

.hero-scroll {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  bottom: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.hero-scroll span {
  width: 1px;
  height: 46px;
  background: rgba(255,255,255,0.4);
  overflow: hidden;
  position: relative;
}
.hero-scroll span::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0; width: 100%; height: 100%;
  background: var(--white);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 0%; }
  100% { top: 100%; }
}
.hero-scroll p {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

/* ==========================================================================
   Bio (Chi è Nicola)
   ========================================================================== */

.bio {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
}

.bio-text {
  padding: clamp(64px, 8vw, 120px) clamp(24px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bio-copy { display: flex; flex-direction: column; gap: 22px; max-width: 560px; margin-bottom: 40px; }
.bio-copy p { font-size: 15px; line-height: 1.85; opacity: 0.88; }

.bio-contact { display: flex; gap: 28px; flex-wrap: wrap; font-size: 13px; }
.bio-contact a { border-bottom: 1px solid var(--black); padding-bottom: 3px; transition: opacity 0.3s; }
.bio-contact a:hover { opacity: 0.5; }

.bio-media { overflow: hidden; min-height: 420px; }
.bio-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }

/* ==========================================================================
   Stats
   ========================================================================== */

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--black);
  color: var(--white);
  min-height: 600px;
}

.stats-media { overflow: hidden; }
.stats-media img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }

.stats-panel {
  padding: clamp(48px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stats-heading {
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  max-width: 520px;
  margin-bottom: 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 24px;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 40px;
}

.stat-item { display: flex; flex-direction: column; gap: 10px; }

.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 12.5px;
  line-height: 1.5;
  opacity: 0.65;
  max-width: 200px;
}

/* ==========================================================================
   Metodo
   ========================================================================== */

.metodo {
  padding: clamp(70px, 8vw, 120px) clamp(20px, 4vw, 56px);
  max-width: 1440px;
  margin: 0 auto;
}

.metodo-header { max-width: 720px; margin-bottom: 56px; }

.metodo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--grey-line);
  border-top: 1px solid var(--grey-line);
  border-left: 1px solid var(--grey-line);
}

.metodo-card {
  background: var(--off-white);
  padding: 30px 22px 36px;
}
.metodo-index {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--blue-dark);
  display: block;
  margin-bottom: 18px;
}
.metodo-card h3 {
  font-size: 1.02rem;
  margin-bottom: 14px;
  line-height: 1.15;
}
.metodo-card p { font-size: 13px; line-height: 1.7; opacity: 0.72; }

/* ==========================================================================
   International (Relazioni internazionali)
   ========================================================================== */

.international {
  background: var(--black);
  color: var(--white);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(30px, 5vw, 60px);
  padding: clamp(70px, 8vw, 120px) clamp(20px, 4vw, 56px);
}

.international-text p:not(.label-tag):not(.display-heading) {
  font-size: 14.5px;
  line-height: 1.9;
  opacity: 0.78;
  max-width: 520px;
  margin-bottom: 18px;
}

.international-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.intl-img { overflow: hidden; }
.intl-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.intl-img:hover img { transform: scale(1.05); }
.intl-img-1 { grid-column: 1 / 2; grid-row: 1 / 3; }
.intl-img-1 img { aspect-ratio: 3/4.4; }
.intl-img-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
.intl-img-2 img { aspect-ratio: 4/3; }
.intl-img-3 { grid-column: 2 / 3; grid-row: 2 / 3; }
.intl-img-3 img { aspect-ratio: 4/3; }

/* ==========================================================================
   Immobili iconici (Properties for sale)
   ========================================================================== */

.properties {
  padding: clamp(70px, 8vw, 120px) clamp(20px, 4vw, 56px);
  max-width: 1440px;
  margin: 0 auto;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.property-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--grey-line);
  background: var(--white);
}

.property-card-media {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.property-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.property-card:hover .property-card-media img { transform: scale(1.06); }

.property-card-placeholder {
  background:
    repeating-linear-gradient(135deg, rgba(17,17,16,0.04) 0 2px, transparent 2px 16px),
    linear-gradient(160deg, var(--black) 0%, #2c2c29 100%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.property-ref {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--blue);
  border: 1px solid rgba(149,181,208,0.4);
  padding: 5px 9px;
}

.property-card-body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.property-card-body h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.2;
}
.property-card-body p {
  font-size: 12.5px;
  line-height: 1.7;
  opacity: 0.7;
  margin-bottom: 16px;
  flex-grow: 1;
}
.property-card-body .property-price {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  opacity: 0.6;
  margin-bottom: 18px;
  display: block;
}
.property-card-body .btn { align-self: flex-start; }

/* ==========================================================================
   Stories & Properties (mixed video + photo grid)
   ========================================================================== */

.video-section {
  padding: clamp(70px, 8vw, 120px) clamp(20px, 4vw, 56px);
  max-width: 1440px;
  margin: 0 auto;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 16px;
  margin-top: 48px;
}

.stories-tile {
  position: relative;
  overflow: hidden;
  background: var(--black);
  border: none;
  padding: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.stories-tile-video { cursor: pointer; }
.stories-tile-video:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.stories-tile-video:nth-child(3) { grid-row: span 2; }

.stories-tile-photo:last-child { grid-column: span 2; }

.stories-tile img,
.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease);
}
.stories-tile:hover img,
.stories-tile:hover .reel-video { transform: scale(1.05); }

.stories-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--white);
  background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 100%);
}

.expand-icon {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: rgba(0,0,0,0.25);
  transition: background 0.3s, border-color 0.3s;
}
.stories-tile-video:hover .expand-icon { background: var(--blue); color: var(--black); border-color: var(--blue); }

.video-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6,6,5,0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.video-lightbox.open { display: flex; }
.video-lightbox video {
  max-width: 480px;
  width: 100%;
  max-height: 88vh;
  outline: none;
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  width: 42px; height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.15); }

/* ==========================================================================
   Press
   ========================================================================== */

.press {
  padding: clamp(70px, 8vw, 120px) clamp(20px, 4vw, 56px);
  max-width: 1440px;
  margin: 0 auto;
}

.press-grid-5 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--grey-line);
  margin-top: 48px;
  border: 1px solid var(--grey-line);
}
.press-grid-5 .press-card:nth-child(1),
.press-grid-5 .press-card:nth-child(2),
.press-grid-5 .press-card:nth-child(3) { grid-column: span 2; }
.press-grid-5 .press-card:nth-child(4) { grid-column: 2 / span 2; }
.press-grid-5 .press-card:nth-child(5) { grid-column: 4 / span 2; }

.press-card {
  background: var(--off-white);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  transition: background 0.35s;
}
.press-card:hover { background: var(--white); }
.press-source { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue-dark); margin-bottom: 20px; }
.press-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: none;
  font-size: 1.05rem;
  line-height: 1.35;
  letter-spacing: 0;
  flex-grow: 1;
  margin-bottom: 24px;
}
.press-link { font-size: 12.5px; letter-spacing: 0.03em; }

/* ==========================================================================
   Contact
   ========================================================================== */

.contact { position: relative; padding: clamp(80px, 10vw, 140px) 0 clamp(60px, 7vw, 90px); overflow: hidden; }
.contact-media { position: absolute; inset: 0; z-index: 0; }
.contact-media img { width: 100%; height: 100%; object-fit: cover; }
.contact-gradient { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(17,17,16,0.92) 0%, rgba(17,17,16,0.85) 55%, rgba(17,17,16,0.95) 100%); }

.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  color: var(--white);
}

.contact-direct {
  margin-top: 56px;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.contact-name {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.contact-role { font-size: 13px; opacity: 0.65; margin-bottom: 44px; }

.contact-big-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}
.contact-big-link {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.contact-big-link:hover { color: var(--blue); }

.social-links { display: flex; justify-content: center; gap: 28px; }
.social-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  opacity: 0.75;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: opacity 0.3s, border-color 0.3s, color 0.3s;
}
.social-links a:hover { opacity: 1; border-color: var(--blue); color: var(--blue); }
.social-links svg { flex-shrink: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 64px clamp(20px, 4vw, 56px) 28px;
}
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-name {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.footer-role { font-size: 12.5px; opacity: 0.6; }
.footer-company p, .footer-company a { font-size: 13px; opacity: 0.75; margin-bottom: 6px; display: block; }
.footer-company a:hover { color: var(--blue); opacity: 1; }
.footer-social { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.footer-social a { font-size: 13px; opacity: 0.75; }
.footer-social a:hover { color: var(--blue); opacity: 1; }

.footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding-top: 24px;
  font-size: 11.5px;
  opacity: 0.5;
}

/* ==========================================================================
   Floating CTA
   ========================================================================== */

.fab-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 22px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background 0.3s;
}
.fab-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.fab-cta:hover { background: var(--blue); color: var(--black); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
  .main-nav { display: none; }
  .btn-nav { display: none; }
  .lang-switch:not(.lang-switch-mobile) { display: none; }
  .nav-toggle { display: flex; }

  .stats, .bio, .international {
    grid-template-columns: 1fr;
  }
  .bio-media { order: -1; min-height: 320px; }
  .bio-text { padding-top: 48px; }
  .international { grid-template-columns: 1fr; }
  .international-gallery { order: -1; }

  .metodo-grid { grid-template-columns: repeat(2, 1fr); }
  .property-grid { grid-template-columns: repeat(2, 1fr); }
  .press-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .press-grid-5 .press-card:nth-child(1),
  .press-grid-5 .press-card:nth-child(2),
  .press-grid-5 .press-card:nth-child(3),
  .press-grid-5 .press-card:nth-child(4),
  .press-grid-5 .press-card:nth-child(5) { grid-column: auto; }

  .stories-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .stories-tile-video:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .stories-tile-video:nth-child(3) { grid-row: span 1; }
  .stories-tile-photo:last-child { grid-column: span 1; }
}

@media (max-width: 640px) {
  :root { --header-h: 68px; }
  body { font-size: 15px; }
  .hero-content { padding-bottom: 90px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-scroll { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
  .metodo-grid { grid-template-columns: 1fr; }
  .property-grid { grid-template-columns: 1fr; }
  .press-grid-5 { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .stories-tile-video:nth-child(1) { grid-column: span 1; }
  .international-gallery { grid-template-columns: 1fr 1fr; }
  .intl-img-1 { grid-column: 1 / 3; grid-row: 1 / 2; }
  .intl-img-1 img { aspect-ratio: 16/10; }
  .intl-img-2 { grid-column: 1 / 2; grid-row: 2 / 3; }
  .intl-img-3 { grid-column: 2 / 3; grid-row: 2 / 3; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-social { align-items: flex-start; }
  .fab-cta { right: 14px; bottom: 14px; padding: 13px 18px; font-size: 11px; }
  .social-links { flex-wrap: wrap; gap: 16px; justify-content: center; }
  .contact-big-links { gap: 14px; }
}
