body {
  margin: 0;
  min-height: 100vh;
  min-width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background: black;
  color: white;
  font-family: "Avenir Next", sans-serif;
  box-sizing: border-box;
}

.logo-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem;
  width: 100vw;
  max-width: 100vw;
  margin: auto;
}

.logo-wrapper {
  position: relative;
  width: min(80vw, 1200px);
  flex-shrink: 0;
  overflow: hidden;
}

.logo-image {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}

.contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100vw;
  max-width: 100vw;
  box-sizing: border-box;
  margin: 0 auto;
  gap: 0.5rem;
}

.contact-card {
  background: linear-gradient(135deg, #232526 0%, #414345 100%);
  border-radius: 18px;
  box-shadow: 0 4px 40px 0 rgba(188, 71, 0, 0.18),
    0 1.5px 12px 0 rgba(255, 255, 255, 0.1) inset;
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 370px;
  margin: 1.5rem 0 2.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  z-index: 1;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.05) 40%,
    rgba(255, 255, 255, 0.12) 60%,
    rgba(255, 255, 255, 0.04) 100%
  );
  opacity: 0.7;
  pointer-events: none;
  z-index: 2;
}

.contact-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.08) 0 2px,
    transparent 2px 8px
  );
  opacity: 0.2;
  pointer-events: none;
  z-index: 3;
}

.contact-card h2 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
}

.contact-card .contact-link {
  margin: 0.5em 0;
}

.contact-link {
  display: block;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-left: 4px solid rgba(255, 255, 255, 0.02);
  padding: 1em;
  margin: 0.5em 0;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.contact-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #bc4700;
}

.shimmer-overlay {
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  animation: shimmer 2.5s infinite linear;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: overlay;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.text-image {
  width: min(50vw, 400px);
  height: auto;
  flex-shrink: 1;
}

@media (max-width: 600px) {
  .logo-container {
    flex-direction: column;
    text-align: center;
  }

  .logo-wrapper,
  .text-image {
    width: 80%;
  }
}

.contact-button,
.contact-button *,
.contact-button :after,
.contact-button :before,
.contact-button:after,
.contact-button:before {
  border: 0 solid;
  box-sizing: border-box;
}
.contact-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: button;
  background-color: #000;
  background-image: none;
  cursor: pointer;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-size: 100%;
  font-weight: 900;
  line-height: 1.5;
  margin: 0;
  -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
  text-transform: uppercase;
}
.contact-button:disabled {
  cursor: default;
}
.contact-button:-moz-focusring {
  outline: auto;
}
.contact-button svg {
  vertical-align: middle;
}
.contact-button [hidden] {
  display: none;
}
.contact-button,
.contact-logo-wrapper {
  --size: 60px;
  background: hsla(0, 0%, 100%, 0.2);
  background-clip: content-box;
  border-radius: 50%;
  box-sizing: border-box;
  display: block;
  height: var(--size);
  width: var(--size);
  -webkit-mask-image: none;
  padding: 0;
  position: fixed;
  bottom: 20px;
  right: 20px;
  transition: 0.2s;
}
.contact-button svg {
  --size: 25px;
  fill: #bc4700;
  display: block;
  height: var(--size);
  left: calc(50% - var(--size) / 2);
  position: absolute;
  top: calc(50% - var(--size) / 2);
  width: var(--size);
}

.contact-button:hover,
.contact-logo-wrapper:hover {
  border: 4px solid #bc4700;
}

.contact-logo {
  --logo-size: 40px;
  display: block;
  height: var(--logo-size);
  left: calc(50% - var(--logo-size) / 2);
  position: absolute;
  top: calc(50% - var(--logo-size) / 2);
  width: var(--logo-size);
}
