/* Gerardino Yachts — under construction. Palette from brand lockup. */
:root {
  --ground: #8c8b84; /* RGB 140 139 132 */
  --mark: #cbc9c7;   /* RGB 203 201 199 */
  --font: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html, body { margin: 0; min-height: 100%; }

body {
  min-height: 100vh;
  background: var(--ground);
  color: var(--mark);
  font-family: var(--font);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

.soon {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.65rem;
  padding: clamp(1.5rem, 5vw, 3rem);
  text-align: center;
}

.logo {
  margin: 0;
  line-height: 0;
}

.logo img {
  display: block;
  width: min(210px, 41vw);
  height: auto;
}

.status {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mark);
  opacity: 0.88;
}

.mail {
  margin: 0.2rem 0 0;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.mail a {
  color: var(--mark);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--mark) 45%, transparent);
  padding-bottom: 0.12em;
}

.mail a:hover { opacity: 0.72; }

.mail a:focus-visible {
  outline: 1px solid var(--mark);
  outline-offset: 4px;
}
