:root {
  --paper: #f4f3ef;
  --ink: #252525;
  --muted: #666d70;
  --brand: #0788be;
  --line: rgba(7, 136, 190, 0.22);
}

* { box-sizing: border-box; }

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist-sans), "Helvetica Neue", Arial, sans-serif;
}

.banner-shell {
  isolation: isolate;
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  background: var(--paper);
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.hero-image {
  position: absolute;
  z-index: -3;
  inset: 14% 0 10% 44%;
  background: url('../images/industrial-building.png') center / cover no-repeat;
  animation: imageReveal 1.35s cubic-bezier(.2,.8,.2,1) both, breathe 16s ease-in-out 1.4s infinite alternate;
}

.image-wash {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, var(--paper) 0%, var(--paper) 37%, rgba(244,243,239,.92) 44%, rgba(244,243,239,.18) 58%, rgba(244,243,239,0) 73%),
    linear-gradient(180deg, var(--paper) 0%, rgba(244,243,239,0) 18%, rgba(244,243,239,0) 79%, var(--paper) 92%);
}

.blueprint-grid {
  position: absolute;
  z-index: -1;
  inset: 13% 0 8% 43%;
  opacity: .65;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 88px 88px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 28%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 28%, #000 100%);
  animation: gridDraw 1.4s .25s ease-out both;
}

.brand-header {
  position: relative;
  z-index: 1;
  padding: clamp(26px, 4vw, 52px) clamp(28px, 5vw, 76px) 0;
  animation: rise .8s ease-out both;
}

.brand-logo {
  display: block;
  width: clamp(118px, 11vw, 164px);
  height: auto;
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(760px, 57vw);
  padding: 26px clamp(28px, 5vw, 76px) 42px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
  animation: rise .8s .12s ease-out both;
}

.eyebrow span { width: 34px; height: 2px; background: var(--brand); }

h1 {
  margin: 0;
  font-size: clamp(3.4rem, 6.1vw, 6.6rem);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

h1 span { display: block; }
h1 > span:first-child { color: var(--brand); }
h1 > span { animation: rise .85s cubic-bezier(.2,.8,.2,1) both; }
h1 > span:first-child { animation-delay: .16s; }
h1 > span:nth-child(2) { animation-delay: .24s; }

.tagline {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.55;
  animation: rise .8s .34s ease-out both;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 40px;
  margin-top: 30px;
  animation: rise .8s .44s ease-out both;
}

.contact-row a {
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding: 8px 0 7px;
  font-size: 15px;
  font-weight: 600;
}

.contact-row a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--brand);
  transition: right .25s ease;
}

.contact-row a:hover::after, .contact-row a:focus-visible::after { right: 0; }
.contact-row a:focus-visible { outline: 2px solid var(--brand); outline-offset: 5px; }

.contact-label {
  display: block;
  margin-bottom: 5px;
  color: var(--brand);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.company-meta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(230px, 23%) 1fr;
  margin: 0 clamp(28px, 5vw, 76px) clamp(22px, 3.6vw, 48px);
  border-top: 1px solid var(--line);
  animation: rise .8s .5s ease-out both;
}

.meta-block { padding-top: 18px; }
.meta-block > span, .meta-block div > span {
  display: block;
  color: var(--brand);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.meta-block strong {
  display: block;
  margin-top: 7px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.address {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-left: 1px dashed rgba(7,136,190,.42);
  padding-left: clamp(24px, 4vw, 64px);
}
.pin { font-size: 26px !important; line-height: 1; }

@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes imageReveal { from { opacity: 0; transform: scale(1.025); } to { opacity: 1; transform: scale(1); } }
@keyframes breathe { from { transform: scale(1); } to { transform: scale(1.035); } }
@keyframes gridDraw { from { opacity: 0; transform: translateX(30px); } }

@media (max-width: 760px) {
  .banner-shell { min-height: 100svh; overflow-y: auto; }
  .hero-image { inset: 31% 0 18% 20%; opacity: .62; }
  .image-wash { background: linear-gradient(180deg, var(--paper) 0 30%, rgba(244,243,239,.86) 48%, rgba(244,243,239,.45) 72%, var(--paper) 88%); }
  .blueprint-grid { inset: 28% 0 17% 10%; }
  .brand-header { padding-bottom: 40px; }
  .hero-content { width: 100%; align-self: start; padding-top: 4px; }
  h1 { font-size: clamp(3.1rem, 15vw, 5rem); }
  .tagline { color: #444a4d; }
  .contact-row { gap: 10px 28px; }
  .company-meta { grid-template-columns: 1fr; margin-top: 42px; }
  .incorporated { padding-bottom: 16px; }
  .address { border-left: 0; border-top: 1px dashed rgba(7,136,190,.42); padding: 16px 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}
