:root {
  --paper: #f5f2ec;
  --ink: #11100f;
  --muted: #625e59;
  --red: #b72b28;
  --line: rgba(17, 16, 15, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--paper);
}

body {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Tahoma, Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.coming-soon-shell {
  position: relative;
  isolation: isolate;
  display: flex;
  width: 100%;
  max-width: 100%;
  min-height: 100svh;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(24px, 4vw, 52px);
}

.coming-soon-shell::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 16, 15, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 16, 15, 0.034) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: radial-gradient(circle at center, black 12%, transparent 72%);
}

.coming-soon-shell::after {
  position: absolute;
  z-index: -2;
  width: min(760px, 90vw);
  height: min(760px, 90vw);
  top: 47%;
  left: 50%;
  border: 1px solid rgba(183, 43, 40, 0.16);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 76px rgba(183, 43, 40, 0.035),
    0 0 0 152px rgba(17, 16, 15, 0.018);
}

.ambient {
  position: absolute;
  z-index: -1;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 10px rgba(183, 43, 40, 0.1);
}

.ambient-one {
  top: 12%;
  right: 10%;
}

.ambient-two {
  bottom: 14%;
  left: 9%;
  width: 10px;
  height: 10px;
  background: var(--ink);
  box-shadow: 0 0 0 8px rgba(17, 16, 15, 0.07);
}

.hero {
  display: flex;
  width: min(760px, 100%);
  min-width: 0;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding-block: 20px;
  text-align: center;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: #4d4945;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  backdrop-filter: blur(12px);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(183, 43, 40, 0.12);
  animation: pulse 2.4s ease-in-out infinite;
}

.logo-window {
  position: relative;
  width: min(640px, 100%);
  max-width: 100%;
  aspect-ratio: 1174 / 509;
  overflow: hidden;
  margin: clamp(24px, 5vh, 48px) auto 10px;
}

.brand-logo {
  position: absolute;
  top: -85.66%;
  left: -37.22%;
  width: 174.45%;
  max-width: none;
  height: auto;
  user-select: none;
}

.eyebrow {
  margin: 8px 0 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(36px, 6.5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.1;
}

h1 span {
  position: relative;
  display: inline-block;
  margin-left: 0.16em;
  color: var(--red);
}

h1 span::after {
  position: absolute;
  right: 2%;
  bottom: -0.08em;
  width: 95%;
  height: 0.08em;
  border-radius: 999px;
  background: var(--red);
  content: "";
  transform: rotate(-1.5deg);
}

.intro {
  max-width: 570px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.9;
}

.maps-button {
  display: grid;
  width: min(410px, 100%);
  max-width: 100%;
  min-width: 0;
  min-height: 76px;
  grid-template-columns: 42px 1fr 28px;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  padding: 13px 17px;
  border: 1px solid #000;
  border-radius: 18px;
  background: var(--ink);
  color: #fff;
  text-align: right;
  text-decoration: none;
  box-shadow: 0 11px 0 rgba(183, 43, 40, 0.94);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.maps-button:hover {
  background: #272422;
  box-shadow: 0 7px 0 rgba(183, 43, 40, 0.94);
  transform: translateY(4px);
}

.maps-button:active {
  box-shadow: 0 3px 0 rgba(183, 43, 40, 0.94);
  transform: translateY(8px);
}

.maps-button:focus-visible {
  outline: 4px solid rgba(183, 43, 40, 0.26);
  outline-offset: 5px;
}

.button-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.button-copy strong {
  font-size: 16px;
}

.button-copy small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
}

.button-arrow {
  color: rgba(255, 255, 255, 0.62);
  font-size: 22px;
  direction: ltr;
}

.maps-pin {
  position: relative;
  display: block;
  width: 31px;
  height: 31px;
  margin: 0 auto;
  border-radius: 50% 50% 50% 8px;
  background: conic-gradient(
    from 15deg,
    #4285f4 0 28%,
    #34a853 28% 50%,
    #fbbc05 50% 72%,
    #ea4335 72% 100%
  );
  transform: rotate(-45deg);
}

.maps-pin-core {
  position: absolute;
  width: 11px;
  height: 11px;
  top: 10px;
  left: 10px;
  border-radius: 50%;
  background: #fff;
}

.location-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 22px 0 0;
  color: #615d58;
  font-size: 12px;
}

.location-note span {
  color: var(--red);
  font-size: 8px;
}

.business-details {
  display: grid;
  width: min(920px, 100%);
  max-width: 100%;
  min-width: 0;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin: 30px auto 18px;
  padding: 1px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
  box-shadow: 0 12px 35px rgba(17, 16, 15, 0.05);
}

.business-detail {
  min-width: 0;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.68);
  text-align: right;
  backdrop-filter: blur(12px);
}

.business-detail dt {
  margin-bottom: 5px;
  color: rgba(17, 16, 15, 0.54);
  font-size: 10px;
  font-weight: 700;
}

.business-detail dd {
  overflow-wrap: anywhere;
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.business-name dd {
  direction: rtl;
}

footer {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(17, 16, 15, 0.48);
  direction: ltr;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.72);
  }
}

@media (max-width: 620px) {
  .coming-soon-shell {
    padding: 18px 16px;
  }

  .ambient-one {
    top: 8%;
    right: 7%;
  }

  .ambient-two {
    bottom: 10%;
    left: 6%;
  }

  .logo-window {
    width: 100%;
    max-width: 510px;
    margin-top: 24px;
  }

  h1 {
    width: 100%;
    max-width: 400px;
    font-size: clamp(32px, 9.8vw, 44px);
    letter-spacing: -0.04em;
    line-height: 1.16;
  }

  .intro {
    max-width: 390px;
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.8;
  }

  .maps-button {
    min-height: 72px;
    grid-template-columns: 34px minmax(0, 1fr) 22px;
    gap: 10px;
    margin-top: 26px;
    padding-inline: 14px;
  }

  .business-details {
    grid-template-columns: 1fr 1fr;
    margin-top: 28px;
  }

  .business-name {
    grid-column: 1 / -1;
  }

  .business-detail {
    padding: 13px 14px;
  }

  .business-detail:last-child {
    grid-column: 1 / -1;
  }

  footer {
    margin-top: 18px;
  }
}

@media (max-width: 420px) {
  .business-details {
    grid-template-columns: 1fr;
  }

  .business-name,
  .business-detail:last-child {
    grid-column: auto;
  }

  .business-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
  }

  .business-detail dt {
    margin-bottom: 0;
  }

  .business-name {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  footer {
    gap: 8px;
    font-size: 9px;
  }
}

@media (max-height: 760px) and (min-width: 621px) {
  .logo-window {
    width: min(510px, 80vw);
    margin-top: 22px;
  }

  h1 {
    font-size: clamp(36px, 6vw, 56px);
  }

  .intro {
    margin-top: 14px;
  }

  .maps-button {
    margin-top: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
