:root {
  --black: #050505;
  --ink: #111111;
  --gold: #d4af37;
  --gold-soft: #f4d66d;
  --white: #ffffff;
  --muted: #6b6b6b;
  --panel: rgba(255, 255, 255, 0.92);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.22), transparent 28%),
    radial-gradient(circle at 85% 80%, rgba(212, 175, 55, 0.18), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f4f4f4 42%, #e9e9e9 100%);
  color: var(--ink);
}

.page-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  overflow: hidden;
}

.hero-card {
  position: relative;
  width: min(1120px, 100%);
  min-height: 640px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
  padding: 34px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 26px;
  pointer-events: none;
}

.brand-panel,
.content-panel {
  position: relative;
  z-index: 2;
}

.brand-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.85), rgba(255,255,255,0.42)),
    repeating-linear-gradient(60deg, rgba(212,175,55,0.12) 0 2px, transparent 2px 36px);
}

.logo {
  width: min(430px, 100%);
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,0.16));
}

.content-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px clamp(24px, 5vw, 58px);
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  padding: 9px 14px;
  border: 1px solid rgba(212,175,55,0.55);
  border-radius: 999px;
  background: rgba(212,175,55,0.12);
  color: #4d3a00;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  color: var(--black);
}

.intro {
  max-width: 560px;
  margin: 24px 0 0;
  color: #3a3a3a;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.65;
}

.status-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-top: 32px;
  padding: 14px 18px;
  border-radius: 16px;
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(0,0,0,0.2);
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.8);
  animation: pulse 1.8s infinite;
}

.contact-card {
  width: fit-content;
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  border-radius: 14px;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.contact-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.contact-card a {
  color: var(--black);
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
}

.contact-card a:hover {
  color: #8f6f12;
}

.road-line {
  position: absolute;
  z-index: 1;
  right: -160px;
  bottom: 72px;
  width: 680px;
  height: 140px;
  border-top: 18px solid rgba(0,0,0,0.92);
  border-radius: 50%;
  transform: rotate(-11deg);
  opacity: 0.08;
}

.honeycomb {
  position: absolute;
  right: 30px;
  bottom: 20px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 54px);
  gap: 8px;
  opacity: 0.72;
}

.honeycomb span {
  width: 54px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}

.honeycomb span:nth-child(2),
.honeycomb span:nth-child(5) {
  transform: translateY(28px);
}

.glow {
  position: absolute;
  z-index: 0;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.38;
}

.glow-one {
  left: -120px;
  top: -130px;
  background: var(--gold);
}

.glow-two {
  right: -120px;
  bottom: -150px;
  background: var(--gold-soft);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.8); }
  70% { box-shadow: 0 0 0 12px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

@media (max-width: 820px) {
  .page-shell {
    padding: 16px;
  }

  .hero-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 18px;
    border-radius: 24px;
  }

  .hero-card::before {
    inset: 10px;
    border-radius: 18px;
  }

  .brand-panel {
    min-height: 220px;
  }

  .logo {
    width: min(300px, 92%);
  }

  .content-panel {
    padding: 28px 16px 38px;
  }

  .status-box,
  .contact-card {
    width: 100%;
  }

  .honeycomb {
    opacity: 0.25;
  }
}
