:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #6f6f6f;
  --accent: #ff5c35;
  --button-bg: #111111;
  --button-text: #ffffff;
  --max-width: 760px;
  --title-font: "Luckiest Guy", "Space Grotesk", sans-serif;
  --body-font: "Space Grotesk", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body-font);
}

body {
  display: flex;
  justify-content: center;
  padding-top: 24px;
}

.center {
  text-align: center;
  max-width: var(--max-width);
  width: 100%;
  padding: 0 20px 40px;
}

.site-title {
  font-family: var(--title-font);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  color: var(--text);
}

.site-title .word {
  display: inline-block;
}

.site-title .tld {
  margin-left: -2px;
  color: var(--muted);
}

.variant-1 .casa { font-size: 0.8em; }
.variant-1 .hit { font-size: 1.1em; }
.variant-1 .tld { font-size: 0.8em; }

.address-line {
  margin-bottom: 22px;
  text-align: center;
}

.address-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

.icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: var(--text);
}

.icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.address-text {
  font-weight: 600;
}

.address-link.maps {
  font-size: 1rem;
  gap: 8px;
}

.address-link.maps .address-cta {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.address-divider {
  color: #c6c6c6;
  font-size: 0.85rem;
}

.address-link.maps:hover .address-text {
  text-decoration: none;
}

.address-link.maps:hover .address-cta {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.external-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
  color: var(--muted);
}

.external-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
}

.gate-button {
  appearance: none;
  border: 2px solid transparent;
  background: var(--button-bg);
  color: var(--button-text);
  font-size: 1.4rem;
  font-family: inherit;
  font-weight: 600;
  padding: 18px 52px;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.gate-button:hover {
  transform: translateY(-1px);
}

.gate-button:active {
  transform: translateY(1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.metalab-bold {
  background: #0b0b0b;
  color: #ffffff;
  border-radius: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
}

.directions {
  text-align: left;
  margin: 0 auto;
  max-width: 640px;
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 20px 22px;
}

.directions-title {
  font-weight: 600;
  margin-bottom: 10px;
}

.directions-list {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 640px) {
  body {
    padding-top: 18px;
    font-size: 17px;
  }

  .site-title {
    font-size: clamp(2.4rem, 5.4vw, 3.6rem);
  }

  .address-link.maps,
  .gate-button {
    width: 100%;
  }

  .gate-button {
    display: flex;
  }

  .address-link.maps {
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }

  .directions {
    text-align: left;
    padding: 18px;
  }
}
