Window view overseeing mountain view

Good
Things are
Coming.

We are currently working on something awesome!

Bookmark Icon

Bookmark Us & Stay Tuned

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Pacific Summit Infra</title>

  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">

  <link rel="stylesheet" href="styles.css" />
</head>
<body>

<!-- NAV -->
<header class="nav">
  <div class="container nav-inner">

    <!-- LOGO -->
    <div class="logo">
      <img src="logo.png" alt="Pacific Summit Infra Logo" />
    </div>

    <!-- NAV LINKS -->
    <nav>
      <a href="#about">About</a>
      <a href="#services">Services</a>
      <a href="#contact">Contact</a>
    </nav>

  </div>
</header>

<!-- HERO -->
<section class="hero">
  <div class="container">
    <h1>Delivering Critical Infrastructure at Scale</h1>
    <p>
      Executive leadership and program management for mission‑critical
      data center infrastructure.
    </p>
    <button class="btn-primary">Learn More</button>
  </div>
</section>

<!-- SERVICES -->
<section class="services">
  <div class="container">
    <div class="service">
      <div class="icon">♟</div>
      <h3>Strategy</h3>
      <p>
        Infrastructure strategy, capital planning, and executive advisory.
      </p>
    </div>

    <div class="service">
      <div class="icon">⚙</div>
      <h3>Program Management</h3>
      <p>
        Full lifecycle program leadership, governance, and delivery.
      </p>
    </div>

    <div class="service">
      <div class="icon">▦</div>
      <h3>Data Center Infrastructure</h3>
      <p>
        End-to-end guidance from design through commissioning.
      </p>
    </div>
  </div>
</section>

<!-- DIFFERENTIATOR -->
<section class="highlight">
  <div class="container">
    <h2>Execution is the Differentiator</h2>
    <p>
      Most firms stop at strategy. Pacific Summit Infra ensures programs
      are delivered—bringing structure, clarity, and accountability to
      complex infrastructure initiatives.
    </p>
  </div>
</section>

<!-- CTA -->
<section class="cta" id="contact">
  <div class="container">
    <h2>Partner with a Firm Built to Deliver</h2>
    <button class="btn-secondary">Contact Us</button>
  </div>
</section>

<!-- FOOTER -->
<footer class="footer">
  <div class="container">
    <p>© 2026 Pacific Summit Infra</p>
  </div>
</footer>

</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Pacific Summit Infra</title>

  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">

  <link rel="stylesheet" href="styles.css" />
</head>
<body>


<!-- NAV -->
<header class="nav">
  <div class="container nav-inner">

    <!-- LOGO -->
    <div class="logo">
      <img src="logo.png" alt="Pacific Summit Infra Logo" />
    </div>

    <!-- NAV LINKS -->
    <nav>
      <a href="#about">About</a>
      <a href="#services">Services</a>
      <a href="#contact">Contact</a>
    </nav>

  </div>
</header>


<!-- HERO -->
<section class="hero">
  <div class="container">
    <h1>Delivering Critical Infrastructure at Scale</h1>
    <p>
      Executive leadership and program management for mission‑critical
      data center infrastructure.
    </p>
    <button class="btn-primary">Learn More</button>
  </div>
</section>

<!-- SERVICES -->
<section class="services">
  <div class="container">
    <div class="service">
      <div class="icon">♟</div>
      <h3>Strategy</h3>
      <p>
        Infrastructure strategy, capital planning, and executive advisory.
      </p>
    </div>

    <div class="service">
      <div class="icon">⚙</div>
      <h3>Program Management</h3>
      <p>
        Full lifecycle program leadership, governance, and delivery.
      </p>
    </div>

    <div class="service">
      <div class="icon">▦</div>
      <h3>Data Center Infrastructure</h3>
      <p>
        End-to-end guidance from design through commissioning.
      </p>
    </div>
  </div>
</section>

<!-- DIFFERENTIATOR -->
<section class="highlight">
  <div class="container">
    <h2>Execution is the Differentiator</h2>
    <p>
      Most firms stop at strategy. Pacific Summit Infra ensures programs
      are delivered—bringing structure, clarity, and accountability to
      complex infrastructure initiatives.
    </p>
  </div>
</section>

<!-- CTA -->
<section class="cta" id="contact">
  <div class="container">
    <h2>Partner with a Firm Built to Deliver</h2>
    <button class="btn-secondary">Contact Us</button>
  </div>
</section>

<!-- FOOTER -->
<footer class="footer">
  <div class="container">
    <p>© 2026 Pacific Summit Infra</p>
  </div>
</footer>

</body>
</html>

:root {
  --navy: #0A1424;
  --gold: #C9A24A;
  --blue: #1D4ED8;
  --gray: #5A6772;
  --white: #F2F5F8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

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

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* NAV */
.nav {
  padding: 20px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mark {
  color: var(--gold);
  font-size: 24px;
}

.brand span {
  display: block;
  font-size: 14px;
}

.infra {
  letter-spacing: 3px;
  font-size: 12px;
}

/* NAV LINKS */
nav a {
  margin-left: 25px;
  text-decoration: none;
  color: var(--white);
  font-weight: 400;
}

/* HERO */
.hero {
  padding: 100px 0;
}

.hero h1 {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  color: var(--gray);
  font-size: 18px;
  margin-bottom: 30px;
}

.btn-primary {
  background: var(--gold);
  border: none;
  padding: 14px 28px;
  color: var(--navy);
  font-weight: 500;
  cursor: pointer;
}

/* SERVICES */
.services {
  padding: 80px 0;
  display: flex;
}

.services .container {
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.service {
  width: 30%;
}

.icon {
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--gray);
}

.service h3 {
  margin-bottom: 10px;
}

.service p {
  color: var(--gray);
  font-size: 14px;
}

/* HIGHLIGHT */
.highlight {
  padding: 100px 0;
  text-align: center;
}

.highlight h2 {
  margin-bottom: 20px;
}

.highlight p {
  max-width: 700px;
  margin: auto;
  color: var(--gray);
}

/* CTA */
.cta {
  padding: 80px 0;
  text-align: center;
}

.btn-secondary {
  margin-top: 20px;
  background: transparent;
  border: 1px solid var(--gold);
  padding: 14px 28px;
  color: var(--gold);
  cursor: pointer;
}

/* FOOTER */
.footer {
  padding: 30px 0;
  text-align: center;
  color: var(--gray);
}