:root {
  --ink: #05070b;
  --panel: #0b1018;
  --panel2: #111824;
  --white: #f5f3ef;
  --muted: #aab3c2;
  --red: #a71925;
  --red2: #d02b36;
  --blue: #14253f;
  --line: rgba(255, 255, 255, 0.13);
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.24'/%3E%3C/svg%3E");
}
a {
  color: inherit;
}
.container {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #d9dde5;
  font-size: 0.76rem;
  font-weight: 800;
}
.section {
  padding: 88px 0;
}
.section-dark {
  background: #080c12;
}
.section-panel {
  background: linear-gradient(180deg, #0c121b, #080b11);
}
.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}
.section h2 {
  font-family: Impact, "Arial Narrow", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.02;
  margin: 0.35rem 0 1rem;
}
.section p {
  color: var(--muted);
}
.site-header {
  position: fixed;
  z-index: 50;
  left: 0;
  right: 0;
  top: 0;
  transition: 0.25s;
  background: linear-gradient(#03050aee, transparent);
}
.site-header.scrolled {
  background: #05070bf2;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #d7dde8;
}
.brand-text span {
  display: block;
  font-size: 0.72rem;
  color: #c9cfdb;
  letter-spacing: 0.19em;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--red2);
  transition: 0.2s;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  right: 0;
}
.menu-btn {
  display: none;
  background: none;
  border: 0;
  color: white;
  font-size: 1.7rem;
}
.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  background-image: linear-gradient(
      90deg,
      rgba(3, 5, 9, 0.88) 0%,
      rgba(3, 5, 9, 0.45) 48%,
      rgba(3, 5, 9, 0.6) 100%
    ),
    linear-gradient(0deg, #05070b 0%, transparent 38%),
    url("../assets/images/GHB_Backdrop.png");
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 60% 20%,
      rgba(170, 205, 255, 0.14),
      transparent 26%
    ),
    linear-gradient(115deg, transparent 40%, rgba(167, 25, 37, 0.1));
  pointer-events: none;
}
.mist {
  position: absolute;
  inset: auto -15% 0;
  height: 34%;
  background: radial-gradient(
    ellipse at center,
    rgba(210, 225, 240, 0.18),
    transparent 62%
  );
  filter: blur(30px);
  animation: drift 14s ease-in-out infinite alternate;
}
@keyframes drift {
  to {
    transform: translateX(10%) scale(1.08);
  }
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 150px;
  padding-bottom: 78px;
  display: grid;
  grid-template-columns: minmax(240px, 400px) 1fr;
  gap: 50px;
  align-items: end;
}
.hero-logo {
  width: min(100%, 380px);
  border-radius: 50%;
  filter: drop-shadow(0 18px 25px #000);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  50% {
    transform: translateY(-8px);
  }
}
.hero-copy {
  max-width: 720px;
}
.hero h1 {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(3.2rem, 7.5vw, 7rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.9;
  margin: 0 0 20px;
  text-shadow: 0 6px 20px #000;
}
.hero h1 span {
  display: block;
  color: var(--red2);
}
.hero-lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 620px;
  color: #e5e8ee;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 900;
  font-size: 0.78rem;
  transition: 0.22s;
  cursor: pointer;
}
.btn-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 10px 30px rgba(167, 25, 37, 0.28);
}
.btn-primary:hover {
  background: var(--red2);
  transform: translateY(-2px);
}
.btn-ghost {
  border-color: #ffffff65;
  background: #05070b66;
}
.btn-ghost:hover {
  border-color: white;
  background: #ffffff10;
}
.hero-tags {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.hero-tags span {
  display: flex;
  gap: 8px;
  align-items: center;
}
.dot {
  width: 5px;
  height: 5px;
  background: var(--red2);
  border-radius: 50%;
}
.stats {
  margin-top: -1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #070b11;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat:last-child {
  border: 0;
}
.stat strong {
  display: block;
  font-family: Impact, sans-serif;
  font-size: 2.1rem;
  letter-spacing: 0.04em;
}
.stat span {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111722;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #05070bea 0%, transparent 75%),
    var(--bg, linear-gradient(135deg, #1a2840, #080b11));
  background-size: cover;
  background-position: center;
  transition: 0.4s;
}
.card:hover::before {
  transform: scale(1.05);
}
.card > * {
  position: relative;
}
.card-number {
  font-family: Impact, sans-serif;
  color: #ffffff33;
  font-size: 3.5rem;
  line-height: 1;
}
.card h3 {
  text-transform: uppercase;
  font-size: 1.35rem;
  margin: 0.2rem 0;
}
.card p {
  margin: 0;
}
.card-link {
  margin-top: 15px;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #fff;
  text-decoration: none;
}
.card-link:hover {
  color: #ff6972;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.image-frame {
  position: relative;
}
.image-frame img {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  box-shadow: 25px 25px 0 #121923;
}
.image-frame::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  border-left: 3px solid var(--red2);
  border-top: 3px solid var(--red2);
  left: -14px;
  top: -14px;
}
.ticks {
  display: grid;
  gap: 14px;
  margin: 25px 0;
}
.tick {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.tick b {
  color: white;
}
.tick i {
  font-style: normal;
  color: var(--red2);
  font-weight: 900;
}
.quote {
  padding: 70px 0;
  text-align: center;
  background: linear-gradient(90deg, #0d1726, #080b11 40%, #151018);
}
.quote blockquote {
  font-family: Georgia, serif;
  font-size: clamp(1.5rem, 3.4vw, 3rem);
  max-width: 920px;
  margin: auto;
  color: #f3f0ea;
}
.quote cite {
  display: block;
  margin-top: 18px;
  color: #aeb8c7;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-style: normal;
  font-size: 0.75rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 220px;
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
}
.gallery-item:first-child {
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item::after {
  content: attr(data-title);
  position: absolute;
  inset: auto 0 0;
  padding: 35px 18px 15px;
  background: linear-gradient(transparent, #000);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  background: #000e;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 95vw;
  max-height: 88vh;
}
.lightbox button {
  position: absolute;
  right: 24px;
  top: 20px;
  border: 0;
  background: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
}
.cta {
  padding: 70px 0;
  background: linear-gradient(100deg, #111b2b, #090d14 56%, #351016);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin: 0;
}
.cta p {
  margin: 8px 0 0;
  color: #bdc4cf;
}
.page-hero {
  padding: 170px 0 80px;
  background: linear-gradient(#05070ba8, #05070b),
    url("../assets/images/hero-concept.jpg") center/cover;
}
.page-hero h1 {
  font-family: Impact, sans-serif;
  text-transform: uppercase;
  font-size: clamp(3.2rem, 8vw, 6rem);
  margin: 0;
  line-height: 0.95;
}
.page-hero p {
  max-width: 690px;
  color: #d5dae3;
}
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 28px;
}
.investigation-list {
  display: grid;
  gap: 18px;
}
.investigation {
  display: grid;
  grid-template-columns: 220px 1fr;
  background: #0d131d;
  border: 1px solid var(--line);
  overflow: hidden;
}
.investigation img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.investigation-copy {
  padding: 24px;
}
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #9ca7b7;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.badge {
  border: 1px solid #ffffff25;
  padding: 4px 8px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 35px;
}
.form {
  display: grid;
  gap: 16px;
}
.field {
  display: grid;
  gap: 7px;
}
.field label {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  font-weight: 800;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: #070b11;
  border: 1px solid #ffffff26;
  color: white;
  padding: 14px;
  font: inherit;
}
.field textarea {
  min-height: 150px;
  resize: vertical;
}
.form-status {
  min-height: 24px;
  color: #9fe0b3;
}
.social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  border-radius: 50%;
  text-decoration: none;
  font-weight: 900;
}
.social:hover {
  background: var(--red);
}
footer {
  padding: 46px 0 24px;
  background: #030509;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 35px;
}
.footer-grid h3 {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}
.footer-grid a {
  display: block;
  color: #aab3c2;
  text-decoration: none;
  margin: 7px 0;
}
.footer-grid a:hover {
  color: white;
}
.copyright {
  margin-top: 35px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: #7e8999;
  font-size: 0.78rem;
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.7s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .menu-btn {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    background: #05070bf5;
    display: none;
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open {
    display: flex;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .hero-logo {
    width: 240px;
  }
  .hero-copy {
    display: grid;
    justify-items: center;
  }
  .hero-tags {
    justify-content: center;
  }
  .cards,
  .split,
  .contact-grid,
  .content-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat:nth-child(2) {
    border-right: 0;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item:first-child {
    grid-column: span 2;
  }
  .cta-wrap {
    display: block;
  }
  .cta .btn {
    margin-top: 20px;
  }
  .investigation {
    grid-template-columns: 1fr;
  }
  .investigation img {
    height: 220px;
  }
  .image-frame img {
    box-shadow: 14px 14px 0 #121923;
  }
}
@media (max-width: 560px) {
  .container {
    width: min(100% - 26px, var(--max));
  }
  .brand-text {
    display: none;
  }
  .section {
    padding: 65px 0;
  }
  .hero h1 {
    font-size: 3.1rem;
  }
  .hero-inner {
    padding-bottom: 50px;
  }
  .hero-logo {
    width: 190px;
  }
  .hero-actions {
    display: grid;
    width: 100%;
  }
  .btn {
    width: 100%;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat {
    padding: 22px 8px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 210px;
  }
  .gallery-item:first-child {
    grid-column: auto;
    grid-row: auto;
  }
  .copyright {
    display: block;
  }
  .copyright span {
    display: block;
    margin-top: 8px;
  }
}
.social {
  color: #ffffff;
  font-size: 38px;
  text-decoration: none;
  border: none;
  background: none;
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.social:hover {
  color: #ff0000;
  transform: scale(1.15);
}
/* Make homepage card images fill the whole box */
.card {
  position: relative;
  overflow: hidden;
}

/* Images placed directly inside a card */
.card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}

/* Dark fade behind the card text */
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 35%,
    rgba(5, 7, 11, 0.45) 60%,
    rgba(5, 7, 11, 0.96) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Keep all text above the photograph and fade */
.card > *:not(img) {
  position: relative;
  z-index: 2;
}
.report{
    max-width:900px;
    margin:60px auto;
    padding:0 20px;
    line-height:1.9;
}

.report h2{
    margin-top:50px;
    margin-bottom:15px;
    color:#d13239;
    font-size:2rem;
    text-transform:uppercase;
}

.report p{
    margin-bottom:20px;
    color:#ddd;
}

.report ul{
    padding-left:25px;
}

.report li{
    margin-bottom:12px;
    color:#ddd;
}
/* =====================================================
   REUSABLE INVESTIGATION REPORT TEMPLATE
   ===================================================== */

.report-page {
  max-width: 1050px;
}

/* Main report cover */
.report-cover {
  margin: 0 0 24px;
  border: 1px solid var(--line);
  background: #070b11;
  overflow: hidden;
}

.report-cover img {
  width: 100%;
  height: clamp(320px, 58vw, 620px);
  display: block;
  object-fit: cover;
  object-position: center;
}

.report-cover figcaption,
.report-photo figcaption,
.report-gallery figcaption {
  padding: 12px 15px;
  color: var(--muted);
  font-size: 0.82rem;
  font-style: italic;
  background: #080c12;
}

/* Badges below cover */
.report-meta {
  margin: 0 0 45px;
}

/* Main readable report column */
.report {
  max-width: 850px;
  margin: 0 auto;
}

.report-section {
  margin: 0 0 58px;
}

.report-section h2 {
  margin: 0 0 20px;
  padding-bottom: 12px;
  color: var(--white);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--red);
}

.report-section h3 {
  margin: 0 0 6px;
  color: var(--white);
}

.report-section p {
  margin: 0 0 20px;
  color: #c5ccd7;
  font-size: 1.04rem;
  line-height: 1.9;
}

.report-section ul {
  padding-left: 22px;
  color: #c5ccd7;
}

.report-section li {
  margin-bottom: 10px;
}

/* Individual report photographs */
.report-photo {
  max-width: 760px;
  margin: 15px auto 58px;
  border: 1px solid var(--line);
  background: #070b11;
}

.report-photo img {
  width: 100%;
  max-height: 620px;
  display: block;
  object-fit: cover;
}

.report-photo-wide {
  max-width: 100%;
}

/* Multiple-image gallery */
.report-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.report-gallery figure {
  margin: 0;
  border: 1px solid var(--line);
  background: #070b11;
  overflow: hidden;
}

.report-gallery img {
  width: 100%;
  height: 300px;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.report-gallery figure:hover img {
  transform: scale(1.04);
}

/* Equipment blocks */
.equipment-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  list-style: none;
  padding: 0 !important;
}

.equipment-list li {
  padding: 12px 15px;
  margin: 0;
  border: 1px solid var(--line);
  background: #0b1018;
}

.equipment-list li::before {
  content: "●";
  margin-right: 10px;
  color: var(--red2);
}

/* Investigation timeline */
.report-timeline {
  display: grid;
  gap: 0;
  border-left: 2px solid var(--red);
  margin-left: 42px;
}

.timeline-entry {
  position: relative;
  display: grid;
  grid-template-columns: 75px 1fr;
  gap: 22px;
  padding: 0 0 34px 28px;
}

.timeline-entry::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red2);
  box-shadow: 0 0 0 5px #0b1018;
}

.timeline-entry time {
  color: var(--red2);
  font-weight: 900;
  letter-spacing: 0.06em;
}

.timeline-entry p {
  margin-bottom: 0;
}

/* Conclusion/verdict */
.report-conclusion {
  padding: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #111824, #080b11);
}

.verdict {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.verdict span {
  color: var(--red2);
  font-weight: 900;
}

/* Mobile layout */
@media (max-width: 700px) {
  .report-gallery {
    grid-template-columns: 1fr;
  }

  .report-gallery img {
    height: 250px;
  }

  .equipment-list {
    grid-template-columns: 1fr;
  }

  .report-timeline {
    margin-left: 7px;
  }

  .timeline-entry {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .verdict {
    display: block;
  }

  .verdict span {
    display: block;
    margin-top: 8px;
  }
}

/* =====================================================
   LEGAL PAGES
   ===================================================== */
.legal-hero {
  min-height: 430px;
}

.legal-page {
  max-width: 900px;
}

.legal-updated {
  color: var(--muted);
  margin-bottom: 28px;
}

.legal-notice {
  margin-bottom: 38px;
  padding: 18px 20px;
  border-left: 4px solid var(--red2);
  background: #111824;
  color: #d8dde6;
}

.legal-page section {
  margin-bottom: 44px;
}

.legal-page h2 {
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
}

.legal-page p,
.legal-page li {
  color: #c3cbd7;
}

.legal-page a {
  color: #ff6972;
  overflow-wrap: anywhere;
}

.legal-page ul {
  padding-left: 24px;
}

.legal-page li {
  margin-bottom: 10px;
}

/* =====================================================
   CUSTOM 404 PAGE
   ===================================================== */
.error-main {
  min-height: 100vh;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 130px 0 70px;
  text-align: center;
  background:
    linear-gradient(rgba(3, 5, 9, 0.64), rgba(3, 5, 9, 0.94)),
    url("../assets/images/GHB_Backdrop.png") center/cover;
}

.error-content {
  max-width: 760px;
}

.error-logo {
  width: min(220px, 58vw);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 22px;
  filter: drop-shadow(0 18px 28px #000);
}

.error-page h1 {
  margin: 0;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(7rem, 24vw, 15rem);
  line-height: 0.8;
  color: var(--red2);
  text-shadow: 0 8px 25px #000;
}

.error-page h2 {
  margin: 28px 0 14px;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(2rem, 6vw, 4rem);
  text-transform: uppercase;
}

.error-page p {
  max-width: 620px;
  margin: 0 auto;
  color: #d8dde6;
  font-size: 1.05rem;
}

.error-actions {
  justify-content: center;
}
