/* ========================================
   VIA PAGE - EXACT FIGMA MATCH
   ======================================== */

/* VIA Header Section */
.via-header-section {
  padding: 140px 40px 80px;
  background: #F5F5F5;
  max-width: 1440px;
  margin: 0 auto;
}

.via-header-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.via-left {
  padding-right: 40px;
  border-right: 1px solid #D0D0D0;
}

.via-main-title {
  font-size: 96px;
  font-weight: 300;
  letter-spacing: 4.8px;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 24px;
  line-height: 1;
}

.via-description {
  margin-top: 32px;
}

.via-description p {
  font-size: 18px;
  font-weight: 300;
  color: #666666;
  margin-bottom: 12px;
  line-height: 1.7;
}

.via-right {
  padding-left: 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.via-right-item {
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000000;
  margin: 0;
}

/* Section Headings Light */
.section-heading-light {
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #D0D0D0;
}

/* What is Recorded */
.what-recorded-section {
  padding: 80px 40px;
  background: #F5F5F5;
  border-top: 1px solid #D0D0D0;
}

.recorded-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #D0D0D0;
  border: 1px solid #D0D0D0;
  max-width: 1200px;
  margin: 32px auto 0;
}

.recorded-card {
  background: #E8E8E8;
  padding: 32px 24px;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  color: #000000;
  letter-spacing: 0.8px;
}

/* Registry Table Section */
.registry-table-section {
  padding: 80px 40px;
  background: #F5F5F5;
  border-top: 1px solid #D0D0D0;
}

.registry-table-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.registry-table-left {
  padding-right: 40px;
  border-right: 1px solid #D0D0D0;
}

.table-column-title {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 32px;
}

.registry-case-item {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 1.2px;
  color: #000000;
  margin-bottom: 24px;
  line-height: 1.5;
}

.registry-table-right {
  padding-left: 40px;
}

.registry-subtable {
  margin-bottom: 48px;
}

.registry-subtable-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 16px 0;
  border-bottom: 1px solid #D0D0D0;
}

.registry-subtable-row.header {
  font-weight: 400;
  color: #000000;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1.4px;
}

.registry-subtable-row:not(.header) {
  font-weight: 300;
  color: #666666;
  font-size: 15px;
}

.table-cell {
  padding: 4px 0;
}

/* Serial Info Section */
.serial-info-section {
  padding: 80px 40px;
  background: #F5F5F5;
  border-top: 1px solid #D0D0D0;
}

.serial-note {
  font-size: 16px;
  font-weight: 300;
  color: #666666;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid #D0D0D0;
}

.entry-example {
  max-width: 1200px;
  margin: 0 auto;
}

.entry-code {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 1.2px;
  color: #000000;
  margin-bottom: 48px;
}

.entry-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.entry-detail-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-label {
  font-size: 13px;
  font-weight: 400;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 1.3px;
}

.detail-value {
  font-size: 16px;
  font-weight: 300;
  color: #000000;
}

/* ========================================
   RESPONSIVE VIA
   ======================================== */

@media (max-width: 1024px) {
  .via-header-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .via-left {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid #D0D0D0;
    padding-bottom: 48px;
  }
  
  .via-right {
    padding-left: 0;
  }
  
  .via-right-item {
    font-size: 32px;
  }
  
  .recorded-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .registry-table-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .registry-table-left {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid #D0D0D0;
    padding-bottom: 48px;
  }
  
  .registry-table-right {
    padding-left: 0;
  }
  
  .entry-details-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .via-header-section {
    padding: 120px 24px 60px;
  }
  
  .via-main-title {
    font-size: 64px;
  }
  
  .via-description p {
    font-size: 16px;
  }
  
  .via-right-item {
    font-size: 28px;
  }
  
  .section-heading-light {
    font-size: 32px;
  }
  
  .what-recorded-section,
  .registry-table-section,
  .serial-info-section {
    padding: 60px 24px;
  }
  
  .recorded-cards {
    grid-template-columns: 1fr;
  }
  
  .registry-subtable-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .registry-case-item {
    font-size: 20px;
  }
  
  .entry-code {
    font-size: 20px;
  }
}

@media (max-width: 375px) {
  .via-main-title {
    font-size: 48px;
  }
  
  .via-right-item {
    font-size: 24px;
  }
}

/* ========================================
   ARTE PAGE STYLES
   ======================================== */

.arte-header-section {
  padding: 140px 40px 80px;
  background: #F5F5F5;
  max-width: 1440px;
  margin: 0 auto;
}

.arte-header-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.arte-left {
  padding-right: 40px;
  border-right: 1px solid #D0D0D0;
}

.arte-main-title {
  font-size: 96px;
  font-weight: 300;
  letter-spacing: 4.8px;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 24px;
  line-height: 1;
}

.arte-description {
  margin-top: 32px;
}

.arte-description p {
  font-size: 18px;
  font-weight: 300;
  color: #666666;
  margin-bottom: 12px;
  line-height: 1.7;
}

.arte-right {
  padding-left: 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.arte-right-item {
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000000;
  margin: 0;
}

/* ========================================
   COLLECTA PAGE STYLES
   ======================================== */

.collecta-header-section {
  padding: 140px 40px 80px;
  background: #F5F5F5;
  max-width: 1440px;
  margin: 0 auto;
}

.collecta-header-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.collecta-left {
  padding-right: 40px;
  border-right: 1px solid #D0D0D0;
}

.collecta-main-title {
  font-size: 96px;
  font-weight: 300;
  letter-spacing: 4.8px;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 24px;
  line-height: 1;
}

.collecta-description {
  margin-top: 32px;
}

.collecta-description p {
  font-size: 18px;
  font-weight: 300;
  color: #666666;
  margin-bottom: 12px;
  line-height: 1.7;
}

.collecta-right {
  padding-left: 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.collecta-right-item {
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000000;
  margin: 0;
}

/* ========================================
   PROBATUM PAGE STYLES
   ======================================== */

.probatum-header-section {
  padding: 140px 40px 80px;
  background: #F5F5F5;
  max-width: 1440px;
  margin: 0 auto;
}

.probatum-header-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.probatum-left {
  padding-right: 40px;
  border-right: 1px solid #D0D0D0;
}

.probatum-main-title {
  font-size: 96px;
  font-weight: 300;
  letter-spacing: 4.8px;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 24px;
  line-height: 1;
}

.probatum-description {
  margin-top: 32px;
}

.probatum-description p {
  font-size: 18px;
  font-weight: 300;
  color: #666666;
  margin-bottom: 12px;
  line-height: 1.7;
}

.probatum-right {
  padding-left: 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.probatum-right-item {
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000000;
  margin: 0;
}

/* ========================================
   ARTE, COLLECTA, PROBATUM - Placeholders
   ======================================== */

.arte-content-section,
.collecta-content-section,
.probatum-content-section {
  padding: 80px 40px;
  background: #F5F5F5;
  border-top: 1px solid #D0D0D0;
  text-align: center;
}
