/* [project]/app/globals.css [app-client] (css) */
:root {
  --lightningcss-light: ;
  --lightningcss-dark: initial;
  color-scheme: dark;
  --bg: #08080b;
  --bg-alt: #0f0f14;
  --ink: #f6f6f4;
  --muted: #9b9ba5;
  --line: #f6f6f41f;
  --accent: #c9a869;
  --accent-soft: #c9a86924;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  min-height: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  font-family: Helvetica Neue, Arial, Helvetica, sans-serif;
}

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

button {
  font: inherit;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.header {
  z-index: 100;
  border-bottom: 1px solid #0000;
  padding: 22px 0;
  transition: background-color .3s, border-color .3s, padding .3s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.header.scrolled {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  background-color: #08080bd9;
  padding: 14px 0;
}

.header-row {
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  display: flex;
}

.logo {
  letter-spacing: -.01em;
  font-size: 1.3rem;
  font-weight: 700;
}

.logo .dot {
  color: var(--accent);
}

.nav-desktop {
  align-items: center;
  gap: 28px;
  display: flex;
}

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

.nav-social a {
  color: var(--muted);
  font-size: .85rem;
  transition: color .2s;
}

.nav-social a:hover {
  color: var(--ink);
}

.btn {
  border: 1px solid var(--accent);
  color: var(--ink);
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: .8rem;
  font-weight: 600;
  transition: background-color .25s, color .25s, transform .2s;
  display: inline-flex;
}

.btn:hover {
  background-color: var(--accent);
  color: #08080b;
  transform: translateY(-1px);
}

.nav-toggle {
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  background: none;
  border-radius: 8px;
  padding: 8px 10px;
  display: none;
}

.hero {
  background: radial-gradient(ellipse 70% 50% at 15% 0%, var(--accent-soft) 0%, transparent 60%),
    var(--bg);
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  padding-top: 120px;
  padding-bottom: 60px;
  display: flex;
  position: relative;
}

.panel {
  border-top: 1px solid var(--line);
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  display: flex;
  position: relative;
}

.panel:nth-of-type(odd) {
  background: var(--bg-alt);
}

.panel-index {
  color: var(--accent);
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .85;
  margin-bottom: 22px;
  font-size: .85rem;
}

.panel-heading {
  letter-spacing: -.02em;
  text-transform: lowercase;
  max-width: 16ch;
  margin: 0 0 28px;
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  font-weight: 700;
  line-height: 1.02;
}

.panel-copy {
  max-width: 40ch;
  color: var(--muted);
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.6;
}

.reveal {
  opacity: 0;
  transition: opacity .8s, transform .8s;
  transform: translateY(28px);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.scroll-cue {
  color: var(--muted);
  letter-spacing: .15em;
  text-transform: uppercase;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  display: flex;
  position: absolute;
  bottom: 40px;
  left: 32px;
}

.scroll-cue .line {
  background: var(--line);
  width: 1px;
  height: 34px;
  position: relative;
  overflow: hidden;
}

.scroll-cue .line:after {
  content: "";
  background: var(--accent);
  width: 100%;
  height: 100%;
  animation: 1.8s ease-in-out infinite scrollcue;
  position: absolute;
  top: -100%;
  left: 0;
}

@keyframes scrollcue {
  0% {
    top: -100%;
  }

  60% {
    top: 100%;
  }

  100% {
    top: 100%;
  }
}

.cta {
  text-align: center;
  border-top: 1px solid var(--line);
  background: radial-gradient(ellipse 60% 80% at 50% 100%, var(--accent-soft) 0%, transparent 65%),
    var(--bg);
  padding: 140px 0;
}

.cta-heading {
  letter-spacing: -.01em;
  margin: 0 0 18px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
}

.cta-copy {
  color: var(--muted);
  max-width: 34ch;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
  padding: 90px 0 40px;
}

.footer-grid {
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  padding-bottom: 60px;
  display: grid;
}

.office-label {
  color: var(--accent);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-size: .8rem;
}

.office h3 {
  margin: 0 0 18px;
  font-size: 1.6rem;
  font-weight: 700;
}

.office p {
  color: var(--muted);
  margin: 0 0 8px;
  font-size: .98rem;
  line-height: 1.6;
}

.office a {
  color: var(--ink);
  border-bottom: 1px solid #0000;
  transition: border-color .2s, color .2s;
}

.office a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer-bottom {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  display: flex;
}

.footer-locations {
  color: var(--muted);
  max-width: 60ch;
  font-size: .85rem;
  line-height: 1.8;
}

.footer-social {
  gap: 18px;
  display: flex;
}

.footer-social a {
  color: var(--muted);
  font-size: .85rem;
  transition: color .2s;
}

.footer-social a:hover {
  color: var(--accent);
}

.footer-meta {
  color: var(--muted);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  font-size: .78rem;
  display: flex;
}

.footer-meta a:hover {
  color: var(--ink);
}

.cookie-banner {
  z-index: 200;
  border: 1px solid var(--line);
  background: #141418;
  border-radius: 14px;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  max-width: 520px;
  margin: 0 auto;
  padding: 20px 22px;
  display: flex;
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  box-shadow: 0 20px 50px #0006;
}

.cookie-banner p {
  color: var(--muted);
  flex: 240px;
  margin: 0;
  font-size: .88rem;
}

@media (max-width: 720px) {
  .nav-desktop {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

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