@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800;900&family=IBM+Plex+Sans:wght@300;400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* ==============================
   RESET
   ============================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ==============================
   DESIGN TOKENS
   ============================== */
:root {
  --black: #0A0A0A;
  --surface: #141414;
  --surface-raised: #1E1E1E;
  --surface-border: #2A2A2A;
  --text-primary: #E8E4DF;
  --text-secondary: #9A9590;
  --text-muted: #5C5854;
  --amber: #D4A843;
  --amber-bright: #ECC054;
  --amber-dim: #A07E2E;
  --red-signal: #C43030;
  --white: #F5F3F0;
  --stripe-opacity: 0.03;

  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'IBM Plex Sans', 'Helvetica Neue', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  --max-w: 1200px;
  --gap: 24px;
  --radius: 2px;
}

/* ==============================
   BILINGUAL TOGGLE
   ============================== */
[lang="es"] .en { display: none !important; }
[lang="en"] .es { display: none !important; }

/* ==============================
   BASE
   ============================== */
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ==============================
   DIAGONAL STRIPE TEXTURE
   ============================== */
.stripe-bg {
  position: relative;
}
.stripe-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(212, 168, 67, var(--stripe-opacity)) 10px,
    rgba(212, 168, 67, var(--stripe-opacity)) 11px
  );
  pointer-events: none;
  z-index: 0;
}

/* ==============================
   NAVIGATION
   ============================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--surface-border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

.nav-brand-sub {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--amber);
}

.nav-lang {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  cursor: pointer;
  border: 1px solid var(--surface-border);
  padding: 4px 10px;
  border-radius: var(--radius);
  transition: all 0.2s;
}

.nav-lang:hover {
  color: var(--amber);
  border-color: var(--amber-dim);
}

.nav-cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black) !important;
  background: var(--amber);
  padding: 8px 18px;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--amber-bright);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: var(--black);
    border-bottom: 1px solid var(--surface-border);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
  }
  .nav-links.open { display: flex; }
  .nav-cta { text-align: center; }
}

/* ==============================
   HERO
   ============================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) contrast(1.15) saturate(0.85);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to top, var(--black) 0%, rgba(10,10,10,0.7) 30%, rgba(10,10,10,0.15) 60%, rgba(10,10,10,0.4) 100%);
}

.hero-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--amber) 0px,
    var(--amber) 40px,
    var(--black) 40px,
    var(--black) 48px
  );
  z-index: 5;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
  padding-bottom: 80px;
  padding-top: 160px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid var(--amber-dim);
  border-radius: var(--radius);
  background: rgba(212, 168, 67, 0.06);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 16px;
}

.hero-title span {
  display: block;
  color: var(--amber);
}

.hero-tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.5;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-stat-stars {
  color: var(--amber);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.hero-divider {
  width: 1px;
  height: 36px;
  background: var(--surface-border);
}

/* ==============================
   SECTIONS — SHARED
   ============================== */
.section {
  padding: 100px 0;
  position: relative;
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 20px;
}

.section-desc {
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.6;
}

/* ==============================
   ABOUT STRIP
   ============================== */
.about-strip {
  background: var(--surface);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
  padding: 60px 0;
}

.about-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-strip-text p {
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-strip-text p:last-child { margin-bottom: 0; }

.about-strip-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
}

.about-strip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-strip-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: var(--radius);
}

@media (max-width: 768px) {
  .about-strip-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ==============================
   SERVICES
   ============================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 48px;
  background: var(--surface-border);
  border: 1px solid var(--surface-border);
}

.service-card {
  background: var(--surface);
  padding: 48px 40px;
  position: relative;
  transition: background 0.3s;
}

.service-card:hover {
  background: var(--surface-raised);
}

.service-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  color: var(--surface-border);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s;
}

.service-card:hover .service-number {
  color: var(--amber-dim);
}

.service-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.15;
}

.service-desc {
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 36px 28px;
  }
}

/* ==============================
   GALLERY / LOOKBOOK
   ============================== */
.gallery {
  background: var(--black);
}

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

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s;
  filter: saturate(0.8);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1);
}

.gallery-item-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(10,10,10,0.85), transparent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
}

.gallery-item:hover .gallery-item-label {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item--wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item--wide {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item--wide {
    grid-column: span 1;
    aspect-ratio: 16/9;
  }
}

/* ==============================
   REVIEWS
   ============================== */
.reviews {
  background: var(--surface);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
}

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.reviews-score {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.reviews-score-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 4rem;
  color: var(--white);
  line-height: 1;
}

.reviews-score-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reviews-score-stars {
  color: var(--amber);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.reviews-score-count {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.review-card {
  background: var(--surface-raised);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid var(--surface-border);
}

.review-stars {
  color: var(--amber);
  font-size: 0.8rem;
  letter-spacing: 3px;
}

.review-text {
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--surface-border);
}

.review-author-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.review-author-source {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   INFO / CONTACT SECTION
   ============================== */
.info {
  background: var(--black);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

.info-block-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 16px;
}

.info-block p,
.info-block address {
  font-style: normal;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.info-block a {
  color: var(--text-primary);
  transition: color 0.2s;
}

.info-block a:hover {
  color: var(--amber);
}

.hours-table {
  width: 100%;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--surface-border);
  font-size: 0.85rem;
}

.hours-row:last-child { border-bottom: none; }

.hours-day {
  font-weight: 500;
  color: var(--text-primary);
}

.hours-time {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.hours-closed {
  color: var(--red-signal);
}

@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ==============================
   CTA BAND
   ============================== */
.cta-band {
  background: var(--amber);
  padding: 48px 0;
  text-align: center;
}

.cta-band-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--black);
  margin-bottom: 8px;
}

.cta-band-sub {
  font-weight: 300;
  font-size: 1rem;
  color: rgba(10,10,10,0.6);
  margin-bottom: 28px;
}

.cta-band .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--amber);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: all 0.2s;
}

.cta-band .btn:hover {
  background: var(--surface);
  transform: translateY(-1px);
}

/* ==============================
   FOOTER
   ============================== */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--surface-border);
  padding: 32px 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--amber);
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ==============================
   UTILITY CLASSES
   ============================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius);
  transition: all 0.2s;
}

.btn-primary:hover {
  background: var(--amber-bright);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--amber);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid var(--amber-dim);
  border-radius: var(--radius);
  transition: all 0.2s;
}

.btn-outline:hover {
  background: rgba(212, 168, 67, 0.08);
  border-color: var(--amber);
}

/* ==============================
   ANIMATIONS
   ============================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-in {
  animation: fadeInUp 0.7s ease-out both;
}

.animate-in-delay-1 { animation-delay: 0.1s; }
.animate-in-delay-2 { animation-delay: 0.2s; }
.animate-in-delay-3 { animation-delay: 0.3s; }
.animate-in-delay-4 { animation-delay: 0.4s; }
.animate-in-delay-5 { animation-delay: 0.5s; }

/* ==============================
   PAGE: SERVICES (servicios.html)
   ============================== */
.page-header {
  padding-top: 140px;
  padding-bottom: 60px;
  background: var(--surface);
  border-bottom: 1px solid var(--surface-border);
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-bottom: 3px;
  background: var(--surface-border);
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-content {
  background: var(--surface);
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-detail-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 5rem;
  color: var(--surface-border);
  line-height: 1;
  margin-bottom: 16px;
}

.service-detail-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.service-detail-desc {
  font-weight: 300;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 420px;
}

.service-detail-features {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-detail-features li {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  padding-left: 16px;
  position: relative;
}

.service-detail-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 1px;
}

@media (max-width: 768px) {
  .service-detail {
    grid-template-columns: 1fr;
  }
  .service-detail:nth-child(even) {
    direction: ltr;
  }
  .service-detail-content {
    padding: 36px 28px;
  }
  .service-detail-image {
    aspect-ratio: 16/9;
  }
}

/* ==============================
   MAP EMBED
   ============================== */
.map-container {
  width: 100%;
  height: 300px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  overflow: hidden;
  margin-top: 24px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.8) invert(0.92) contrast(0.9);
}

/* ==============================
   PRICE BADGE
   ============================== */
.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--amber);
  padding: 4px 10px;
  border: 1px solid var(--amber-dim);
  border-radius: var(--radius);
}
