@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg: #070b12;
  --panel: #0c1420;
  --panel2: #101b2a;
  --text: #f5f7fb;
  --muted: #9aa7b8;
  --line: #203047;
  --accent: #ff6a00;
  --blue: #2563eb;
  --max: 1180px;
  --radius: 22px;
}

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

html {
  scroll-behavior: smooth
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6
}

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

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: auto
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 18px 0;
  background: rgba(7, 11, 18, .78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

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

.brand img {
  width: 128px;
  height: 54px;
  object-fit: cover
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 14px;
  color: #aeb9c8
}

.nav-links a {
  transition: .25s
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff
}

.nav-links a.active {
  color: var(--accent)
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: .25s
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  background: #ff812d;
  border-color: #ff812d
}

.menu {
  display: none;
  border: 0;
  background: none;
  color: #fff;
  font-size: 25px
}

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

.hero .container {
  position: relative;
  z-index: 2
}

.hero:before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, .18), rgba(255, 106, 0, .07) 35%, transparent 68%);
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1
}

.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 11, 18, .98) 0%, rgba(7, 11, 18, .86) 34%, rgba(7, 11, 18, .32) 74%, rgba(7, 11, 18, .72) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(7, 11, 18, 0) 34%),
    url("../assets/hero-splash.png") center right / cover no-repeat;
  opacity: .92;
  pointer-events: none;
  z-index: 0
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #30445f;
  padding: 7px 12px;
  border-radius: 999px;
  color: #c2ccd9;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .13em
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block
}

.hero h1 {
  font-family: "Space Grotesk";
  font-size: clamp(58px, 9vw, 125px);
  line-height: .92;
  letter-spacing: -.07em;
  max-width: 1050px;
  margin: 28px 0
}

.hero h1 span {
  color: var(--accent)
}

.hero-copy {
  max-width: 650px;
  color: #aaa;
  font-size: 18px
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px
}

.btn.secondary {
  background: transparent;
  color: #fff;
  border-color: #30445f
}

.btn.secondary:hover {
  background: #101b2a;
  border-color: #3d5d83
}

.mini-note {
  margin-top: 22px;
  color: #686868;
  font-size: 13px
}

section {
  padding: 105px 0
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 42px
}

.kicker {
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 10px
}

h2 {
  font-family: "Space Grotesk";
  font-size: clamp(36px, 5vw, 68px);
  letter-spacing: -.05em;
  line-height: 1
}

.lead {
  color: #999;
  max-width: 470px
}

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

.card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #0e1826, #09101a);
  border-radius: var(--radius);
  padding: 28px;
  min-height: 270px;
  position: relative;
  overflow: hidden
}

.card:after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  right: -80px;
  bottom: -100px;
  background: rgba(37, 99, 235, .09)
}

.card-num {
  color: #555;
  font-size: 12px;
  margin-bottom: 70px
}

.card h3 {
  font-family: "Space Grotesk";
  font-size: 25px;
  margin-bottom: 10px
}

.card p {
  color: #8d8d8d;
  font-size: 14px;
  max-width: 330px
}

.projects {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px
}

.project {
  min-height: 380px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: relative;
  overflow: hidden;
  background: #0d1622;
  isolation: isolate
}

.project.large {
  min-height: 530px
}

.project:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 11, 18, .08) 0%, rgba(7, 11, 18, .65) 54%, rgba(7, 11, 18, .96) 100%),
    linear-gradient(135deg, rgba(37, 99, 235, .22), rgba(255, 106, 0, .14) 52%, rgba(7, 16, 27, .78));
  opacity: 1;
  z-index: 1
}

.project:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--project-image);
  background-position: var(--project-position, center);
  background-size: cover;
  opacity: .74;
  transform: scale(1.02);
  transition: .4s;
  z-index: 0
}

.project:hover:after {
  transform: scale(1.07)
}

.splash-hospitality {
  --project-image: url("../assets/hospitality-splash.png");
  --project-position: center
}

.splash-studio {
  --project-image: url("../assets/hero-splash.png");
  --project-position: center right
}

.project.alt {
  --project-position: center left
}

.project-content {
  position: relative;
  z-index: 2
}

.project-tag {
  display: inline-block;
  border: 1px solid #333;
  border-radius: 999px;
  padding: 6px 10px;
  color: #aaa;
  font-size: 11px;
  margin-bottom: 14px
}

.project h3 {
  font-family: "Space Grotesk";
  font-size: 32px;
  letter-spacing: -.03em
}

.project p {
  color: #888;
  max-width: 430px;
  margin-top: 8px
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.step {
  padding: 30px 20px;
  border-right: 1px solid var(--line)
}

.step:last-child {
  border-right: 0
}

.step span {
  color: #555;
  font-size: 12px
}

.step h3 {
  margin: 22px 0 8px;
  font-family: "Space Grotesk"
}

.step p {
  color: #858585;
  font-size: 14px
}

.band {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 65px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  background: linear-gradient(110deg, #0d1826, #0a111c)
}

.band h2 {
  max-width: 720px
}

footer {
  border-top: 1px solid var(--line);
  padding: 45px 0;
  color: #777
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: start
}

.footer-brand img {
  width: 130px;
  height: 55px;
  object-fit: cover
}

.footer-links {
  display: flex;
  gap: 25px;
  font-size: 13px
}

.footer-links a:hover {
  color: #fff
}

.footer-bottom {
  margin-top: 55px;
  display: flex;
  justify-content: space-between;
  font-size: 12px
}

.page-hero {
  padding: 175px 0 85px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden
}

.page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 11, 18, .98) 0%, rgba(7, 11, 18, .76) 58%, rgba(7, 11, 18, .32) 100%),
    url("../assets/hero-splash.png") center right / cover no-repeat;
  opacity: .45;
  pointer-events: none
}

.page-hero .container {
  position: relative;
  z-index: 1
}

.page-hero h1 {
  font-family: "Space Grotesk";
  font-size: clamp(55px, 8vw, 100px);
  line-height: .95;
  letter-spacing: -.06em;
  max-width: 900px;
  margin: 20px 0
}

.form {
  max-width: 800px
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px
}

.field.full {
  grid-column: 1/-1
}

label {
  font-size: 12px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: .08em
}

input,
textarea,
select {
  width: 100%;
  background: #0a111b;
  border: 1px solid #292929;
  color: #fff;
  border-radius: 12px;
  padding: 15px;
  font: inherit;
  outline: none
}

input:focus,
textarea:focus,
select:focus {
  border-color: #666
}

textarea {
  min-height: 150px;
  resize: vertical
}

@media(max-width:800px) {
  .container {
    width: min(var(--max), calc(100% - 28px))
  }

  .nav-links,
  .nav-cta {
    display: none
  }

  .menu {
    display: block
  }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 78px;
    left: 14px;
    right: 14px;
    flex-direction: column;
    align-items: stretch;
    background: #111;
    border: 1px solid #292929;
    border-radius: 16px;
    padding: 18px
  }

  .nav-links.open a {
    padding: 8px 5px
  }

  .grid,
  .projects,
  .process {
    grid-template-columns: 1fr
  }

  .project.large {
    min-height: 380px
  }

  .step {
    border-right: 0;
    border-bottom: 1px solid var(--line)
  }

  .section-head,
  .footer-top,
  .footer-bottom,
  .band {
    flex-direction: column;
    align-items: flex-start
  }

  .band {
    padding: 35px
  }

  .form-grid {
    grid-template-columns: 1fr
  }

  .field.full {
    grid-column: auto
  }
}

.clients {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px
}

.client {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 18px;
  min-height: 100px;
  background: #0b131f;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Space Grotesk";
  font-weight: 600;
  color: #dce4ef;
  letter-spacing: .02em;
  transition: .25s
}

.client:hover {
  border-color: var(--accent);
  transform: translateY(-3px)
}

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

.trust-section {
  padding-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, .06)
}

.trust-stats {
  grid-template-columns: repeat(4, 1fr)
}

.stat {
  border-left: 2px solid var(--accent);
  padding: 10px 0 10px 22px
}

.stat strong {
  display: block;
  font-family: "Space Grotesk";
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  color: #fff
}

.stat span {
  color: #8998aa;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em
}

@media(max-width:800px) {

  .clients,
  .stats {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:480px) {

  .clients,
  .stats {
    grid-template-columns: 1fr
  }
}
