@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:opsz,wght@6..96,400;6..96,600&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --canvas: #fefbf6;
  --cream: #fcf7f1;
  --warm-cream: #f2ede6;
  --sand: #e5dccf;
  --rule: #dcd5c8;
  --olive: #2a2c21;
  --text: #303227;
  --muted: #6b6e5e;
  --sage: #7a7f5a;
  --terracotta: #c2714d;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--canvas);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--canvas);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
}

::selection {
  color: var(--cream);
  background: var(--sage);
}

.coming-soon {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  padding: 0 clamp(24px, 5vw, 80px);
  background: var(--canvas);
  isolation: isolate;
}

.grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.13'/%3E%3C/svg%3E");
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-color: var(--rule);
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  line-height: 1.5;
  text-transform: uppercase;
}

.site-header {
  min-height: 84px;
  border-bottom: 1px solid var(--rule);
}

.site-header p {
  margin: 0;
}

.brand-name {
  color: var(--olive);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.78fr);
  align-items: center;
  gap: clamp(48px, 7vw, 120px);
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(48px, 6vh, 80px) 0;
}

.hero-copy {
  max-width: 610px;
  animation: reveal 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--terracotta);
  color: var(--terracotta);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(58px, 6.4vw, 92px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

h1 span {
  display: block;
  white-space: nowrap;
}

h1 span:last-child {
  color: var(--sage);
}

.title-rule {
  display: block;
  width: 108px;
  height: 4px;
  margin: 32px 0 28px;
  background: var(--terracotta);
}

.intro {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.7;
}

.status-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  color: var(--olive);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 6px rgb(122 127 90 / 0.12);
}

.brand-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
  animation: reveal 1050ms 100ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.brand-stage::before {
  position: absolute;
  width: min(420px, 100%);
  aspect-ratio: 0.72;
  border: 1px solid rgb(122 127 90 / 0.72);
  border-radius: 50% 50% 2px 2px / 31% 31% 2px 2px;
  content: '';
  transform: translate(18px, -18px);
}

.arch {
  position: relative;
  display: grid;
  width: min(420px, 100%);
  aspect-ratio: 0.72;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgb(252 247 241 / 0.22);
  border-radius: 50% 50% 2px 2px / 31% 31% 2px 2px;
  background: var(--olive);
  box-shadow: 0 24px 70px rgb(42 44 33 / 0.16);
}

.logo-crop {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 2.2;
  background-image: url('orpheus-brand-reference.png');
  background-repeat: no-repeat;
  background-size: 515% auto;
  background-position: 60% 52%;
}

.site-footer {
  min-height: 70px;
  border-top: 1px solid var(--rule);
}

.footer-mark {
  width: 44px;
  height: 24px;
  border: 1px solid var(--terracotta);
  border-bottom: 0;
  border-radius: 50% 50% 0 0 / 90% 90% 0 0;
}

.copyright {
  color: var(--olive);
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: none;
  transition: color 180ms ease;
}

.copyright:hover,
.copyright:focus-visible {
  color: var(--terracotta);
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 56px 0 52px;
  }

  .brand-stage {
    min-height: auto;
  }

  .arch {
    width: min(420px, 88vw);
  }

  .site-footer {
    flex-wrap: wrap;
    padding: 18px 0;
  }
}

@media (max-width: 520px) {
  .site-header {
    align-items: flex-start;
    min-height: 92px;
    padding: 22px 0;
  }

  .site-header .brand-name {
    max-width: 220px;
  }

  .location {
    display: none;
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(40px, 12.5vw, 64px);
  }

  .arch {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 22px 0;
  }

  .footer-mark {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy,
  .brand-stage {
    animation: none;
  }
}

