:root {
  color-scheme: light;
  --ink: #111214;
  --muted: #62666d;
  --panel: rgba(255, 255, 255, 0.78);
  --line: rgba(17, 18, 20, 0.14);
  --gold: #c99526;
  --gold-dark: #8f6414;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(201, 149, 38, 0.12), transparent 34rem),
    linear-gradient(135deg, #ffffff 0%, #f7f6f2 48%, #efebe3 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.coming-soon {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto auto;
  min-height: 100svh;
  overflow: hidden;
  padding: 48px 6% 24px;
}

.brand-mark {
  position: absolute;
  top: 50%;
  right: 3%;
  width: min(46vw, 760px);
  transform: translateY(-52%);
  opacity: 0.12;
  pointer-events: none;
}

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

.hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(760px, 100%);
  padding: 56px 0;
}

.logo {
  display: inline-flex;
  width: 96px;
  height: 96px;
  margin-bottom: 38px;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-dark);
  text-transform: uppercase;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

h1,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(4.2rem, 10vw, 8.8rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.intro {
  max-width: 620px;
  margin-bottom: 34px;
  color: #35383d;
  font-size: 1.2rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 900;
}

.button.primary {
  background: var(--ink);
  color: var(--white);
}

.button.primary:hover {
  background: var(--gold-dark);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.contact-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.contact-panel article {
  min-height: 150px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(17, 18, 20, 0.07);
  backdrop-filter: blur(14px);
}

.contact-panel span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-dark);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
}

.contact-panel a {
  display: block;
  width: fit-content;
  color: var(--ink);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-panel a + a {
  margin-top: 10px;
}

.contact-panel a:hover {
  color: var(--gold-dark);
}

.contact-panel p {
  margin-bottom: 0;
  color: #383b40;
  font-size: 1.02rem;
}

footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .coming-soon {
    padding: 34px 5% 22px;
  }

  .brand-mark {
    top: 42%;
    right: -24%;
    width: 92vw;
    opacity: 0.1;
  }

  .hero {
    padding: 32px 0 44px;
  }

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

  h1 {
    font-size: clamp(4rem, 18vw, 5.6rem);
  }

  .intro {
    font-size: 1.08rem;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px) {
  .coming-soon {
    min-height: auto;
  }

  .brand-mark {
    top: 36%;
    right: -34%;
    width: 112vw;
  }

  .hero {
    min-height: 62svh;
  }

  .eyebrow {
    font-size: 0.78rem;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .contact-panel article {
    min-height: 138px;
  }
}
