:root {
  --background: #050505;
  --foreground: #f5f5f2;
  --muted: #a7a7a0;
  --line: rgba(255, 255, 255, 0.13);
  --panel: rgba(255, 255, 255, 0.035);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
}

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 79% 23%, rgba(255, 255, 255, 0.1), transparent 23rem),
    linear-gradient(135deg, #020202 0%, #10100f 46%, #050505 100%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem clamp(1.25rem, 4vw, 4.5rem);
  color: rgba(245, 245, 242, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: clamp(11rem, 18vw, 15.5rem);
  height: auto;
  opacity: 0.92;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.25rem);
  color: rgba(245, 245, 242, 0.68);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav a {
  transition: color 180ms ease;
}

.nav a:hover {
  color: #ffffff;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  align-items: center;
  padding: 8rem clamp(1.25rem, 5vw, 6rem) 5rem;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.78) 36%, rgba(5, 5, 5, 0.15) 100%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 92px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(48rem, 100%);
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  max-width: 37rem;
  font-size: clamp(2.55rem, 5.4vw, 5.35rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.energy-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.sun {
  position: absolute;
  top: 18%;
  right: 12%;
  width: clamp(11rem, 22vw, 19rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.23) 38%, rgba(255, 255, 255, 0.03) 69%, transparent 72%);
  filter: blur(1px);
  opacity: 0.46;
}

.tower {
  position: absolute;
  bottom: 0;
  width: 13rem;
  height: 37rem;
  opacity: 0.3;
}

.tower::before,
.tower::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.42);
  transform-origin: bottom;
}

.tower::before {
  left: 45%;
  bottom: 0;
  width: 1px;
  height: 100%;
  transform: rotate(-10deg);
}

.tower::after {
  right: 45%;
  bottom: 0;
  width: 1px;
  height: 100%;
  transform: rotate(10deg);
}

.tower-one {
  right: 9%;
}

.tower-two {
  right: 28%;
  height: 29rem;
  transform: scale(0.75);
  opacity: 0.2;
}

.line {
  position: absolute;
  right: -6vw;
  width: 60vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  opacity: 0.36;
  transform-origin: right;
}

.line-one {
  top: 32%;
  transform: rotate(-8deg);
}

.line-two {
  top: 40%;
  transform: rotate(-4deg);
}

.line-three {
  top: 48%;
  transform: rotate(1deg);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(9rem, 0.34fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 6rem);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 6rem);
  border-top: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.86);
}

.section-label {
  margin: 0 0 1.3rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-body {
  max-width: 58rem;
}

.section-body h2 {
  margin-bottom: 1.25rem;
  max-width: 42rem;
  font-size: clamp(2rem, 3.9vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.04;
}

.section-body p {
  max-width: 48rem;
  color: rgba(245, 245, 242, 0.7);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  font-weight: 300;
  line-height: 1.85;
}

.section-body p + p {
  margin-top: 1.25rem;
}

.contact {
  display: grid;
  place-items: center;
  gap: 0.9rem;
  text-align: center;
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 5vw, 6rem);
  border-top: 1px solid var(--line);
  background: var(--panel);
}

.email-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.44);
  color: #ffffff;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 300;
  line-height: 1.6;
}

.locations {
  margin: 0;
  color: rgba(245, 245, 242, 0.45);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  line-height: 1.6;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    padding-top: 1rem;
    gap: 1rem;
  }

  .brand-logo {
    width: 10rem;
  }

  .nav {
    gap: 0.8rem;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .hero {
    min-height: 92vh;
    padding-top: 7.5rem;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.84) 0%, rgba(5, 5, 5, 0.68) 48%, rgba(5, 5, 5, 0.94) 100%),
      repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 76px);
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .sun {
    top: 17%;
    right: -12%;
    opacity: 0.26;
  }

  .tower-one {
    right: -11%;
    opacity: 0.18;
  }

  .tower-two {
    display: none;
  }

  .line {
    width: 96vw;
    opacity: 0.23;
  }

  .content-grid {
    display: block;
  }

  .section-label {
    margin-bottom: 1rem;
  }

  .contact {
    padding-bottom: 4.5rem;
  }

  .email-link {
    display: inline-block;
  }
}
