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

body {
  font-family: 'Golos Text', sans-serif;
  background: white;
  color: #1a1a1a;
}

html { scroll-behavior: smooth; }

/* Navigation */
.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  position: sticky;
  top: 0;
  background: white;
  border-bottom: 1px solid #f0f0f0;
  z-index: 100;
}

.nav-mark {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  text-decoration: none;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav-btn {
  font-size: 12px;
  letter-spacing: 2px;
  text-decoration: none;
  color: #1a1a1a;
  border: 1px solid #1a1a1a;
  padding: 8px 24px;
  transition: all 0.3s;
  cursor: pointer;
}

.nav-btn:hover {
  background: #1a1a1a;
  color: white;
}

/* Modules - Core Structure */
.module {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 60px;
}

.module img {
  width: 70%;
  height: 70%;
  object-fit: cover;
  display: block;
}

.module-text {
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.text-block h1 {
  font-family: 'Bodoni Moda', serif;
  font-size: 56px;
  margin-bottom: 20px;
  max-width: 600px;
  line-height: 1.2;
}

.text-block p {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  line-height: 1.8;
}

/* Services Grid */
.module-services {
  background: white;
}

.services-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.service-item {
  display: flex;
  flex-direction: column;
}

.service-item h3 {
  font-family: 'Bodoni Moda', serif;
  font-size: 20px;
  margin-bottom: 15px;
}

.service-item p {
  color: #666;
  font-size: 14px;
  margin-bottom: 25px;
  line-height: 1.7;
}

.price {
  font-family: 'Bodoni Moda', serif;
  font-size: 18px;
  color: #b99754;
  margin-top: auto;
}

.section-heading {
  font-family: 'Bodoni Moda', serif;
  font-size: 40px;
  margin-bottom: 60px;
  width: 100%;
  text-align: center;
}

/* Process Icons */
.module-process {
  background: #fafafa;
}

.process-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.proc-num {
  display: block;
  font-family: 'Bodoni Moda', serif;
  font-size: 48px;
  color: #b99754;
  margin-bottom: 10px;
}

.proc p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* Warranty Table */
.module-warranty {
  background: white;
}

.warranty-table {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.warranty-row {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 40px;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
  align-items: center;
}

.warranty-header {
  border-top: 2px solid #1a1a1a;
  border-bottom: 2px solid #1a1a1a;
  font-weight: 700;
  padding: 30px 0;
}

.warranty-row span:first-child {
  font-weight: 600;
}

.warranty-row span {
  font-size: 13px;
  color: #666;
}

/* Stats */
.module-stats {
  background: #fafafa;
}

.stats-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.stat-big {
  font-family: 'Bodoni Moda', serif;
  font-size: 44px;
  color: #b99754;
  margin-bottom: 10px;
}

.stat p {
  font-size: 13px;
  color: #666;
}

/* Testimonials */
.module-testimonials {
  background: white;
}

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

blockquote {
  border-left: 3px solid #b99754;
  padding-left: 30px;
}

blockquote p {
  font-size: 15px;
  color: #1a1a1a;
  margin-bottom: 15px;
  line-height: 1.8;
  font-style: italic;
}

blockquote footer {
  font-size: 12px;
  color: #999;
}

/* Contact */
.module-contact {
  background: #fafafa;
  flex-direction: column;
  gap: 60px;
}

.contact-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  color: #b99754;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 700;
}

.contact-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

.contact-item a {
  color: #b99754;
  text-decoration: none;
}

.btn-appointment {
  background: #1a1a1a;
  color: white;
  border: none;
  padding: 14px 40px;
  font-size: 12px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-appointment:hover {
  background: #b99754;
}

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

.modal-box-minimal {
  background: white;
  padding: 60px;
  width: 90%;
  max-width: 500px;
  position: relative;
  border: 1px solid #e0e0e0;
}

.modal-box-minimal .close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
}

.modal-box-minimal h3 {
  font-family: 'Bodoni Moda', serif;
  font-size: 28px;
  margin-bottom: 30px;
}

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

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

.modal-box-minimal input:focus,
.modal-box-minimal textarea:focus {
  outline: none;
  border-color: #b99754;
}

.modal-box-minimal button {
  background: #1a1a1a;
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
  margin-top: 10px;
}

.modal-box-minimal button:hover {
  background: #b99754;
}

@media (max-width: 768px) {
  .nav-top { padding: 15px 30px; }
  .module { padding: 40px 30px; }
  .text-block h1 { font-size: 36px; }
  .services-2col { grid-template-columns: 1fr; gap: 40px; }
  .process-icons { grid-template-columns: repeat(2, 1fr); }
  .stats-4 { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .quotes-3 { grid-template-columns: 1fr; }
  .contact-3 { grid-template-columns: 1fr; }
}
