@charset "UTF-8";
/* ==========================================================================
   CONFIGURACIÓN INICIAL & VARIABLES
   ========================================================================== */
/* --------------------------------------------------
   Base Reset
   Editorial / Minimal / Predictable
-------------------------------------------------- */
/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
* {
  margin: 0;
  padding: 0;
}

/* Document */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* Body */
body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Media elements */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* Forms */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

/* Buttons */
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* Lists */
ul,
ol {
  list-style: none;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  line-height: 1.25;
}

/* Text elements */
p,
blockquote,
figure {
  margin: 0;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Prevent text overflow */
* {
  overflow-wrap: break-word;
}

/* Focus styles (accessibility) */
:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

/* Remove animations for reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.6;
}

/* ==========================================================================
   LAYOUT GLOBAL (Header, Footer, Main)
   ========================================================================== */
.site-header {
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
}

.header-inner, .footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 4vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-nav ul, .footer-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.site-nav a, .footer-links a {
  text-decoration: none;
  color: inherit;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  transition: opacity 0.3s;
}
.site-nav a:hover, .footer-links a:hover {
  opacity: 0.5;
}

.site-main {
  padding: 0 4vw;
}

/* ==========================================================================
   HOME / FRONT PAGE (Look Editorial)
   ========================================================================== */
.home-editorial {
  max-width: 1440px;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .home-editorial {
    max-width: 90%;
  }
}
.home-editorial .hero-editorial {
  height: 70vh;
  display: flex;
  align-items: center;
  max-width: 900px;
  padding: 50px;
}
.home-editorial .hero-editorial h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.home-editorial .section-header {
  margin: 50px;
}
.home-editorial .project-info {
  margin: 50px;
}

/* ==========================================================================
   PORTFOLIO CURATED (Grilla por categorías)
   ========================================================================== */
.portfolio-curated {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 0;
}
@media (max-width: 1440px) {
  .portfolio-curated {
    max-width: 90%;
  }
}
.portfolio-curated .portfolio-anchor-nav {
  margin-bottom: 6rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
}
.portfolio-curated .portfolio-anchor-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
}
.portfolio-curated .portfolio-anchor-nav a {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: #999;
  text-decoration: none;
}
.portfolio-curated .portfolio-anchor-nav a:hover {
  color: #000;
}
.portfolio-curated .portfolio-block {
  margin-bottom: 10rem;
  scroll-margin-top: 120px;
}
.portfolio-curated .portfolio-block .block-header {
  border-bottom: 1px solid #111;
  margin-bottom: 4rem;
  padding-bottom: 0.5rem;
}
.portfolio-curated .portfolio-block .block-header .category-name {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.portfolio-curated .projects-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media (max-width: 900px) {
  .portfolio-curated .projects-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   PROJECT CARD (Componente reutilizable)
   ========================================================================== */
.project-card {
  text-decoration: none;
  color: inherit;
  background: #323030;
  color: #a6a4a4;
  text-align: center;
  padding: 0 0 20px;
}
.project-card .project-thumb {
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.project-card .project-thumb img {
  width: 100%;
  height: auto;
  /*aspect-ratio: 16 / 10; // Mantiene consistencia visual en el grid*/
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.project-card .project-thumb img:hover {
  transform: scale(1.03);
}
.project-card .project-title {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.project-card:nth-child(even) {
  background: #2a2a2a;
}
/* ==========================================================================
   SINGLE PROJECT & PAGES (Lectura y aire)
   ========================================================================== */
.entry-content-editorial {
  max-width: 800px;
  margin: 6rem auto;
  font-size: 1.15rem;
  line-height: 1.85;
  color: #333;
}
.entry-content-editorial p {
  margin-bottom: 2rem;
}
.entry-content-editorial h2 {
  font-size: 2rem;
  margin: 4rem 0 1.5rem;
  letter-spacing: -0.02em;
}

.project-header {
  padding: 50px;
}

.project-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.project-details-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin: 4rem 0;
}
@media (max-width: 768px) {
  .project-details-grid {
    display: block;
  }
  .project-details-grid .details-sidebar {
    margin-bottom: 3rem;
  }
}
.project-details-grid .details-sidebar {
  margin-left: 50px;
}
.project-details-grid .detail-item {
  margin-bottom: 20px;
}
.project-details-grid .label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 0.5rem;
}

.project-navigation {
  margin: 50px;
}

.wp-style-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5em;
}

@media (max-width: 1024px) {
  .wp-style-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .wp-style-gallery {
    grid-template-columns: 1fr;
  }
}
.wp-style-gallery .instagram-media {
  margin: 0 !important;
  max-width: 100% !important;
}

.portfolio-cta a {
  margin-top: 4rem;
  text-align: center;
}

/*# sourceMappingURL=main.css.map */
