/* ==========================================================================
   Gonzalo Hernández Ferriz - Carbon Design System
   High-contrast editorial & futuristic aesthetic with neon lime, deep black,
   bento geometry, pill headers, lens matrix and tactile micro-interactions.
   ========================================================================== */

:root {
  /* Carbon Color Palette */
  --bg-page: #f2f3f5;
  --bg-white: #ffffff;
  --bg-dark: #0d0e12;
  --bg-card: #ffffff;
  
  --accent-lime: #e2ff3b;
  --accent-lime-hover: #d2f227;
  --accent-black: #000000;
  
  --text-main: #0a0b0d;
  --text-muted: #6e737d;
  --text-light: #ffffff;
  
  --border-subtle: #e5e7eb;
  --border-dark: #1f2229;
  --border-pill: #000000;

  --radius-xs: 8px;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 40px;
  --radius-full: 9999px;

  --font-heading: 'Space Grotesk', -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-accent: 'Syne', sans-serif;

  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 16px 36px rgba(0, 0, 0, 0.08);
  --shadow-black: 0 10px 25px rgba(0, 0, 0, 0.2);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Global Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-main);
  line-height: 1.15;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ==========================================================================
   Top Announcement Bar
   ========================================================================== */
.top-banner {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 0.6rem 1.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.top-banner-content {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.banner-pill {
  background: var(--accent-lime);
  color: #000;
  padding: 0.15rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.top-banner-link {
  color: var(--accent-lime);
  text-decoration: underline;
  margin-left: 0.5rem;
  font-weight: 700;
}

/* ==========================================================================
   Navigation Bar (Carbon Aesthetic)
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(242, 243, 245, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  padding: 1rem 0;
}

.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #000;
}

.brand-glyph {
  width: 32px;
  height: 32px;
  background: #000;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: opacity var(--transition-fast);
}

.nav-link:hover {
  opacity: 0.7;
}

.pill-outline {
  border: 1.5px solid #000;
  border-radius: var(--radius-full);
  padding: 0.25rem 0.95rem;
  font-weight: 700;
}

.nav-sup {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.btn-clean-icon {
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow-subtle);
  transition: transform var(--transition-fast);
}

.btn-clean-icon:hover {
  transform: translateY(-2px);
}

.btn-carbon-black {
  background: var(--accent-black);
  color: #fff;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-black);
}

.btn-carbon-black:hover {
  transform: translateY(-2px);
  background: #1e2025;
}

.arrow-circle {
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.btn-carbon-lime {
  background: var(--accent-lime);
  color: #000;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border: 2px solid #000;
  transition: all var(--transition-fast);
}

.btn-carbon-lime:hover {
  background: var(--accent-lime-hover);
  transform: translateY(-2px);
}

.btn-carbon-lime .arrow-circle {
  background: #000;
  color: var(--accent-lime);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
}

/* ==========================================================================
   Main Layout & Bento Container
   ========================================================================== */
.main-layout {
  max-width: 1320px;
  margin: 1.5rem auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* ==========================================================================
   Hero Bento Section
   ========================================================================== */
.hero-bento {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.bento-col-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bento-col-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Hero Headline Card */
.card-hero-title {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 3rem 2.75rem;
  box-shadow: var(--shadow-subtle);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.title-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.dot-green {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.hero-heading {
  font-size: clamp(2.3rem, 4vw, 3.3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 1.25rem;
}

/* Pill Highlight Container (Carbon Signature) */
.pill-highlight-container {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.15rem;
}

.pill-highlight {
  display: inline-block;
  background: var(--accent-lime);
  color: #000;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.9em;
  padding: 0.15rem 1.15rem;
  border: 2.5px solid #000;
  border-radius: var(--radius-full);
  box-shadow: 2px 3px 0px #000;
  transform: rotate(-1.5deg);
  transition: transform var(--transition-bounce);
}

.card-hero-title:hover .pill-highlight {
  transform: rotate(0deg) scale(1.05);
}

.hero-subtext {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 90%;
}

/* Featured Hero Artwork Card */
.card-hero-artwork {
  background: #000;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  height: 380px;
  cursor: pointer;
  box-shadow: var(--shadow-hover);
}

.hero-art-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-hero-artwork:hover .hero-art-img {
  transform: scale(1.05);
}

.artwork-timer-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  color: #000;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  z-index: 5;
}

.artwork-arrow-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
  color: #000;
  z-index: 5;
  transition: transform var(--transition-bounce), background var(--transition-fast);
}

.card-hero-artwork:hover .artwork-arrow-btn {
  transform: scale(1.15) rotate(45deg);
  background: var(--accent-lime);
}

.artwork-bottom-pill {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--accent-lime);
  border: 2px solid #000;
  color: #000;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  z-index: 5;
}

.pill-dot-icon {
  font-size: 0.95rem;
}

.pill-arrow-mini {
  font-size: 1.2rem;
  margin-left: 0.25rem;
}

/* ==========================================================================
   Bento Right Column (Geometry Stats & Lens Matrix)
   ========================================================================== */
.card-stats-geometry {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  background: #000;
}

/* Yellow Top Hemisphere */
.geo-shape.yellow-shape {
  background: var(--accent-lime);
  color: #000;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 2px solid #000;
}

.geo-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.geo-label-box {
  background: #000;
  color: var(--accent-lime);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.corner-bracket {
  font-size: 1.5rem;
  font-weight: 800;
}

.geo-big-stat {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin: 1rem 0;
}

.stat-number {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.stat-plus {
  font-size: 1.35rem;
  font-weight: 800;
}

.geo-mini-profiles {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.avatar-stack img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #000;
  object-fit: cover;
}

.geo-profile-desc {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
}

.geo-list-chips {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-top: 1.5px solid rgba(0, 0, 0, 0.2);
  padding-top: 0.85rem;
}

.chip-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0.7;
}

.chip-item.active {
  opacity: 1;
  font-weight: 900;
}

.chip-num {
  font-size: 0.7rem;
}

/* Black Bottom Hemisphere */
.geo-shape.black-shape {
  background: #000;
  color: #fff;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.geo-big-stat.light-text {
  color: #fff;
}

.geo-stat-caption {
  font-size: 0.82rem;
  color: #a1a1aa;
  line-height: 1.45;
  margin-bottom: 1.5rem;
}

.btn-geo-pill {
  background: #fff;
  color: #000;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.btn-geo-pill:hover {
  background: var(--accent-lime);
  transform: translateY(-2px);
}

/* Lens Matrix (Carbon signature grid) */
.card-lens-matrix {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
}

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.lens-item {
  overflow: hidden;
  background: #e4e4e7;
  position: relative;
}

.lens-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.lens-item:hover img {
  transform: scale(1.15);
}

.lens-item.pill-v {
  height: 110px;
  border-radius: var(--radius-full);
}

.lens-item.pill-h {
  height: 60px;
  border-radius: var(--radius-full);
}

.lens-item.circle {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border-radius: 50%;
}

.lens-item.circle-badge {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border-radius: 50%;
  background: #000;
  color: var(--accent-lime);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  border: 2px solid var(--accent-lime);
}

.badge-num {
  font-size: 1.1rem;
  line-height: 1;
}

.badge-txt {
  font-size: 0.65rem;
  text-transform: uppercase;
}

.matrix-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

.matrix-badge {
  background: #000;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   Section: About The Artist
   ========================================================================== */
.section-about {
  display: flex;
  flex-direction: column;
}

.about-bento-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 1.5rem;
}

.card-about-main {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
}

.about-header-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pill-number {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-muted);
}

.about-title {
  font-size: 2.2rem;
}

.artist-intro-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.artist-photo-frame {
  position: relative;
  flex-shrink: 0;
}

.artist-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid #000;
  object-fit: cover;
}

.frame-tag {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-lime);
  border: 1.5px solid #000;
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.1rem 0.5rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.artist-intro-text h3 {
  font-size: 1.45rem;
  margin-bottom: 0.2rem;
}

.artist-role {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

.artist-location-pill {
  font-size: 0.8rem;
  font-weight: 700;
  color: #000;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.about-quote-box {
  background: #f8f9fa;
  border-left: 4px solid #000;
  padding: 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 2rem;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-main);
  font-style: italic;
}

.about-actions-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Card Techniques Breakdown */
.card-techniques {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
}

.tech-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.tech-header h3 {
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.tech-count {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 800;
}

.tech-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.tech-card-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem;
  background: #fafafa;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.tech-card-item:hover {
  transform: translateX(4px);
  border-color: #000;
}

.tech-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.tech-icon-box.yellow {
  background: var(--accent-lime);
  color: #000;
  border: 1.5px solid #000;
}

.tech-icon-box.black {
  background: #000;
  color: #fff;
}

.tech-info {
  flex-grow: 1;
}

.tech-info h4 {
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
}

.tech-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.tech-tag {
  font-size: 0.72rem;
  font-weight: 800;
  background: #e4e4e7;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

/* ==========================================================================
   Section: Featured Artworks & Filter Tabs
   ========================================================================== */
.section-artworks {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.artworks-top-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.mini-label {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-main-heading {
  font-size: 2.4rem;
  margin-top: 0.25rem;
}

.filter-pills-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-white);
  padding: 0.4rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
  overflow-x: auto;
}

.filter-pill {
  background: transparent;
  border: none;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.filter-pill:hover {
  color: #000;
}

.filter-pill.active {
  background: #000;
  color: #fff;
}

.pill-badge {
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.1rem 0.45rem;
  border-radius: var(--radius-full);
}

.filter-pill:not(.active) .pill-badge {
  background: #e4e4e7;
  color: #000;
}

/* Modular Artworks Grid */
.artworks-modular-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 1.75rem;
}

.art-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-bounce), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.art-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: #000;
}

.art-media-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  margin-bottom: 1.15rem;
}

.art-media-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.art-card:hover .art-media-wrap img {
  transform: scale(1.06);
}

.art-tag-floating {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.art-arrow-floating {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.art-card:hover .art-arrow-floating {
  background: var(--accent-lime);
  transform: scale(1.15) rotate(45deg);
}

.art-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.25rem 0.5rem 0.25rem 0.5rem;
}

.art-category {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.art-name {
  font-size: 1.1rem;
  margin-top: 0.15rem;
}

.art-stats-pill {
  background: #fafafa;
  border: 1px solid var(--border-subtle);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* ==========================================================================
   Section: Work With Gonzalo (Carbon Callout)
   ========================================================================== */
.section-hire {
  display: flex;
  flex-direction: column;
}

.hire-banner-carbon {
  background: #000;
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 4rem 3.5rem;
  box-shadow: var(--shadow-black);
}

.hire-banner-top {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

.hire-heading {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  color: #fff;
  margin-bottom: 1rem;
}

.hire-sub {
  color: #a1a1aa;
  font-size: 1.05rem;
}

.hire-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.hire-service-box {
  background: #12141a;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.hire-service-box:hover {
  transform: translateY(-6px);
  border-color: var(--accent-lime);
}

.hire-service-box.highlight-box {
  background: #191c24;
  border-color: #333a4d;
}

.service-tag-num {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #64748b;
  font-weight: 800;
}

.service-icon {
  width: 50px;
  height: 50px;
  background: #000;
  color: var(--accent-lime);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin: 1.25rem 0 1rem 0;
  border: 1px solid var(--border-dark);
}

.hire-service-box h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.hire-service-box p {
  color: #94a3b8;
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 1.75rem;
}

.btn-service-action {
  background: #fff;
  color: #000;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-fast);
}

.btn-service-action:hover {
  background: var(--accent-lime);
}

.arrow-mini {
  font-size: 1.1rem;
}

/* ==========================================================================
   Section: Contact (Carbon High-Contrast Form)
   ========================================================================== */
.section-contact {
  display: flex;
  flex-direction: column;
}

.contact-carbon-wrap {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 4rem 3.5rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 3.5rem;
}

.contact-pill-tag {
  display: inline-block;
  background: var(--accent-lime);
  color: #000;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1.5px solid #000;
  margin-bottom: 1rem;
}

.contact-main-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.contact-lead-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-badges-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-badge-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.badge-icon-wrap {
  width: 44px;
  height: 44px;
  background: #000;
  color: var(--accent-lime);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-badge-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
}

.contact-badge-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Form Styles */
.carbon-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-main);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: #fafafa;
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.15rem;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #000;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(226, 255, 59, 0.5);
}

.btn-submit-carbon {
  background: #000;
  color: #fff;
  border: none;
  font-weight: 800;
  font-size: 1rem;
  padding: 1rem 1.75rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-black);
}

.btn-submit-carbon:hover {
  background: var(--accent-lime);
  color: #000;
  transform: translateY(-2px);
}

.btn-submit-carbon:hover .arrow-circle {
  background: #000;
  color: var(--accent-lime);
}

/* ==========================================================================
   Lightbox Modal
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 2rem;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
}

.lightbox-container {
  position: relative;
  z-index: 10;
  max-width: 1050px;
  width: 100%;
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  animation: modal-pop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modal-pop {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: #000;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.lightbox-close:hover {
  transform: scale(1.1);
  background: var(--accent-lime);
  color: #000;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #000;
  color: #000;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.lightbox-nav.prev { left: 1.25rem; }
.lightbox-nav.next { right: 1.25rem; }

.lightbox-nav:hover {
  background: var(--accent-lime);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
}

.lightbox-media-col {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 75vh;
}

.lightbox-media-col img {
  max-height: 75vh;
  width: 100%;
  object-fit: contain;
}

.lightbox-info-col {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lightbox-pill {
  align-self: flex-start;
  background: var(--accent-lime);
  color: #000;
  border: 1.5px solid #000;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.lightbox-art-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.lightbox-art-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.lightbox-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.lightbox-tags-row span {
  background: #f1f2f4;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  color: #000;
}

/* ==========================================================================
   Toast Notification
   ========================================================================== */
.toast-carbon {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #000;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--accent-lime);
  box-shadow: var(--shadow-black);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3000;
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-carbon.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-carbon i {
  color: var(--accent-lime);
  font-size: 1.2rem;
}

/* ==========================================================================
   Footer (Carbon Editorial)
   ========================================================================== */
.carbon-footer {
  border-top: 1px solid var(--border-subtle);
  background: #fff;
  padding: 3rem 0;
  margin-top: 4rem;
}

.footer-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.1rem;
}

.footer-links-row {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-links-row a:hover {
  text-decoration: underline;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.btn-scroll-top {
  background: #000;
  color: #fff;
  border: none;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--transition-fast);
}

.btn-scroll-top:hover {
  background: var(--accent-lime);
  color: #000;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-bento {
    grid-template-columns: 1fr;
  }
  .about-bento-grid {
    grid-template-columns: 1fr;
  }
  .contact-carbon-wrap {
    grid-template-columns: 1fr;
  }
  .hire-cards-row {
    grid-template-columns: 1fr;
  }
  .lightbox-grid {
    grid-template-columns: 1fr;
  }
  .lightbox-media-col {
    max-height: 45vh;
  }
  .lightbox-media-col img {
    max-height: 45vh;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 65px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 1.75rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border-subtle);
    display: none;
    box-shadow: var(--shadow-hover);
  }

  .nav-menu.open {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .card-hero-title {
    padding: 2rem 1.5rem;
  }

  .card-stats-geometry {
    grid-template-columns: 1fr;
  }

  .geo-shape.yellow-shape {
    border-right: none;
    border-bottom: 2px solid #000;
  }

  .card-about-main {
    padding: 2rem 1.5rem;
  }

  .card-techniques {
    padding: 2rem 1.5rem;
  }

  .hire-banner-carbon {
    padding: 2.5rem 1.5rem;
  }

  .contact-carbon-wrap {
    padding: 2.5rem 1.5rem;
  }

  .artworks-modular-grid {
    grid-template-columns: 1fr;
  }
}
