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

body {
  font-family: 'Newsreader', serif;
  background: linear-gradient(45deg, #faf6f1 0%, #ede5d9 100%);
  color: #3a3a3a;
}

header.header-minimal {
  padding: 60px 40px;
  text-align: center;
  border-bottom: 2px solid #8B6F47;
  background: #f5f0ea;
}

.main-title {
  font-size: 48px;
  letter-spacing: 4px;
  margin-bottom: 5px;
  color: #5a4a3a;
}

.tagline {
  font-size: 13px;
  letter-spacing: 2px;
  color: #999;
}

/* Masonry Gallery */
.gallery-masonry {
  padding: 80px 40px;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  max-width: 1400px;
  margin: 0 auto;
}

.masonry-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: #ddd;
}

.item-1 { grid-column: span 2; grid-row: span 2; }
.item-2 { grid-column: span 1; grid-row: span 2; }
.item-3 { grid-column: span 1; }
.item-4 { grid-column: span 2; }
.item-5 { grid-column: span 1; }
.item-6 { grid-column: span 1; }

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

.masonry-item:hover img {
  transform: scale(1.08);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}

.masonry-item:hover .overlay {
  opacity: 1;
}

.year {
  color: white;
  font-size: 12px;
  font-family: 'Space Mono', monospace;
}

/* About Section */
.studio-about {
  padding: 100px 40px;
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

.section-title {
  font-size: 36px;
  letter-spacing: 2px;
  margin-bottom: 30px;
  color: #5a4a3a;
}

.about-para {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.stats-vertical {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #ddd;
}

.stat-num {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 24px;
  color: #8B6F47;
  margin-bottom: 5px;
}

.about-image img {
  width: 100%;
  border: 1px solid #ddd;
}

/* Clases with Offsets */
.clases-offsets {
  padding: 100px 40px;
  background: linear-gradient(45deg, #faf6f1 0%, #ede5d9 100%);
}

.clases-offsets .section-title {
  text-align: center;
  margin-bottom: 80px;
}

.clase-offset {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.clase-offset-2 {
  direction: rtl;
}

.clase-offset-2 > * {
  direction: ltr;
}

.clase-content h3 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #5a4a3a;
}

.clase-meta {
  font-size: 12px;
  letter-spacing: 1px;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.clase-content p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.clase-price {
  font-size: 20px;
  font-family: 'Space Mono', monospace;
  color: #8B6F47;
  margin-bottom: 20px;
  font-weight: 700;
}

.btn-clase {
  background: white;
  color: #5a4a3a;
  border: 2px solid #8B6F47;
  padding: 12px 30px;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-clase:hover,
.btn-featured {
  background: #8B6F47;
  color: white;
}

.img-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #8B6F47 0%, #A0826D 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: rgba(255,255,255,0.2);
  border: 1px solid #ddd;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
}

/* Workshops */
.workshops-timeline {
  padding: 100px 40px;
  background: white;
}

.timeline-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline-card {
  border-left: 3px solid #8B6F47;
  padding-left: 30px;
}

.timeline-date {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  color: #8B6F47;
  margin-bottom: 10px;
  font-family: 'Space Mono', monospace;
}

.timeline-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #5a4a3a;
}

.timeline-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Contact */
.contact-offset {
  padding: 100px 40px;
  background: linear-gradient(45deg, #faf6f1 0%, #ede5d9 100%);
  text-align: center;
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.contact-block h4 {
  color: #8B6F47;
  margin-bottom: 10px;
}

.contact-block p {
  color: #666;
  font-size: 14px;
}

.contact-block a {
  color: #8B6F47;
  text-decoration: none;
  font-weight: 600;
}

.btn-contact {
  background: #8B6F47;
  color: white;
  border: none;
  padding: 14px 40px;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-contact:hover {
  background: #5a4a3a;
}

/* Modal */
.modal-pottery {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-pottery-box {
  background: white;
  padding: 50px;
  width: 90%;
  max-width: 450px;
  border: 1px solid #ddd;
  position: relative;
}

.modal-close-pottery {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #8B6F47;
}

.modal-pottery-box h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #5a4a3a;
}

.modal-pottery-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal-pottery-box input,
.modal-pottery-box select,
.modal-pottery-box textarea {
  padding: 12px;
  border: 1px solid #ddd;
  font-family: inherit;
}

.modal-pottery-box input:focus,
.modal-pottery-box select:focus,
.modal-pottery-box textarea:focus {
  outline: none;
  border-color: #8B6F47;
}

.modal-pottery-box button {
  background: #8B6F47;
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .masonry-grid { grid-template-columns: repeat(2, 1fr); }
  .item-1 { grid-column: span 1; grid-row: span 1; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .clase-offset { grid-template-columns: 1fr; gap: 40px; }
  .clase-offset-2 { direction: ltr; }
  .timeline-list { grid-template-columns: 1fr; }
  .contact-content { grid-template-columns: 1fr; }
}
