*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --fuze-red: #e31b23;
  --fuze-black: #0b0b0b;
  --fuze-graphite: #2b2b2b;
  --fuze-light: #f5f5f5;
  --fuze-white: #ffffff;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  color: var(--fuze-black);
  background: linear-gradient(135deg, #ffffff 0%, #f7f7f7 55%, #fff1f2 100%);
  min-height: 100vh;
}

.page {
  max-width: 900px;
  margin: 0 auto;
  padding: 36px 20px 56px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.header {
  text-align: center;
  background: #f7f7f7;
  border-radius: 20px;
  padding: 28px 20px 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 6px solid var(--fuze-red);
}

.logo {
  height: 100px;
  width: auto;
  margin-bottom: 14px;
}

.header h1 {
  margin: 0 0 8px;
  font-size: 34px;
  letter-spacing: 0.8px;
  color: var(--fuze-black);
}

.subtitle {
  margin: 0;
  color: var(--fuze-graphite);
  font-weight: 500;
}

.card {
  background: var(--fuze-white);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--fuze-red);
}

.card h2 {
  margin: 0 0 16px;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--fuze-black);
}

.links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.link-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--fuze-black);
  color: var(--fuze-black);
  background: var(--fuze-white);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border 0.18s ease,
    background 0.18s ease, color 0.18s ease;
}

.link-button::after {
  content: "↗";
  font-size: 16px;
  color: inherit;
}

.link-button:hover,
.link-button:focus {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.15);
  border-color: var(--fuze-red);
  background: var(--fuze-red);
  color: var(--fuze-white);
}

.facebook,
.instagram,
.linkedin,
.website {
  background: var(--fuze-light);
}

.address + .address {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed rgba(148, 163, 184, 0.6);
}

.address h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--fuze-black);
}

.address p {
  margin: 0;
  color: var(--fuze-graphite);
  line-height: 1.6;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-weight: 600;
  color: var(--fuze-red);
  text-decoration: none;
}

.map-link::after {
  content: "↗";
  font-size: 14px;
}

.map-link:hover,
.map-link:focus {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .page {
    padding: 28px 16px 36px;
  }

  .header h1 {
    font-size: 26px;
  }

  .card {
    padding: 20px;
  }

  .logo {
    height: 62px;
  }
}
