:root {
  color-scheme: light dark;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #030303;
  color: #f5f5f5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #010101;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 4vw;
  background: rgba(3, 3, 3, 0.95);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: 1rem;
}

.logo {
  border: none;
  background: transparent;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.4em;
  color: #f5f5f5;
  cursor: pointer;
  padding: 0;
}

.desktop-nav {
  display: none;
  gap: 1.25rem;
  margin-left: 1rem;
}

.desktop-nav a {
  color: #e4e4e4;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.header-actions {
  display: none;
  gap: 0.75rem;
}

.header-actions .ghost {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1.5rem;
  color: #f5f5f5;
  cursor: pointer;
}

.header-actions .primary {
  background: #ffffff;
  color: #030303;
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1.5rem;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  border: none;
  background: none;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(3, 3, 3, 0.96);
  backdrop-filter: blur(10px);
  display: none;
  justify-content: center;
  align-items: flex-start;
  padding-top: 5rem;
  z-index: 45;
}

.mobile-drawer nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.mobile-drawer nav a {
  color: #fff;
  font-size: 1.3rem;
  text-decoration: none;
  font-weight: 600;
}

.drawer-cta {
  width: 70%;
  text-align: center;
}

.hero {
  padding: 3.4rem 4vw 3rem;
  background: #020202;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin: 0;
  border-radius: 0;
}

.hero-note {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.65rem;
  color: #9fa1a6;
  margin-bottom: 0.4rem;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 4.2rem);
  margin: 0;
}

.dynamic-text {
  display: inline-block;
  transition: opacity 1s ease, transform 1s ease;
}

.fade-out {
  opacity: 0;
  transform: translateY(-6px);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.hero-description {
  color: #c7c7c7;
  font-size: 1.1rem;
  max-width: 700px;
  line-height: 1.6;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.hero-actions button {
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-actions .primary {
  background: linear-gradient(135deg, #4def8a, #1db954);
  color: #030303;
  box-shadow: 0 12px 35px rgba(77, 255, 138, 0.35);
}

.hero-actions .ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #f5f5f5;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-actions button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.hero-media {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.gallery-strip {
  width: 100%;
  overflow: hidden;
  padding: 0.5rem 0;
}

.gallery-track {
  display: flex;
  gap: 0.6rem;
  animation: drift-left 35s linear infinite;
}

.gallery-strip--secondary {
  margin-top: 0.4rem;
}

.gallery-track--reverse {
  animation-direction: reverse;
}

.gallery-card {
  flex: 0 0 180px;
  height: 180px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

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

.gallery-strip:hover .gallery-track,
.gallery-strip:focus-within .gallery-track {
  animation-play-state: paused;
}

@keyframes drift-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.rest-content {
  margin: 0;
}

.content-block {
  margin-bottom: 4rem;
  padding: 0 4vw;
}

.section-heading {
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  margin: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-card,
.review-grid article {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 1.8rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.55);
}

.service-card h3 {
  margin-top: 0;
}

.service-card ul {
  padding-left: 1.1rem;
  color: #d6d6d6;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.review-grid article p {
  margin: 0;
  font-style: italic;
  line-height: 1.6;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.process-list div {
  background: rgba(255, 255, 255, 0.02);
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}

.gallery {
  padding: 0 4vw 3rem;
}

.collage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.collage-card {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.collage-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.collage-card figcaption {
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
  color: #c0c0c0;
  letter-spacing: 0.02em;
}

.contact-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 50;
}

.contact-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.contact-panel {
  background: #050505;
  border-radius: 24px;
  padding: 2rem;
  width: min(480px, 90vw);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  color: #f5f5f5;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}

.contact-subtitle {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.65rem;
  margin: 0;
  color: #7de989;
}

.contact-panel h3 {
  margin: 0;
  font-size: 1.5rem;
}

.contact-description {
  margin: 0;
  color: #c7c7c7;
  line-height: 1.5;
}

.contact-panel form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-panel label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.contact-panel input,
.contact-panel textarea {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  padding: 0.8rem;
  font-size: 0.95rem;
}

.contact-panel textarea {
  min-height: 120px;
}

.contact-panel button {
  border: none;
  border-radius: 30px;
  padding: 0.75rem 1.6rem;
  font-weight: 600;
  background: linear-gradient(135deg, #4def8a, #1db954);
  color: #020202;
  cursor: pointer;
  box-shadow: 0 12px 35px rgba(77, 255, 138, 0.3);
}

.contact-message {
  font-size: 0.85rem;
  color: #d0d0d0;
  margin: 0.4rem 0 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.contact-message.visible {
  opacity: 1;
}

.contact-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

.pill {
  display: inline-flex;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  letter-spacing: 0.35em;
  font-size: 0.75rem;
}

footer {
  padding: 2rem 4vw 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 500;
}

.chat-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: min(320px, 90vw);
  background: rgba(5, 5, 5, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(200%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 20;
}

.chat-widget.open {
  transform: translateY(0);
  opacity: 1;
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.chat-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: 280px;
  overflow-y: auto;
}

.chat-form {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.chat-form input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  padding: 0.6rem 1rem;
}

.chat-form button {
  border: none;
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  background: #4def8a;
  color: #030303;
  font-weight: 600;
  cursor: pointer;
}

.chat-suggestions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.5rem;
  padding: 0 1rem 0.8rem;
}

.chat-suggestions button {
  border: none;
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  color: #f5f5f5;
  font-size: 0.75rem;
  cursor: pointer;
}

.chat-message {
  padding: 0.8rem 1rem;
  border-radius: 18px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.chat-message.user {
  align-self: flex-end;
  background: #1c1c1c;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.chat-message.bot {
  align-self: flex-start;
  background: rgba(77, 255, 174, 0.12);
  border: 1px solid rgba(77, 255, 174, 0.4);
}

.chat-close {
  background: none;
  border: none;
  color: #f5f5f5;
  font-size: 1.4rem;
  cursor: pointer;
}

.pill {
  display: inline-flex;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.7rem;
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    gap: 0.75rem;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding: 4rem 2rem;
  }

  .gallery-card {
    min-width: 140px;
    height: 140px;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: clamp(2.4rem, 11vw, 3.5rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .gallery-card {
    min-width: 120px;
    height: 120px;
  }
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: flex;
  }
}

@media (min-width: 1025px) {
  .desktop-nav {
    display: flex;
  }

  .header-actions {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }
}
