/* McArbour Partners — portable static landing page */
:root {
  --text: #ffffff;
  --muted: rgba(255,255,255,.88);
  --overlay: rgba(10, 17, 24, .38);
  --line: rgba(255,255,255,.72);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #26323a;
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.backdrop {
  position: absolute;
  inset: -3%;
  z-index: -3;
  background:
    radial-gradient(circle at 72% 25%, rgba(255,255,255,.20), transparent 27%),
    radial-gradient(circle at 22% 78%, rgba(255,255,255,.11), transparent 35%),
    linear-gradient(135deg, #657784 0%, #334955 45%, #17252e 100%);
  transform: scale(1.03);
}

.backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .19;
  background-image:
    linear-gradient(115deg, transparent 0 48%, rgba(255,255,255,.24) 49%, transparent 50%),
    linear-gradient(25deg, transparent 0 61%, rgba(255,255,255,.14) 62%, transparent 63%);
  background-size: 44rem 44rem, 38rem 38rem;
}

.overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--overlay);
}

.content {
  width: min(1120px, calc(100% - 48px));
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 64px 0 42px;
}

.brand h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 6vw, 5.75rem);
  font-weight: 400;
  letter-spacing: .015em;
  line-height: 1.02;
  text-shadow: 0 2px 20px rgba(0,0,0,.16);
}

.rule {
  width: clamp(64px, 9vw, 120px);
  height: 1px;
  margin: 28px auto 24px;
  background: var(--line);
}

.coming-soon {
  margin: 0;
  font-size: clamp(.83rem, 1.2vw, 1rem);
  text-transform: uppercase;
  letter-spacing: .31em;
  color: var(--muted);
}

.contact {
  position: absolute;
  bottom: max(28px, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  width: min(860px, calc(100% - 40px));
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: .82rem;
  letter-spacing: .05em;
}

.contact a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, color .2s ease;
}

.contact a:hover,
.contact a:focus-visible {
  color: #fff;
  border-color: rgba(255,255,255,.7);
  outline: none;
}

@media (max-width: 640px) {
  .content {
    width: min(100% - 32px, 1120px);
    padding-bottom: 96px;
  }

  .contact {
    gap: 12px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
