@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&display=swap');

:root {
  --black: #080808;
  --white: #f5f4f0;
  --muted: rgba(245, 244, 240, 0.5);
  --border: rgba(245, 244, 240, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 60px;
}

.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--white);
}

.nav-logo span {
  opacity: 0.5;
  margin: 0 1px;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding: 0 60px 90px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(30%) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(8, 8, 8, 0.95) 0%,
      rgba(8, 8, 8, 0.80) 45%,
      rgba(8, 8, 8, 0.25) 70%,
      rgba(8, 8, 8, 0.05) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-tag {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  font-weight: 400;
  animation: fadeInUp 0.9s ease both;
}

.hero-content h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  animation: fadeInUp 1s 0.15s ease both;
}

.hero-sub {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: rgba(245, 244, 240, 0.65);
  margin-bottom: 44px;
  animation: fadeInUp 1s 0.3s ease both;
}

.dot {
  color: var(--white);
}

.cta-btn {
  display: inline-block;
  color: var(--white);
  text-decoration: none;
  border: 1px solid rgba(245, 244, 240, 0.35);
  padding: 15px 38px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  animation: fadeInUp 1s 0.45s ease both;
}

.cta-btn:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.about {
  padding: 130px 60px;
  border-top: 1px solid var(--border);
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
}

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

.about-left h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.about-right p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(245, 244, 240, 0.8);
  margin-bottom: 22px;
  font-weight: 400;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.about-tags span {
  border: 1px solid var(--border);
  padding: 7px 18px;
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

.services {
  padding: 130px 60px;
  border-top: 1px solid var(--border);
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 80px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  border: 1px solid var(--border);
  padding: 48px 36px;
  transition: background 0.35s;
}

.service-card:hover {
  background: rgba(245, 244, 240, 0.04);
}

.service-num {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 32px;
  font-weight: 500;
}

.service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(245, 244, 240, 0.65);
  font-weight: 400;
}

.client {
  padding: 130px 60px;
  border-top: 1px solid var(--border);
}

.client-inner {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.client-label {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

.client-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 1.0;
  letter-spacing: -0.01em;
}

.client-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 18px;
}

.client-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(245, 244, 240, 0.55);
  font-weight: 400;
  max-width: 380px;
}

.contact {
  padding: 130px 60px;
  border-top: 1px solid var(--border);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-inner h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 5.5rem);
  letter-spacing: -0.02em;
  line-height: 1.0;
  margin-bottom: 20px;
}

.contact-sub {
  font-size: 1.05rem;
  color: rgba(245, 244, 240, 0.65);
  margin-bottom: 70px;
  max-width: 420px;
  line-height: 1.7;
  font-weight: 400;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  text-decoration: none;
  color: var(--white);
  transition: padding-left 0.3s ease;
}

.contact-item:last-child {
  border-bottom: 1px solid var(--border);
}

.contact-item:hover {
  padding-left: 18px;
}

.contact-type {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 120px;
  font-weight: 400;
}

.contact-value {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  letter-spacing: -0.005em;
  transition: letter-spacing 0.3s;
}

.contact-item:hover .contact-value {
  letter-spacing: 0.02em;
}

footer {
  padding: 40px 60px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card.fade-up:nth-child(2) { transition-delay: 0.1s; }
.service-card.fade-up:nth-child(3) { transition-delay: 0.2s; }
.contact-item.fade-up:nth-child(2) { transition-delay: 0.08s; }
.contact-item.fade-up:nth-child(3) { transition-delay: 0.16s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  nav { padding: 24px 30px; }
  .hero { padding: 0 30px 70px; }
  .about, .services, .contact, .client { padding: 90px 30px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  nav { padding: 20px 20px; }
  .hero { padding: 0 20px 60px; align-items: center; }
  .hero-overlay { background: linear-gradient(to bottom, rgba(8,8,8,0.88) 0%, rgba(8,8,8,0.72) 100%); }
  .about, .services, .contact, .client { padding: 70px 20px; }
  .contact-item { flex-direction: column; align-items: flex-start; gap: 8px; padding: 22px 0; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
  footer { padding: 28px 20px; }
}