:root {
  --blanco-roto-100: #FCFDF9;
  --blanco-roto-200: #F9F8F6;
  --blanco-roto-300: #F8F5F2;
  --blanco-roto-500: #F5F2EE;
  --blanco-roto-700: #BAB8B5;
  --blanco-roto-800: #7F7E7C;
  --blanco-roto-900: #454443;
  --cobre-100: #ECD8C6;
  --cobre-200: #DBB795;
  --cobre-300: #C99564;
  --cobre-500: #B87333;
  --cobre-700: #8C5727;
  --cobre-800: #5F3C1A;
  --cobre-900: #33200E;
  --gris-pizarra-100: #CCC;
  --gris-pizarra-200: #A1A1A1;
  --gris-pizarra-300: #767676;
  --gris-pizarra-500: #4A4A4A;
  --gris-pizarra-700: #383838;
  --gris-pizarra-800: #262626;
  --gris-pizarra-900: #151515;
  --carbon-100: #BEBEBE;
  --carbon-200: #868686;
  --carbon-300: #4E4E4E;
  --carbon-500: #161616;
  --carbon-700: #111111;
  --carbon-800: #0B0B0B;
  --carbon-900: #060606;
  --background-light: #F5F2EE;
  --background-dark: #161616;
  --background-overlay: #111111;
  --accent-primary: #B87333;
  --accent-light: #8C5727;
  --accent-dark: #5F3C1A;
  --text-primary: #161616;
  --text-secondary: #4A4A4A;
  --text-muted: #767676;
  --text-on-dark: #F5F2EE;
  --border-default: #767676;
  --border-subtle: #CCC;
  --font-size-xs: 10px;
  --font-size-sm: 12px;
  --font-size-base: 16px;
  --font-size-md: 20px;
  --font-size-lg: 24px;
  --font-size-xl: 32px;
  --font-size-2xl: 40px;
  --font-size-3xl: 52px;
  --font-size-4xl: 64px;
  --line-height-tight: 1.1;
  --line-height-snug: 1.2;
  --line-height-normal: 1.4;
  --line-height-relaxed: 1.6;
  --line-height-loose: 1.8;
  --letter-spacing-tight: -0.5px;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 1.5px;
  --letter-spacing-wider: 3px;
  --letter-spacing-widest: 5px;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #161616;
  background-color: #F5F2EE;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 150ms ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 24px;
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245, 242, 238, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #CCC;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-container .logo-image {
  height: 40px;
  width: auto;
}

.logo {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #161616;
}

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #B87333;
  transition: width 250ms ease;
}
.nav-links a:hover {
  color: #B87333;
}
.nav-links a:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 36px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}
.nav-toggle span {
  width: 100%;
  height: 3px;
  background: #161616;
  border-radius: 3px;
  transition: all 250ms ease;
  transform-origin: center;
}
.nav-toggle.nav-toggle-open span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.nav-toggle.nav-toggle-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.nav-toggle-open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
@media (max-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #F5F2EE;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  transition: right 250ms ease;
  z-index: 999;
}
.nav-menu.nav-menu-open {
  display: flex !important;
  right: 0;
}
.nav-menu a {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #161616;
  padding: 16px;
}
.nav-menu a:hover {
  color: #B87333;
}
@media (max-width: 1024px) {
  .nav-menu {
    display: none !important;
  }
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 250ms ease;
  z-index: 998;
}
.nav-overlay.nav-overlay-open {
  opacity: 1;
  visibility: visible;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 4px;
  transition: all 250ms ease;
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
.btn.btn-primary {
  background: #B87333;
  color: #F5F2EE;
}
.btn.btn-primary:hover {
  background: #5F3C1A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 115, 51, 0.3);
}
@media (max-width: 768px) {
  .btn.btn-primary:hover {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(184, 115, 51, 0.2);
  }
}
@media (max-width: 480px) {
  .btn.btn-primary {
    padding: 8px 16px;
    font-size: 10px;
  }
  .btn.btn-primary:hover {
    transform: none;
  }
}
.btn.btn-full {
  width: 100%;
}

section {
  padding: 96px 0;
}
@media (max-width: 768px) {
  section {
    padding: 64px 0;
  }
}
@media (max-width: 480px) {
  section {
    padding: 48px 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 48px;
  }
}
@media (max-width: 480px) {
  .section-header {
    margin-bottom: 32px;
  }
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .section-title {
    font-size: 24px;
  }
}

.section-subtitle {
  font-family: "Space Mono", monospace;
  font-size: 12px;
  color: #767676;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
@media (max-width: 480px) {
  .section-subtitle {
    font-size: 10px;
  }
}

.section-label {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #B87333;
  margin-bottom: 8px;
}
@media (max-width: 480px) {
  .section-label {
    font-size: 10px;
    margin-bottom: 4px;
  }
}

.project-card {
  background: #F5F2EE;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.project-card .project-image {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
@media (max-width: 480px) {
  .project-card .project-image {
    aspect-ratio: 16/9;
  }
}
.project-card .project-info {
  padding: 24px;
}
@media (max-width: 768px) {
  .project-card .project-info {
    padding: 16px;
  }
}
@media (max-width: 480px) {
  .project-card .project-info {
    padding: 8px;
  }
}
.project-card .project-category {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #B87333;
  margin-bottom: 8px;
}
@media (max-width: 480px) {
  .project-card .project-category {
    font-size: 10px;
    margin-bottom: 4px;
  }
}
.project-card .project-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .project-card .project-title {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .project-card .project-title {
    font-size: 12px;
  }
}
.project-card .project-description {
  font-size: 12px;
  color: #4A4A4A;
  line-height: 1.6;
  margin-bottom: 16px;
}
@media (max-width: 480px) {
  .project-card .project-description {
    font-size: 10px;
    margin-bottom: 8px;
  }
}
.project-card .project-link {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #161616;
  position: relative;
}
@media (max-width: 480px) {
  .project-card .project-link {
    font-size: 10px;
  }
}
.project-card .project-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #B87333;
  transition: width 250ms ease;
}
.project-card .project-link:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  .project-card:hover {
    transform: translateY(-4px);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

label {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #767676;
}

input,
select,
textarea {
  padding: 16px;
  font-family: inherit;
  font-size: 16px;
  background: #F5F2EE;
  border: 1px solid #767676;
  border-radius: 4px;
  color: #161616;
  transition: border-color 150ms ease;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #B87333;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border-radius: 4px;
  margin-bottom: 16px;
  animation: slideIn 0.3s ease-out;
}
.form-alert.form-alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.form-alert.form-alert-success .alert-icon {
  color: #28a745;
  font-weight: bold;
}
.form-alert.form-alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.form-alert.form-alert-error .alert-icon {
  color: #dc3545;
  font-weight: bold;
}
.form-alert .alert-icon {
  font-size: 24px;
  flex-shrink: 0;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer {
  background: #111111;
  color: #F5F2EE;
  padding: 64px 0 24px;
}
.footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  margin-bottom: 48px;
}
.footer .footer-brand .logo {
  color: #F5F2EE;
  margin-bottom: 8px;
}
.footer .footer-brand p {
  font-size: 12px;
  color: #A1A1A1;
}
.footer .footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: 8px;
}
.footer .footer-links h4,
.footer .footer-social h4 {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  color: #B87333;
}
.footer .footer-links a,
.footer .footer-social a {
  display: block;
  font-size: 12px;
  color: #A1A1A1;
  margin-bottom: 8px;
  transition: color 150ms ease;
}
.footer .footer-links a:hover,
.footer .footer-social a:hover {
  color: #F5F2EE;
}
.footer .footer-bottom {
  border-top: 1px solid #161616;
  padding-top: 24px;
  text-align: center;
}
.footer .footer-bottom p {
  font-size: 10px;
  color: #767676;
}

.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox-overlay.lightbox-active {
  display: flex;
  opacity: 1;
}

.lightbox-container {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid #F8F5F2;
  color: #F8F5F2;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 150ms ease;
}
.lightbox-close:hover {
  background: #F8F5F2;
  color: #060606;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #F8F5F2;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 150ms ease;
  backdrop-filter: blur(10px);
}
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}
.lightbox-nav.lightbox-prev {
  left: -80px;
}
.lightbox-nav.lightbox-next {
  right: -80px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(6, 6, 6, 0.2), rgba(6, 6, 6, 0.6)), url(assets/img/hero-img.jpg) center/cover no-repeat;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 80px;
}
.hero .hero-content {
  max-width: 800px;
  padding: 48px;
  text-align: center;
}
@media (max-width: 768px) {
  .hero .hero-content {
    padding: 24px;
  }
}
@media (max-width: 480px) {
  .hero .hero-content {
    padding: 16px;
  }
}
.hero .hero-subtitle {
  font-family: "Space Mono", monospace;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #F8F5F2;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .hero .hero-subtitle {
    font-size: 10px;
    margin-bottom: 16px;
  }
}
.hero .hero-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
  color: #FCFDF9;
}
@media (max-width: 1024px) {
  .hero .hero-title {
    font-size: 52px;
  }
}
@media (max-width: 768px) {
  .hero .hero-title {
    font-size: 40px;
    margin-bottom: 24px;
  }
}
@media (max-width: 480px) {
  .hero .hero-title {
    font-size: 32px;
  }
}

.work {
  background: #F8F5F2;
}
.work .projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 32px;
}
@media (max-width: 1024px) {
  .work .projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .work .projects-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.about {
  background: #F5F2EE;
}
.about .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
@media (max-width: 1024px) {
  .about .about-grid {
    gap: 48px;
  }
}
@media (max-width: 768px) {
  .about .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.about .about-title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .about .about-title {
    font-size: 32px;
  }
}
.about .about-description {
  font-size: 16px;
  color: #4A4A4A;
  line-height: 1.6;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .about .about-description {
    font-size: 12px;
  }
}
.about .about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 480px) {
  .about .about-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.stat {
  text-align: center;
  padding: 32px;
  background: #F9F8F6;
  border-radius: 8px;
}
.stat .stat-number {
  display: block;
  font-size: 40px;
  font-weight: 700;
  color: #B87333;
  margin-bottom: 4px;
}
.stat .stat-label {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #767676;
}

.services {
  background: #161616;
  color: #F5F2EE;
}
.services .section-title,
.services .section-subtitle {
  color: #F5F2EE;
}
.services .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
@media (max-width: 768px) {
  .services .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.service-card {
  padding: 32px;
  background: #111111;
  border-radius: 8px;
  transition: background 250ms ease;
}
.service-card:hover {
  background: #0B0B0B;
}
.service-card .service-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}
.service-card .service-description {
  font-size: 12px;
  color: #A1A1A1;
  line-height: 1.6;
}

.contact {
  background: #F5F2EE;
}
.contact .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
}
@media (max-width: 1024px) {
  .contact .contact-grid {
    gap: 48px;
  }
}
@media (max-width: 768px) {
  .contact .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.contact .contact-title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .contact .contact-title {
    font-size: 32px;
  }
}
.contact .contact-description {
  font-size: 16px;
  color: #4A4A4A;
  line-height: 1.6;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .contact .contact-description {
    font-size: 12px;
    margin-bottom: 24px;
  }
}
.contact .contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact .contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
}
@media (max-width: 480px) {
  .contact .contact-item {
    flex-wrap: wrap;
  }
}
.contact .contact-item .contact-icon {
  font-size: 24px;
  width: 24px;
  text-align: center;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hero-title {
    font-size: 40px;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-stats {
    grid-template-columns: 1fr;
  }
}

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