/* ==========================================================================
   BAS Renovations Media — temporary "Coming Soon" landing page.
   Standalone static styles that mirror the main brand system:
   ink background, Archivo display + JetBrains Mono labels, diagonal texture,
   sharp-cornered buttons.
   ========================================================================== */

:root {
  --ink: #0b0b0c; /* page black */
  --charcoal: #141416; /* lifted black */
  --steel: #26262b; /* raised surface */
  --ash: #9a9aa1; /* muted body text */
  --smoke: #6d6d74; /* dim mono labels */
  --mist: #c6c5c1; /* light muted */
  --paper: #ffffff;
  --line: rgba(255, 255, 255, 0.14);

  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--ink);
  color: var(--paper);
  font-family: var(--font-display);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.page {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 24px 32px;
  overflow: hidden;
  /* Subtle diagonal texture, matching the brand's dark placeholder pattern. */
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.045) 0,
    rgba(255, 255, 255, 0.045) 1px,
    transparent 1px,
    transparent 11px
  );
}

/* Soft warm glow behind the content */
.glow {
  position: absolute;
  top: -20%;
  left: 50%;
  width: min(900px, 120vw);
  height: min(900px, 120vw);
  transform: translateX(-50%);
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0) 62%
  );
  pointer-events: none;
  z-index: 0;
}

.shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  margin: auto 0;
  text-align: center;
}

/* --------------------------------------------------------------------------
   Brand + eyebrow
   -------------------------------------------------------------------------- */
.logo {
  height: 68px;
  width: auto;
  margin: 0 auto 40px;
  display: block;
  user-select: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--mist);
  margin-bottom: 28px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  animation: pulse 1.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* --------------------------------------------------------------------------
   Headline + copy
   -------------------------------------------------------------------------- */
.headline {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 9vw, 5rem);
  margin-bottom: 28px;
}

.headline .accent {
  color: var(--ash);
}

.lede {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  line-height: 1.6;
  color: var(--ash);
  max-width: 46ch;
  margin: 0 auto 40px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.cta {
  margin-bottom: 44px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 30px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.btn-white {
  background: var(--paper);
  color: var(--ink);
}

.btn-white:hover {
  background: #e7e5e0;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(255, 255, 255, 0.25);
}

.btn-white:active {
  transform: translateY(0) scale(0.98);
}

.btn .arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover .arrow {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   Social row
   -------------------------------------------------------------------------- */
.social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 18px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-decoration: none;
  color: var(--mist);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  transition:
    border-color 0.25s ease,
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-link svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.social-link:hover {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.foot {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-family: var(--font-mono);
}

.foot-email a {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--paper);
  text-decoration: none;
  transition: color 0.25s ease;
}

.foot-email a:hover {
  color: var(--ash);
}

.foot-copy {
  margin-top: 12px;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--smoke);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 520px) {
  .page {
    padding: 48px 20px 28px;
  }

  .logo {
    height: 54px;
    margin-bottom: 32px;
  }

  .social-link {
    padding: 11px 15px;
  }
}

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

  .btn,
  .btn .arrow,
  .social-link {
    transition: none;
  }
}
