:root {
  --bg: #02090d;
  --cyan: #27fff1;
  --cyan-soft: #8ffff8;
  --cyan-muted: rgba(143, 255, 248, 0.72);
  --white: #ffffff;
  --text: rgba(255, 255, 255, 0.88);
  --muted: rgba(255, 255, 255, 0.68);
  --glass: rgba(3, 22, 30, 0.58);
  --glass-border: rgba(118, 255, 246, 0.32);
  --shadow: rgba(0, 255, 239, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--white);
  background:
    linear-gradient(rgba(2, 9, 13, 0.18), rgba(2, 9, 13, 0.18)),
    url("assets/background.png") center / cover fixed,
    radial-gradient(circle at 18% 14%, rgba(34, 255, 235, 0.28), transparent 24%),
    radial-gradient(circle at 82% 72%, rgba(31, 162, 177, 0.28), transparent 26%),
    linear-gradient(135deg, #02070b 0%, #04181f 42%, #000509 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 12%, rgba(36, 255, 235, 0.1) 18%, transparent 28%),
    linear-gradient(145deg, transparent 38%, rgba(14, 124, 137, 0.22) 48%, transparent 62%),
    linear-gradient(25deg, transparent 55%, rgba(47, 255, 239, 0.12) 62%, transparent 74%);
  filter: blur(1px);
  opacity: 0.9;
}

.page-shell {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 100vh;
  padding: 56px 0 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 54px;
}

.site-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 42px);
  padding-top: 8px;
  text-align: left;
}

.logo-mark {
  width: clamp(92px, 30vw, 200px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* filter: drop-shadow(0 0 12px rgba(39, 255, 241, 0.72)); */
}

.brand-copy h1 {
  margin: 0;
  font-size: clamp(2.15rem, 6.4vw, 4.9rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-copy p {
  margin: 14px 0 0;
  font-size: clamp(1.05rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--text);
}

.hero {
  max-width: 860px;
  text-align: center;
}

.hero h2 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.12;
  font-weight: 800;
  text-shadow: 0 0 18px rgba(39, 255, 241, 0.18);
}

.hero p {
  margin: 0 auto;
  max-width: 820px;
  font-size: clamp(1.05rem, 2.4vw, 1.75rem);
  line-height: 1.45;
  font-weight: 500;
  color: var(--text);
}

.social-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(28px, 8vw, 92px);
  flex-wrap: wrap;
}

.social-link {
  display: grid;
  justify-items: center;
  gap: 12px;
  color: var(--muted);
  text-decoration: none;
  transition: transform 180ms ease, color 180ms ease, filter 180ms ease;
}

.social-link svg {
  width: clamp(58px, 10vw, 96px);
  height: clamp(58px, 10vw, 96px);
  fill: url("#");
  color: var(--cyan);
  fill: currentColor;
  filter:
    drop-shadow(0 0 8px rgba(39, 255, 241, 0.8))
    drop-shadow(0 0 20px rgba(39, 255, 241, 0.35));
}

.social-link span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.58);
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--cyan-soft);
  transform: translateY(-6px) scale(1.05);
  filter: drop-shadow(0 0 18px rgba(39, 255, 241, 0.72));
  outline: none;
}

.contact-card {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 32px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--glass);
  box-shadow:
    0 0 32px rgba(39, 255, 241, 0.18),
    inset 0 0 30px rgba(39, 255, 241, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h3 {
  margin: 0 0 20px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

address {
  font-style: normal;
}

address p {
  margin: 0 0 18px;
  font-size: clamp(1rem, 2.2vw, 1.45rem);
  line-height: 1.38;
  color: var(--text);
}

address strong {
  color: var(--white);
  font-weight: 800;
}

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

address a:hover,
address a:focus-visible {
  color: var(--cyan-soft);
  outline: none;
}

.map-panel {
  min-height: 260px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(143, 255, 248, 0.28);
  box-shadow: 0 0 24px rgba(39, 255, 241, 0.16);
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 24px, 680px);
    padding: 34px 0 28px;
    gap: 42px;
  }

  .site-header {
    flex-direction: column;
    text-align: center;
  }

  .brand-copy p {
    margin-top: 10px;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 240px;
  }
}

@media (max-width: 480px) {
  .page-shell {
    gap: 36px;
  }

  .logo-mark {
    border-radius: 20px;
  }

  .social-section {
    gap: 24px;
  }

  .social-link svg {
    width: 58px;
    height: 58px;
  }

  .contact-card {
    padding: 20px;
    border-radius: 14px;
  }
}
