/* Mobile-First CSS - Minimalistic Black Theme */

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

body {
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: #000000;
  color: #ffffff;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

main {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5rem;
}

h1 {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

.hero,
.intro,
.section {
  margin-bottom: 3rem;
}

img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.features {
  list-style: none;
  margin: 1.5rem 0;
}

.features li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.features li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 1.8rem;
  line-height: 1;
  top: 0.05em;
}

.process-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin: 2rem 0;
}

.section:has(.testimonials) h2 {
  text-align: center;
}

.testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  background-color: #ffffff;
}

.testimonial blockquote {
  margin: 0;
  padding: 0;
}

.testimonial blockquote p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.testimonial cite {
  font-style: normal;
  font-weight: 600;
  display: block;
  margin-top: 0.5rem;
}

.contact-section {
  position: relative;
  text-align: center;
  margin-top: 4rem;
  padding: 3rem 0;
  min-height: 400px;
}

.contact-content {
  position: relative;
  z-index: 10;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.8;
  mix-blend-mode: screen;
  animation: moveAndColor 10s infinite alternate ease-in-out;
}

.blob-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(180deg, #7b2ff7 0%, #3e12be 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blob-2 {
  width: 250px;
  height: 250px;
  background: linear-gradient(180deg, #22c1c3 0%, #2d46ca 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 12s;
  animation-direction: alternate-reverse;
}

@keyframes moveAndColor {
  0% {
    transform: translate(-50%, -50%) scale(1);
    filter: blur(80px) hue-rotate(0deg);
  }

  33% {
    transform: translate(calc(-50% + 30px), calc(-50% - 50px)) scale(1.1);
  }

  66% {
    transform: translate(calc(-50% - 20px), calc(-50% + 20px)) scale(0.9);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    filter: blur(80px) hue-rotate(90deg);
  }
}

.address {
  margin: 1.5rem 0;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #ffffff;
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  margin-top: 1.5rem;
  transition: opacity 0.3s ease;
}

.cta-button:hover {
  opacity: 0.9;
}

.instagram-cta-link {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

a {
  color: #ffffff;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.instagram-cta-link a,
.footer-links a {
  opacity: 0.8;
}

.instagram-cta-link a:hover,
.footer-links a:hover {
  opacity: 1;
}

footer {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  text-align: center;
}

.copyright {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  main {
    padding: 2.5rem;
  }

  body {
    font-size: 18px;
  }

  h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  h2 {
    font-size: 2rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
  }

  .process-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .testimonials {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .testimonial {
    align-items: flex-start;
    text-align: left;
  }

  .testimonial-avatar {
    width: 100px;
    height: 100px;
  }

  .section:has(.testimonials) h2 {
    text-align: left;
  }

  .blob-1 {
    width: 400px;
    height: 400px;
  }

  .blob-2 {
    width: 350px;
    height: 350px;
  }

  footer {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  main {
    padding: 3rem;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  footer {
    padding: 3rem;
  }
}