:root {
  --cream: #F5F4F0;
  --black: #0D0D0D;
  --gray: #888;
  --light-gray: #DEDCDA;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}
nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 60px;
  z-index: 100;
}
.nav-logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
}
.nav-cta {
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.4; }
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 80px;
  position: relative;
  overflow: hidden;
}
.hero-x {
  position: absolute;
  top: -60px; right: -40px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(300px, 40vw, 600px);
  color: var(--light-gray);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  opacity: 0.5;
}
.hero-tag {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 10vw, 160px);
  line-height: 0.92;
  color: var(--black);
  max-width: 900px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}
.hero-title em {
  font-style: italic;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.55em;
  display: block;
  color: var(--gray);
  letter-spacing: 1px;
  margin-top: 12px;
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 80px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}
.hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray);
  max-width: 380px;
}
.hero-scroll {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-scroll::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gray);
}
.divider { height: 1px; background: var(--light-gray); margin: 0 60px; }
.services { padding: 100px 60px; }
.section-label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 60px;
}
.service-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: start;
  gap: 40px;
  padding: 44px 0;
  border-top: 1px solid var(--light-gray);
  transition: opacity 0.3s;
}
.service-item:last-child { border-bottom: 1px solid var(--light-gray); }
.service-list:hover .service-item { opacity: 0.3; }
.service-list:hover .service-item:hover { opacity: 1; }
.service-num { font-size: 13px; color: var(--gray); margin-top: 6px; }
.service-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.service-desc { font-size: 15px; line-height: 1.7; color: var(--gray); max-width: 480px; }
.service-tag {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  border: 1px solid var(--light-gray);
  padding: 8px 16px;
  border-radius: 100px;
  white-space: nowrap;
  margin-top: 8px;
}
.why { background: var(--black); color: var(--cream); padding: 100px 60px; }
.why .section-label { color: #555; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #222;
  margin-top: 60px;
  border: 1px solid #222;
}
.why-item { background: var(--black); padding: 48px 40px; transition: background 0.3s; }
.why-item:hover { background: #111; }
.why-num { font-size: 48px; font-family: 'Bebas Neue', sans-serif; color: #333; line-height: 1; margin-bottom: 20px; }
.why-title { font-size: 18px; font-weight: 500; margin-bottom: 12px; color: var(--cream); }
.why-desc { font-size: 14px; line-height: 1.7; color: #666; }
.cta-section {
  padding: 140px 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.cta-bg-x {
  position: absolute;
  bottom: -120px; right: -60px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(200px, 30vw, 500px);
  color: var(--light-gray);
  line-height: 1;
  pointer-events: none;
  opacity: 0.35;
  user-select: none;
}
.cta-label { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--gray); margin-bottom: 32px; }
.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 9vw, 140px);
  line-height: 0.92;
  color: var(--black);
  margin-bottom: 60px;
  max-width: 800px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--black);
  color: var(--cream);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 20px 40px;
  border-radius: 100px;
  transition: transform 0.3s ease, gap 0.3s ease;
  position: relative;
  z-index: 1;
}
.cta-btn:hover { transform: scale(1.04); gap: 24px; }
.cta-contact { margin-top: 48px; font-size: 14px; color: var(--gray); position: relative; z-index: 1; }
.cta-contact a { color: var(--black); text-decoration: none; border-bottom: 1px solid var(--black); padding-bottom: 1px; }
footer {
  border-top: 1px solid var(--light-gray);
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo { font-weight: 500; font-size: 14px; letter-spacing: 4px; text-transform: uppercase; }
.footer-copy { font-size: 13px; color: var(--gray); }
.footer-ig { font-size: 13px; color: var(--gray); text-decoration: none; transition: color 0.2s; }
.footer-ig:hover { color: var(--black); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 768px) {
  nav { padding: 24px; }
  .hero { padding: 0 24px 60px; }
  .divider { margin: 0 24px; }
  .services { padding: 80px 24px; }
  .service-item { grid-template-columns: 40px 1fr; gap: 20px; }
  .service-tag { display: none; }
  .why { padding: 80px 24px; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 100px 24px; }
  footer { padding: 32px 24px; flex-direction: column; gap: 16px; text-align: center; }
}
