/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: #050608;
  color: #f5f5f7;
  line-height: 1.6;
}

/* Layout */
.container {
  width: min(1100px, 90vw);
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: #0b0d12;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
  opacity: 0.8;
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(3, 3, 5, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(255, 48, 64, 0.8));
}

nav a {
  margin-left: 1.5rem;
  font-size: 0.9rem;
  text-decoration: none;
  color: #f5f5f7;
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

nav a:hover {
  opacity: 1;
  color: #ff3040;
  transform: translateY(-1px);
}

/* Hero */
.hero {
  padding: 4.5rem 0 3.5rem;
  background: radial-gradient(circle at top, #2a1013 0, #050608 55%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr);
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.6rem, 3.4vw, 3.4rem);
  margin-bottom: 1rem;
}

.hero p {
  max-width: 600px;
}

.hero-actions {
  margin: 1.75rem 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-perfect-for h2 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.4rem;
  opacity: 0.85;
}

.hero-perfect-for ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Hero visual with logo */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  max-width: 320px;
  width: 100%;
  filter: drop-shadow(0 0 30px rgba(255, 48, 64, 0.8));
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn.primary {
  background: #ff3040;
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(255, 48, 64, 0.4);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(255, 48, 64, 0.6);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff;
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.05);
}

.btn.full-width {
  width: 100%;
}

/* Cards / Boxes */
.card,
.contact-box {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.02)
  );
  border-radius: 1.25rem;
  padding: 1.7rem 1.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
}

/* Card grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

/* Process steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.8rem;
}

.step {
  position: relative;
  padding: 1.4rem 1.2rem 1.4rem 1.4rem;
  border-radius: 1rem;
  background: #0b0d12;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-number {
  position: absolute;
  top: -0.9rem;
  left: 1.2rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  background: #ff3040;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  margin-bottom: 0.5rem;
  margin-top: 0.8rem;
  font-size: 1rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  background: #050608;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.gallery-item figcaption {
  padding: 0.6rem 0.7rem;
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: start;
}

.contact-points {
  list-style: none;
  margin: 1.2rem 0;
}

.contact-points li {
  margin-bottom: 0.4rem;
}

.contact-box form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-box label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
}

.contact-box input,
.contact-box textarea {
  background: #050608;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.6rem 0.7rem;
  color: #f5f5f7;
  font: inherit;
}

.contact-box input:focus,
.contact-box textarea:focus {
  outline: none;
  border-color: #ff3040;
  box-shadow: 0 0 0 1px rgba(255, 48, 64, 0.6);
}

.note {
  font-size: 0.85rem;
  opacity: 0.75;
  margin-top: 0.5rem;
}

.tiny {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  opacity: 0.65;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: #b8bed8;
}

.footer-inner {
  text-align: center;
}

/* Links */
a {
  color: #ff6a7b;
}

a:hover {
  color: #ff3040;
}

/* Responsive */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .hero-grid,
  .card-grid,
  .steps,
  .gallery-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-visual {
    order: -1;
    margin-bottom: 1.5rem;
  }

  .hero-logo {
    max-width: 260px;
  }
}

@media (max-width: 600px) {
  .nav {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
  }

  nav a {
    margin: 0.15rem 1rem 0.15rem 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
