:root {
  --ink: #142c28;
  --ink-soft: #54635f;
  --paper: #f4f0e7;
  --paper-light: #faf8f3;
  --accent: #b96843;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.coming-soon {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: 48px 24px 72px;
  background:
    linear-gradient(rgba(20, 44, 40, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 44, 40, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: 32px 32px;
}

.ambient {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(3px);
  pointer-events: none;
}

.ambient-one {
  top: -180px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: rgba(20, 68, 58, 0.11);
}

.ambient-two {
  bottom: -210px;
  left: -140px;
  width: 430px;
  height: 430px;
  background: rgba(185, 104, 67, 0.1);
}

.panel {
  width: min(100%, 720px);
  padding: clamp(44px, 7vw, 76px) clamp(28px, 7vw, 76px);
  border: 1px solid rgba(20, 44, 40, 0.12);
  border-radius: 32px;
  background: rgba(250, 248, 243, 0.88);
  box-shadow:
    0 32px 80px rgba(20, 44, 40, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  text-align: center;
  backdrop-filter: blur(12px);
}

.brand {
  display: block;
  width: min(100%, 430px);
  height: auto;
  margin: 0 auto;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1px;
  margin: 38px auto 34px;
  background: rgba(20, 44, 40, 0.13);
}

.divider span {
  width: 8px;
  height: 8px;
  border: 2px solid var(--paper-light);
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 1px rgba(185, 104, 67, 0.35);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 560px;
  margin: 0 auto;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 540;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.lead {
  max-width: 530px;
  margin: 24px auto 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.75;
}

.contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 30px;
  padding: 12px 22px;
  border: 1px solid rgba(20, 44, 40, 0.2);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 570;
  text-decoration: none;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.contact:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper-light);
  transform: translateY(-1px);
}

.contact:focus-visible {
  outline: 3px solid rgba(185, 104, 67, 0.35);
  outline-offset: 4px;
}

.copyright {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  margin: 0;
  color: rgba(20, 44, 40, 0.55);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  text-align: center;
}

@media (max-width: 560px) {
  .coming-soon {
    padding: 24px 16px 64px;
  }

  .panel {
    border-radius: 24px;
  }

  .divider {
    margin-block: 30px 28px;
  }

  .lead br {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact {
    transition: none;
  }
}
