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

:root {
  --bg-light: #fafaf8;
  --bg-dark: #1a1a18;
  --text-dark: #2a2a28;
  --text-light: #f5f5f3;
  --accent: #c4a574;
}

body {
  font-family: 'Crimson Text', serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 16px;
}

/* HEADER */
.header-minimal {
  background: var(--bg-light);
  border-bottom: 1px solid #ddd;
  padding: 3rem 2rem;
  text-align: center;
}

.header-inner {
  max-width: 800px;
  margin: 0 auto;
}

.header-title {
  font-family: 'Courier Prime', monospace;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.header-subtitle {
  font-size: 0.9rem;
  color: #999;
  letter-spacing: 1px;
}

/* HERO */
.hero-minimal {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.hero-title {
  font-size: 2.8rem;
  line-height: 1.3;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #555;
}

/* SECTION LABELS */
.section-label {
  font-family: 'Courier Prime', monospace;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 2rem;
}

/* GALLERY */
.gallery-minimal {
  padding: 4rem 2rem;
  background: var(--bg-light);
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid-minimal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.gallery-item-min {
  aspect-ratio: 1;
  border: 1px solid #ddd;
  position: relative;
  overflow: hidden;
  group: hover;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8e8e4 0%, #d4d4cc 100%);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.item-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.95);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item-min:hover .item-info {
  opacity: 1;
}

.item-year {
  font-family: 'Courier Prime', monospace;
  font-size: 0.85rem;
  color: var(--accent);
}

/* ABOUT */
.about-minimal {
  padding: 4rem 2rem;
  background: white;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  line-height: 1.9;
  color: #555;
}

.about-text p {
  font-size: 1rem;
}

.stats-minimal {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-min {
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
}

.num {
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-dark);
}

.label {
  font-size: 0.9rem;
  color: #999;
  margin-top: 0.3rem;
  font-family: 'Courier Prime', monospace;
}

/* CLASSES */
.classes-minimal {
  padding: 4rem 2rem;
  background: var(--bg-light);
  max-width: 1200px;
  margin: 0 auto;
}

.classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.class-card-min {
  background: white;
  padding: 2rem;
  border: 1px solid #ddd;
  transition: all 0.3s;
}

.class-card-min:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(196, 165, 116, 0.1);
}

.class-card-min h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.class-card-min p {
  color: #777;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.price-min {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--accent);
}

.link-cta {
  display: inline-block;
  font-family: 'Courier Prime', monospace;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid var(--accent);
  padding: 0.6rem 1.2rem;
  transition: all 0.3s;
}

.link-cta:hover {
  background: var(--accent);
  color: white;
}

/* CONTACT */
.contact-minimal {
  padding: 4rem 2rem;
  background: white;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid-min {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-cell {
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
}

.contact-label {
  font-family: 'Courier Prime', monospace;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}

.contact-cell a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-cell a:hover {
  color: var(--accent);
}

.contact-cell p {
  color: #555;
  font-size: 0.95rem;
}

/* CTA */
.cta-minimal {
  padding: 4rem 2rem;
  background: var(--bg-dark);
  color: var(--text-light);
  text-align: center;
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.cta-inner h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.cta-inner p {
  font-size: 1rem;
  color: rgba(245, 245, 243, 0.7);
  margin-bottom: 2rem;
}

.btn-main-min {
  font-family: 'Courier Prime', monospace;
  background: var(--accent);
  color: var(--bg-dark);
  border: none;
  padding: 0.8rem 2rem;
  font-size: 0.9rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-main-min:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

/* MODAL */
.modal-minimal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-inner-min {
  background: var(--bg-light);
  max-width: 500px;
  margin: 5% auto;
  padding: 2rem;
  position: relative;
  animation: slideIn 0.3s;
}

@keyframes slideIn {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-close-min {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-dark);
}

.modal-inner-min h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.modal-inner-min form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-inner-min input,
.modal-inner-min select {
  padding: 0.8rem;
  border: 1px solid #ddd;
  background: white;
  color: var(--text-dark);
  font-family: inherit;
  font-size: 0.95rem;
}

.modal-inner-min input::placeholder {
  color: #aaa;
}

.btn-submit-min {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0.9rem;
  font-family: 'Courier Prime', monospace;
  font-size: 0.9rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit-min:hover {
  opacity: 0.9;
}

/* FOOTER */
.footer-minimal {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid #333;
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
  font-size: 0.95rem;
}

.footer-label {
  font-family: 'Courier Prime', monospace;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .gallery-grid-minimal {
    grid-template-columns: 1fr;
  }

  .header-title {
    font-size: 1rem;
  }
}
