:root {
  --ink: #111111;
  --red: #db0213;
  --red-dark: #a9000d;
  --red-soft: #ffe9eb;
  --paper: #f5f3f1;
  --white: #ffffff;
  --muted: #686868;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.site-shell {
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(22px, 4vw, 64px);
  background:
    linear-gradient(rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 38px 38px;
}

.site-shell::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 14% 8%, rgba(219, 2, 19, 0.14), transparent 31%),
    radial-gradient(circle at 90% 85%, rgba(17, 17, 17, 0.1), transparent 35%);
}

.ambient {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(219, 2, 19, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.ambient-one {
  width: min(54vw, 700px);
  aspect-ratio: 1;
  left: -22vw;
  top: -20vw;
  box-shadow:
    0 0 0 52px rgba(219, 2, 19, 0.025),
    0 0 0 104px rgba(219, 2, 19, 0.018);
}

.ambient-two {
  width: min(40vw, 500px);
  aspect-ratio: 1;
  right: -15vw;
  bottom: -20vw;
  box-shadow:
    0 0 0 48px rgba(219, 2, 19, 0.05),
    0 0 0 96px rgba(219, 2, 19, 0.025);
}

.welcome-card {
  width: min(100%, 1080px);
  min-height: min(760px, calc(100svh - 64px));
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 5vw, 70px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: clamp(24px, 4vw, 44px);
  box-shadow:
    0 28px 90px rgba(17, 17, 17, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brand {
  width: min(100%, 600px);
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
}

.status-pill {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: clamp(54px, 8vh, 90px);
  padding: 9px 14px 9px 11px;
  color: var(--red-dark);
  background: var(--red-soft);
  border: 1px solid rgba(219, 2, 19, 0.16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 9px;
  height: 9px;
  position: relative;
  display: inline-block;
  background: var(--red);
  border: 2px solid #ffd5d9;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(219, 2, 19, 0.12);
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(219, 2, 19, 0.4);
  border-radius: 50%;
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.7);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

.hero-copy {
  max-width: 850px;
  margin-top: 28px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 8vw, 98px);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

h1 span {
  display: block;
  color: var(--red);
  font-style: italic;
}

.intro {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.65;
}

.info-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-top: auto;
  padding-top: clamp(46px, 7vh, 78px);
}

.location-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: min(100%, 300px);
}

.location-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--red);
  border-radius: 50%;
}

.location-icon i {
  width: 16px;
  height: 21px;
  position: relative;
  display: block;
  border: 2px solid var(--white);
  border-radius: 12px 12px 12px 0;
  transform: rotate(-45deg);
}

.location-icon i::after {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  left: 4px;
  top: 5px;
  border: 1.5px solid var(--white);
  border-radius: 50%;
}

.card-label {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

address {
  color: var(--ink);
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
}

address small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.brand-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.brand-values span {
  padding: 8px 11px;
  color: var(--red-dark);
  border: 1px solid rgba(219, 2, 19, 0.2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 650;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding-top: 22px;
  color: var(--muted);
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  font-size: 12px;
}

footer p {
  margin: 0;
}

.powered {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.powered span {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.powered strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}

@media (max-width: 720px) {
  .site-shell {
    padding: 14px;
  }

  .welcome-card {
    min-height: calc(100svh - 28px);
    padding: 26px 24px 24px;
    border-radius: 28px;
  }

  .status-pill {
    margin-top: 56px;
  }

  h1 {
    font-size: clamp(49px, 16vw, 72px);
  }

  .info-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-values {
    justify-content: flex-start;
  }
}

@media (max-width: 470px) {
  .brand {
    width: 100%;
  }

  .status-pill {
    margin-top: 46px;
  }

  h1 {
    letter-spacing: -0.055em;
  }

  .intro {
    margin-top: 22px;
    font-size: 16px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .status-dot::after {
    animation: none;
  }
}
