:root {
  --green-950: #001f07;
  --green-900: #00350b;
  --green-800: #004b10;
  --green-700: #0d5a1a;
  --gold: #f5c83a;
  --gold-soft: #fff0a5;
  --ivory: #fffdf2;
  --ivory-muted: rgba(255, 253, 242, 0.72);
  --line: rgba(245, 200, 58, 0.28);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ivory);
  background:
    linear-gradient(rgba(255, 253, 242, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 242, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 18% 18%, rgba(245, 200, 58, 0.18), transparent 30%),
    radial-gradient(circle at 88% 80%, rgba(255, 240, 165, 0.08), transparent 28%),
    linear-gradient(135deg, var(--green-950) 0%, var(--green-900) 48%, #001404 100%);
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
}

a {
  color: var(--ivory);
  text-decoration: none;
}

a:hover {
  color: var(--gold-soft);
}

.page-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(24px, 5vw, 64px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(390px, 0.95fr) minmax(520px, 1.05fr);
  width: min(1120px, 100%);
  overflow: hidden;
  border: 1px solid rgba(245, 200, 58, 0.34);
  border-radius: 8px;
  background: rgba(0, 46, 11, 0.78);
  box-shadow:
    0 34px 96px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 253, 242, 0.08);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  left: 64px;
  right: 64px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(245, 200, 58, 0.34),
    rgba(255, 240, 165, 0.95),
    rgba(245, 200, 58, 0.34),
    transparent
  );
  box-shadow: 0 0 18px rgba(245, 200, 58, 0.28);
  pointer-events: none;
}

.hero::before {
  top: 24px;
}

.hero::after {
  bottom: 24px;
}

.brand-panel {
  display: grid;
  min-height: 560px;
  place-items: center;
  padding: 76px 58px;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 240, 165, 0.13), transparent 40%),
    linear-gradient(145deg, rgba(13, 90, 26, 0.86), rgba(0, 31, 7, 0.96));
}

.logo-stage {
  width: min(100%, 460px);
  padding: 0;
}

.logo {
  display: block;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 24px 34px rgba(0, 0, 0, 0.3))
    drop-shadow(0 0 18px rgba(245, 200, 58, 0.14));
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 68px;
  background:
    linear-gradient(145deg, rgba(255, 253, 242, 0.14), rgba(255, 253, 242, 0.055)),
    rgba(13, 90, 26, 0.38);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 200, 58, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 242, 0.16), rgba(255, 253, 242, 0.065)),
    rgba(0, 75, 16, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 242, 0.18),
    inset 0 0 0 1px rgba(0, 31, 7, 0.18),
    0 22px 50px rgba(0, 0, 0, 0.14);
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 18px;
  align-items: start;
  padding: 34px 40px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.contact-card + .contact-card {
  border-top: 1px solid rgba(245, 200, 58, 0.24);
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 0;
  margin-bottom: 0;
  padding: 8px 12px;
  border: 1px solid rgba(245, 200, 58, 0.38);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(245, 200, 58, 0.075);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.label::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 14px rgba(245, 200, 58, 0.6);
}

address,
.contact-card p {
  margin: 0;
  color: rgba(255, 253, 242, 0.94);
  font-size: clamp(1.03rem, 1.18vw, 1.14rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.78;
}

address span,
.phone-list a {
  display: block;
  white-space: nowrap;
}

.map-link {
  display: block;
  color: rgba(255, 253, 242, 0.94);
  transition: color 180ms ease, transform 180ms ease;
}

.map-link:hover {
  color: var(--gold-soft);
  transform: translateX(2px);
}

.phone-list {
  display: grid;
  gap: 6px;
}

.phone-list a {
  color: rgba(255, 253, 242, 0.94);
  transition: color 180ms ease, transform 180ms ease;
}

.phone-list a:hover {
  color: var(--gold-soft);
  transform: translateX(2px);
}

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

  .hero {
    grid-template-columns: 1fr;
  }

  .brand-panel {
    min-height: auto;
    padding: 42px 34px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .logo-stage {
    max-width: 410px;
  }

  .content {
    padding: 36px;
  }

  .contact-grid {
    gap: 0;
  }

  .address-card {
    overflow-x: auto;
  }

  .contact-card {
    row-gap: 18px;
  }
}

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

  .hero {
    min-height: 100vh;
    border: 0;
    border-radius: 0;
  }

  .brand-panel {
    padding: 34px 22px;
  }

  .content {
    padding: 36px 20px;
  }

  .contact-card {
    padding: 24px 20px;
  }

  address,
  .contact-card p {
    font-size: 1rem;
  }
}
