/* Studio — Coming Soon */

:root {
  --midnight-navy: #333f48;
  --soft-slate-blue: #798592;
  --white: #ffffff;
  --spicy-mustard: #e1ad01;
  --header-inset: 1.5rem;

  --font-family: "Avenir Next Condensed", "Avenir Next", Avenir, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
  background: var(--midnight-navy);
  color: var(--white);
  font-family: var(--font-family);
}

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

/* Layer 1: Background */
.coming-soon {
  min-height: 100vh;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Header */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  padding: var(--header-inset) 2.5rem 0;
}

.brandmark-link {
  display: block;
  line-height: 0;
}

.header-brandmark {
  height: 1.25in;
  width: auto;
}

/* Footer */
.hero-footer {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  padding: 0 calc(2.5rem + 0.125in) 0 2.5rem;
}

.hero-brand {
  grid-column: 3;
  justify-self: end;
}

.hero-brand-logo {
  height: 1.35in;
  width: auto;
}

/* Text overlay */
.hero-copy {
  position: absolute;
  left: 1in;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  text-align: left;
  color: var(--white);
  pointer-events: none;
}

.hero-copy-line {
  font-family: var(--font-family);
  font-size: 180pt;
  font-weight: 200;
  line-height: 0.85;
  letter-spacing: -0.02em;
}

/* Bottom CTA */
.hero-cta {
  grid-column: 2;
  justify-self: center;
  transform: translateY(-0.375in);
}

.lets-talk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.65rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.35rem;
  background: rgba(121, 133, 146, 0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--white);
  font-family: var(--font-family);
  font-size: 14pt;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.lets-talk-btn:hover {
  background: rgba(121, 133, 146, 0.55);
  border-color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 768px) {
  :root {
    --header-inset: 1.25rem;
  }

  .site-header {
    padding: var(--header-inset) 1.5rem 0;
  }

  .header-brandmark {
    height: 1in;
  }

  .hero-footer {
    bottom: 1.5rem;
    padding: 0 calc(1.5rem + 0.125in) 0 1.5rem;
  }

  .hero-brand-logo {
    height: 1in;
  }

  .hero-copy {
    left: 1.5rem;
  }

  .hero-copy-line {
    font-size: 65pt;
  }

  .lets-talk-btn {
    min-height: 2.5rem;
    padding: 0.55rem 1.5rem;
    font-size: 12pt;
  }
}
