/* [project]/app/globals.css [app-client] (css) */
*, :before, :after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #0a0a0a;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  background: #f5f4f0;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  overflow-x: hidden;
}

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

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

.nav {
  z-index: 200;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  display: flex;
  position: fixed;
  inset: 0 0 auto;
}

.nav-logo {
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
}

.nav-icons {
  align-items: center;
  gap: 18px;
  display: flex;
}

.nav-icon {
  opacity: .65;
  transition: opacity .2s;
  display: flex;
}

.nav-icon:hover {
  opacity: 1;
}

.hero {
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100svh;
  padding: 0 48px 80px;
  display: flex;
  position: relative;
}

.hero-eyebrow {
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 32px;
  font-size: 11px;
}

.hero-headline {
  letter-spacing: -.035em;
  text-transform: lowercase;
  max-width: 14ch;
  margin-bottom: 56px;
  font-size: clamp(52px, 9.5vw, 148px);
  font-weight: 800;
  line-height: .92;
}

.hero-sub {
  color: #555;
  max-width: 44ch;
  margin-bottom: 56px;
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.7;
}

.cta-btn {
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #f5f4f0;
  background: #0a0a0a;
  align-self: flex-start;
  align-items: center;
  gap: 14px;
  padding: 18px 36px;
  font-size: 11px;
  font-weight: 700;
  transition: background .25s;
  display: inline-flex;
}

.cta-btn:hover {
  background: #2a2a2a;
}

.cta-arrow {
  font-style: normal;
}

.marquee-strip {
  color: #f5f4f0;
  background: #0a0a0a;
  border-top: 1px solid #d8d6d0;
  border-bottom: 1px solid #d8d6d0;
  padding: 18px 0;
  overflow: hidden;
}

.marquee-track {
  gap: 0;
  width: max-content;
  animation: 30s linear infinite marquee;
  display: flex;
}

.marquee-inner {
  white-space: nowrap;
  gap: 0;
  display: flex;
}

.marquee-item {
  letter-spacing: .25em;
  text-transform: uppercase;
  opacity: .7;
  padding: 0 48px;
  font-size: 11px;
  font-weight: 700;
}

.marquee-dot {
  letter-spacing: 0;
  opacity: .3;
  padding: 0;
  font-size: 11px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.about {
  border-bottom: 1px solid #d8d6d0;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 80px;
  padding: 120px 48px;
  display: grid;
}

.about-left h2 {
  letter-spacing: -.03em;
  text-transform: lowercase;
  font-size: clamp(40px, 6vw, 92px);
  font-weight: 800;
  line-height: .95;
}

.about-right {
  flex-direction: column;
  gap: 32px;
  display: flex;
}

.about-right p {
  color: #444;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.7;
}

.about-tagline {
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #888;
  font-size: 11px;
}

.services {
  padding: 100px 48px;
}

.services-header {
  border-bottom: 1px solid #d8d6d0;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 64px;
  padding-bottom: 24px;
  display: flex;
}

.services-header h3 {
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #888;
  font-size: 11px;
  font-weight: 700;
}

.services-count {
  letter-spacing: .1em;
  color: #aaa;
  font-size: 11px;
}

.service-item {
  cursor: default;
  border-bottom: 1px solid #d8d6d0;
  grid-template-columns: 80px 1fr 200px;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
  transition: background .2s;
  display: grid;
}

.service-item:hover {
  background: #eeecea;
  margin: 0 -48px;
  padding: 40px 48px;
}

.service-num {
  letter-spacing: .1em;
  color: #aaa;
  font-size: 12px;
  font-weight: 700;
}

.service-name {
  letter-spacing: -.02em;
  font-size: clamp(24px, 2.8vw, 42px);
  font-weight: 700;
}

.service-desc {
  color: #666;
  text-align: right;
  font-size: 13px;
  line-height: 1.6;
}

.cta-band {
  color: #f5f4f0;
  background: #0a0a0a;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  padding: 100px 48px;
  display: flex;
}

.cta-band-text h2 {
  letter-spacing: -.03em;
  text-transform: lowercase;
  max-width: 16ch;
  font-size: clamp(36px, 5vw, 76px);
  font-weight: 800;
  line-height: 1;
}

.cta-band-text p {
  color: #888;
  max-width: 36ch;
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.6;
}

.cta-btn-light {
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #0a0a0a;
  white-space: nowrap;
  background: #f5f4f0;
  flex-shrink: 0;
  align-items: center;
  gap: 14px;
  padding: 18px 36px;
  font-size: 11px;
  font-weight: 700;
  transition: background .25s;
  display: inline-flex;
}

.cta-btn-light:hover {
  background: #e0deda;
}

.contact {
  border-top: 1px solid #d8d6d0;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 100px 48px;
  display: grid;
}

.contact-label {
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #888;
  grid-column: 1 / -1;
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 700;
}

.office-region {
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 1px solid #d8d6d0;
  margin-bottom: 24px;
  padding-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
}

.office-details {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.office-details span, .office-details a {
  color: #555;
  font-size: 15px;
  line-height: 1.5;
}

.office-details a:hover {
  color: #0a0a0a;
}

.footer {
  color: #f5f4f0;
  background: #0a0a0a;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 48px;
  display: flex;
}

.footer-logo {
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
}

.footer-social {
  align-items: center;
  gap: 20px;
  display: flex;
}

.social-link {
  opacity: .5;
  transition: opacity .2s;
  display: flex;
}

.social-link:hover {
  opacity: 1;
}

.footer-credit {
  letter-spacing: .1em;
  color: #555;
  font-size: 11px;
}

@media (max-width: 768px) {
  .nav {
    padding: 24px;
  }

  .hero {
    padding: 0 24px 64px;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 24px;
  }

  .services {
    padding: 80px 24px;
  }

  .service-item {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .service-item:hover {
    margin: 0 -24px;
    padding: 40px 24px;
  }

  .service-desc {
    display: none;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 24px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 24px;
  }
}

/*# sourceMappingURL=app_globals_0yg4wg8.css.map*/