/* ── Reset & Base ─────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a1a2e;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Hero ─────────────────────────────────────────── */

.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(-45deg, #0707F5, #FAE5A5, #F3B5BC, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 12s ease infinite;
}

@keyframes gradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-inner {
  text-align: center;
  padding: 24px;
}

.hero-logo {
  width: min(500px, 55vw);
  margin: 0 auto 48px;
}

.hero-logo-mobile {
  display: none;
  width: min(280px, 70vw);
  margin: 0 auto 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-turnaround {
  margin-top: 32px;
  text-align: center;
}

.turnaround-badge {
  display: inline-block;
  padding: 10px 20px;
  font-family: 'Roboto Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(0, 0, 0, 0.35);
  animation: bounce 2s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ── Buttons ──────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 240px;
  height: 72px;
  font-family: 'Roboto Mono', monospace;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  background: transparent;
  border: 4px solid #ea4949;
  box-shadow: -8px -8px 0 0 #ea4949;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn:hover {
  box-shadow: 2px 2px 0 0 #ea4949;
  background: #f3b5bc;
  transform: translate(-4px, 4px);
}

.btn:active {
  box-shadow: 0 0 0 0 #ea4949;
  transform: translate(-6px, 6px);
}

.btn img {
  height: 20px;
  flex-shrink: 0;
}

/* ── About ────────────────────────────────────────── */

.about {
  padding: 96px 0;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text h1 {
  font-family: 'Rubik', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  margin-bottom: 24px;
  color: #0B0B45;
}

.about-text p {
  font-size: 16px;
  color: #444;
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* ── Hours ────────────────────────────────────────── */

.hours-section {
  padding: 96px 0;
  background: #f7f5f3;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.hours-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.hours-card h2 {
  font-family: 'Rubik', sans-serif;
  font-weight: 900;
  font-size: 24px;
  margin-bottom: 16px;
  color: #0B0B45;
}

.hours-card table {
  width: 100%;
  border-collapse: collapse;
}

.hours-card th,
.hours-card td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  font-weight: 500;
}

.hours-card th {
  font-weight: 600;
  color: #0B0B45;
}

.hours-card tr:last-child td {
  border-bottom: none;
}

.hours-card thead {
  display: none;
}

.hours-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 48px;
}

/* ── Turnaround ──────────────────────────────────── */

.turnaround-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0 10px 16px;
  border-left: 4px solid;
  border-bottom: 1px solid #eee;
}

.turnaround-item:last-child {
  border-bottom: none;
}

.turnaround-name {
  font-weight: 600;
  min-width: 48px;
}

.turnaround-time {
  font-family: 'Roboto Mono', monospace;
  font-weight: 700;
}

.turnaround-level {
  margin-left: auto;
  font-size: 13px;
  color: #888;
}

/* ── Footer ───────────────────────────────────────── */

footer {
  background: #0B0B45;
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 40px;
}

.footer-content {
  max-width: 600px;
  margin: 0 auto 48px;
}

.footer-locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.footer-location img {
  height: 28px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.footer-location p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

.footer-map {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 32px;
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

/* ── Responsive ───────────────────────────────────── */

@media (max-width: 768px) {
  .hero-logo {
    display: none;
  }

  .hero-logo-mobile {
    display: block;
  }

  .about {
    padding: 64px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image {
    order: -1;
  }

  .about-image img {
    border-radius: 0;
    margin: 0 -24px;
    width: calc(100% + 48px);
    max-width: none;
  }

  .hours-section {
    padding: 64px 0;
  }

  .hours-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hours-card {
    padding: 28px;
  }

  .btn {
    width: 200px;
    height: 64px;
    font-size: 18px;
  }

  footer {
    padding: 48px 0 32px;
  }

  .footer-content {
    margin-bottom: 32px;
  }

  .footer-locations {
    gap: 32px;
  }

  .footer-map iframe {
    height: 220px;
  }
}
