/* ============================================
   VARIABLES
============================================ */
:root {
  --black:    #0A0A0A;
  --surface:  #111111;
  --surface2: #171717;
  --gold:     #C9A84C;
  --gold-dim: rgba(201,168,76,0.15);
  --white:    #FFFFFF;
  --muted:    rgba(255,255,255,0.5);
  --line:     rgba(255,255,255,0.08);
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'Inter', system-ui, sans-serif;
}

/* ============================================
   RESET
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   CURSOR
============================================ */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s, width 0.25s, height 0.25s, background 0.25s;
  mix-blend-mode: difference;
}
.cursor.big {
  width: 40px; height: 40px;
  background: rgba(201,168,76,0.3);
}

/* ============================================
   SCROLL ANIMATIONS
============================================ */
.up, .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.up.in, .reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }

/* ============================================
   BUTTONS
============================================ */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 0.85rem 2rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: none;
  transition: background 0.25s, transform 0.25s;
}
.btn-primary:hover {
  background: #d9b85c;
  transform: translateY(-2px);
}
.btn-primary.wide { width: 100%; text-align: center; }

.btn-text {
  display: inline-block;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.25s;
}
.btn-text:hover { color: var(--white); }

/* ============================================
   SECTION EYEBROW & HEADING
============================================ */
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-head { margin-bottom: 4rem; }
.section-head h2,
section h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.section-head h2 em,
section h2 em {
  font-style: italic;
  color: var(--gold);
}

/* ============================================
   NAVBAR
============================================ */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background 0.35s, padding 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(16px);
  padding: 1rem 0;
  border-color: var(--line);
}
.nav-wrap {
  max-width: 1160px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.logo span { color: var(--gold); }

.nav-links {
  list-style: none;
  display: flex; gap: 2.5rem; align-items: center;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  color: var(--gold) !important;
  border-bottom: 1px solid rgba(201,168,76,0.4);
  padding-bottom: 1px;
}
.nav-cta:hover { border-color: var(--gold); }

.burger {
  display: none;
  flex-direction: column; gap: 6px;
  background: none; border: none; cursor: none; padding: 4px;
}
.burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 99;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2.5rem;
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav.open { transform: translateY(0); }
.mn-link {
  font-family: var(--serif);
  font-size: 2.5rem; font-weight: 600;
  color: var(--muted);
  transition: color 0.25s;
}
.mn-link:hover { color: var(--gold); }

/* ============================================
   HERO
============================================ */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  max-width: 1160px; margin: 0 auto; padding: 8rem 2rem 3rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  flex: 1;
}

.hero-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero-left h1 {
  font-family: var(--serif);
  font-size: clamp(4.5rem, 8vw, 7.5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}
.hero-left h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 2.5rem;
}
.hero-sub strong { color: var(--white); font-weight: 500; }
.hero-actions {
  display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap;
}

/* PHOTO */
.hero-right {
  display: flex; justify-content: flex-end;
}
.photo-wrap {
  position: relative;
  width: 380px;
}
.hero-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  display: block;
  border: 1px solid rgba(201,168,76,0.2);
}
.photo-initials {
  display: none;
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--surface);
  border: 1px solid rgba(201,168,76,0.15);
  align-items: center; justify-content: center;
}
.photo-initials span {
  font-family: var(--serif);
  font-size: 6rem; font-weight: 600;
  color: rgba(201,168,76,0.25);
  letter-spacing: -0.04em;
}
.photo-caption {
  display: flex; align-items: center; gap: 0.6rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.online-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.45); }
  50% { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}

/* HERO BAR */
.hero-bar {
  max-width: 1160px; margin: 0 auto; padding: 2rem 2rem 3rem;
  display: flex; align-items: center; gap: 0;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hbar-item {
  flex: 1; min-width: 140px;
  padding: 1rem 2rem;
}
.hbar-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.4rem; font-weight: 600;
  line-height: 1;
  margin-bottom: 0.3rem;
  color: var(--white);
}
.hbar-item strong span { color: var(--gold); }
.hbar-item p {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.hbar-sep {
  width: 1px; height: 40px;
  background: var(--line);
  flex-shrink: 0;
}

/* ============================================
   ABOUT
============================================ */
#about {
  padding: 8rem 0;
  border-bottom: 1px solid var(--line);
}
.about-wrap {
  max-width: 1160px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 6rem; align-items: start;
}
.about-photo-col { position: relative; }
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover; object-position: top;
  border: 1px solid rgba(201,168,76,0.18);
}
.about-initials {
  display: none;
  width: 100%; aspect-ratio: 3/4;
  background: var(--surface);
  border: 1px solid rgba(201,168,76,0.12);
  align-items: center; justify-content: center;
}
.about-initials span {
  font-family: var(--serif);
  font-size: 7rem; font-weight: 600;
  color: rgba(201,168,76,0.2);
}

.about-text-col h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
}
.about-text-col h2 em { font-style: italic; color: var(--gold); }
.about-text-col p {
  font-size: 1rem; color: var(--muted);
  line-height: 1.8; margin-bottom: 1.25rem;
}
.about-text-col p strong { color: var(--white); font-weight: 500; }

blockquote {
  margin: 2.5rem 0;
  padding: 1.5rem 0 1.5rem 1.75rem;
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-size: 1.15rem; font-style: italic;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}

.tag-list {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-top: 2rem;
}
.tag-list span {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.22);
  padding: 0.35rem 0.85rem;
  transition: background 0.25s, border-color 0.25s;
}
.tag-list span:hover {
  background: var(--gold-dim);
  border-color: rgba(201,168,76,0.5);
}

/* ============================================
   EMPRESAS
============================================ */
#empresas {
  padding: 8rem 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.cards-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  border: 1px solid var(--line);
}
.card {
  background: var(--black);
  padding: 2.75rem;
  border: none;
  transition: background 0.3s;
  position: relative;
}
.card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.card:hover::after { transform: scaleX(1); }
.card:hover { background: #0f0f0f; }

.card-top {
  display: flex; align-items: center; gap: 1.1rem;
  margin-bottom: 1.5rem;
}
.card-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: border-color 0.25s, background 0.25s;
}
.card:hover .card-icon {
  border-color: rgba(201,168,76,0.5);
  background: var(--gold-dim);
}
.card-top h3 {
  font-family: var(--serif);
  font-size: 1.6rem; font-weight: 600;
  letter-spacing: -0.01em;
}
.card-role {
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gold);
  margin-top: 0.2rem;
}
.card-desc {
  font-size: 0.9rem; color: var(--muted);
  line-height: 1.75; margin-bottom: 1.75rem;
}
.card-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.6rem;
  margin-bottom: 2rem;
}
.card-list li {
  font-size: 0.875rem; color: rgba(255,255,255,0.55);
  padding-left: 1rem;
  position: relative;
}
.card-list li::before {
  content: '';
  position: absolute; left: 0; top: 0.55em;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold);
}
.card-tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.card-tags span {
  font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 0.28rem 0.75rem;
}

/* ============================================
   EXPERTISE
============================================ */
#expertise {
  padding: 8rem 0;
  border-bottom: 1px solid var(--line);
}
.exp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}
.exp-item {
  padding: 2.25rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s;
}
.exp-item:nth-child(3n) { border-right: none; }
.exp-item:nth-child(4),
.exp-item:nth-child(5),
.exp-item:nth-child(6) { border-bottom: none; }
.exp-item:hover { background: var(--surface); }
.exp-num {
  font-family: var(--serif);
  font-size: 2.2rem; font-weight: 600;
  color: rgba(201,168,76,0.18);
  line-height: 1;
  margin-bottom: 1.25rem;
  transition: color 0.25s;
}
.exp-item:hover .exp-num { color: rgba(201,168,76,0.4); }
.exp-item h4 {
  font-family: var(--sans);
  font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
}
.exp-item p {
  font-size: 0.85rem; color: var(--muted);
  line-height: 1.65;
}

/* ============================================
   NUMBERS
============================================ */
#numbers {
  padding: 8rem 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.numbers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}
.num-item {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--line);
  text-align: left;
  transition: background 0.25s;
}
.num-item:last-child { border-right: none; }
.num-item:hover { background: #131313; }
.num-big {
  font-family: var(--serif);
  font-size: clamp(3rem, 4vw, 4.5rem);
  font-weight: 600;
  line-height: 1; color: var(--white);
}
.num-item span {
  font-family: var(--serif);
  font-size: 2.5rem; font-weight: 600;
  color: var(--gold);
}
.num-item p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 0.75rem;
}

/* ============================================
   CONTACT
============================================ */
#contact {
  padding: 8rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-wrap {
  max-width: 1160px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 6rem; align-items: start;
}
.contact-left h2 {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.contact-left > p {
  font-size: 1rem; color: var(--muted);
  line-height: 1.75; margin-bottom: 3rem;
}
.contact-info { display: flex; flex-direction: column; gap: 0; }
.ci {
  display: flex; flex-direction: column;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.25s;
}
.ci:first-child { border-top: 1px solid var(--line); }
.ci:hover { padding-left: 0.5rem; }
.ci-label {
  font-size: 0.65rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--gold); margin-bottom: 0.2rem;
}
.ci-val {
  font-size: 0.9rem; color: var(--muted);
  transition: color 0.25s;
}
.ci:hover .ci-val { color: var(--white); }

/* SOCIAL */
.social-links { display: flex; gap: 1rem; margin-top: 2rem; }
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--muted);
  transition: color 0.25s, border-color 0.25s, transform 0.25s;
}
.social-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* FORM */
#contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-size: 0.65rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--muted);
}
.field input,
.field textarea {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: var(--sans); font-size: 0.9rem;
  outline: none; resize: none;
  transition: border-color 0.25s;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,0.18); }
.field input:focus,
.field textarea:focus { border-color: rgba(201,168,76,0.5); }

/* ============================================
   FOOTER
============================================ */
footer {
  padding: 3rem 0;
  background: var(--surface);
}
.footer-wrap {
  max-width: 1160px; margin: 0 auto; padding: 0 2rem 2rem;
  display: flex; justify-content: space-between; align-items: flex-end;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1.5rem;
}
.footer-name {
  font-family: var(--serif);
  font-size: 1.5rem; font-weight: 600;
  margin-bottom: 0.2rem;
}
.footer-sub { font-size: 0.75rem; color: var(--muted); }
.footer-nav {
  display: flex; gap: 2rem;
}
.footer-nav a {
  font-size: 0.75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); transition: color 0.25s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1160px; margin: 0 auto; padding: 0 2rem;
}
.footer-bottom p {
  font-size: 0.72rem; color: rgba(255,255,255,0.2);
}

/* ============================================
   INSTAGRAM
============================================ */
#instagram {
  padding: 8rem 0;
  border-bottom: 1px solid var(--line);
}

.ig-section-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 480px;
}

.ig-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0;
}

.ig-track-outer {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.ig-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.ig-card {
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.3s;
}

.ig-card:hover {
  border-color: rgba(201,168,76,0.4);
}

.ig-card blockquote.instagram-media {
  margin: 0 !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  border: 0 !important;
}

.ig-card iframe {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  border: 0 !important;
}

.ig-embed-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  background: var(--surface);
}

.ig-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.ig-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--surface2) 0%, var(--surface) 100%);
}

.ig-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ig-card:hover .ig-img { transform: scale(1.05); }

.ig-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}

.ig-tag {
  display: inline-block;
  background: rgba(10,10,10,0.75);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 9px;
}

.ig-card-body {
  padding: 1.25rem 1.4rem 1.5rem;
}

.ig-caption {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  padding-bottom: 2px;
  transition: border-color 0.25s, color 0.25s;
}

.ig-btn:hover {
  border-color: var(--gold);
  color: #d9b85c;
}

.ig-arrow {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.25);
  background: transparent;
  color: var(--gold);
  border-radius: 50%;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}

.ig-arrow:hover:not(:disabled) {
  background: var(--gold-dim);
  border-color: var(--gold);
  transform: scale(1.08);
}

.ig-arrow:disabled {
  opacity: 0.22;
  cursor: not-allowed;
}

.ig-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 1.75rem 0 2.5rem;
}

.ig-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(201,168,76,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s;
}

.ig-dot.active {
  background: var(--gold);
  width: 22px;
}

.ig-follow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.ig-handle {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* INSTAGRAM MODAL */
.ig-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.ig-modal.open {
  opacity: 1;
  pointer-events: all;
}

.ig-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ig-modal-box {
  position: relative;
  z-index: 1;
  width: calc(100% - 2rem);
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: none;
  transform: translateY(16px);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ig-modal-box::-webkit-scrollbar { display: none; }

.ig-modal.open .ig-modal-box {
  transform: translateY(0);
}

.ig-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s, color 0.25s;
}

.ig-modal-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.ig-modal-embed {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ig-modal-embed blockquote {
  margin: 0 !important;
  width: 100% !important;
}

.ig-modal-loading {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ig-modal-loading::before {
  content: '';
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(201,168,76,0.3);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  flex-shrink: 0;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .numbers-grid { grid-template-columns: repeat(2,1fr); }
  .num-item:nth-child(2) { border-right: none; }
  .num-item:nth-child(2),
  .num-item:nth-child(3) { border-bottom: 1px solid var(--line); }
  .exp-grid { grid-template-columns: repeat(2,1fr); }
  .exp-item:nth-child(2n) { border-right: none; }
  .exp-item:nth-child(3) { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .exp-item:nth-child(5),
  .exp-item:nth-child(6) { border-bottom: none; }
}

@media (max-width: 900px) {
  .ig-arrow { width: 38px; height: 38px; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 6rem; }
  .hero-right { justify-content: flex-start; order: -1; }
  .photo-wrap { width: 260px; }
  .hero-sub { max-width: 100%; }
  .about-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .cards-grid { grid-template-columns: 1fr; gap: 0; border: none; }
  .card { border: 1px solid var(--line); margin-bottom: 1.5px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .hbar-sep { display: none; }
  .hero-bar { gap: 0; }
  .hbar-item { min-width: 45%; padding: 1rem 1.25rem; }
  .hero-left h1 { font-size: 3.2rem; }
  .exp-grid { grid-template-columns: 1fr; border: none; gap: 1px; }
  .exp-item { border: 1px solid var(--line) !important; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
  .footer-nav { flex-wrap: wrap; gap: 1rem; }
  .cursor { display: none; }
  body { cursor: default; }
  a, button { cursor: pointer; }
}

@media (max-width: 600px) {
  .ig-arrow { display: none; }
  .ig-carousel-wrap { gap: 0; }
  .ig-handle { display: none; }
}

@media (max-width: 480px) {
  /* Spacing & containers */
  .container,
  .nav-wrap,
  .hero-inner,
  .hero-bar,
  .about-wrap,
  .contact-wrap,
  .footer-wrap,
  .footer-bottom { padding-left: 1.25rem; padding-right: 1.25rem; }
  section,
  #about, #empresas, #expertise, #instagram, #numbers, #contact { padding: 4rem 0; }

  /* Hero */
  .hero-inner { padding-top: 5rem; gap: 2rem; }
  .hero-right { justify-content: center; }
  .photo-wrap { width: 220px; }
  .hero-left h1 { font-size: 2.6rem; line-height: 1; }
  .hero-sub { font-size: 0.92rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .btn-primary { width: 100%; text-align: center; }

  /* Hero bar */
  .hbar-item { min-width: 100%; padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
  .hbar-item:last-child { border-bottom: none; }
  .hbar-item strong { font-size: 2rem; }

  /* Cards */
  .card { padding: 1.75rem; }
  .card-top h3 { font-size: 1.35rem; }

  /* Expertise */
  .exp-item { padding: 1.5rem; }

  /* Numbers */
  .numbers-grid { grid-template-columns: 1fr; }
  .num-item { border-right: none !important; border-bottom: 1px solid var(--line); padding: 2rem 1.5rem; }
  .num-item:last-child { border-bottom: none; }

  /* Contact */
  .contact-wrap { gap: 2rem; }
  .ci-val { font-size: 0.82rem; word-break: break-all; }

  /* Footer */
  .footer-nav { flex-direction: column; gap: 0.6rem; }
}
