:root {
  color-scheme: light;
  --bg: #f7f6f3;
  --surface: #ffffff;
  --ink: #111111;
  --ink-muted: #6c6c6c;
  --line: rgba(17, 17, 17, 0.12);
  --shadow: 0 30px 60px rgba(15, 15, 15, 0.18);
  --radius: 18px;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
}

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

body {
  font-family: var(--sans);
  background: radial-gradient(circle at top, #ffffff, var(--bg));
  color: var(--ink);
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

img {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(100%) contrast(1.1);
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.03),
      rgba(0, 0, 0, 0.03) 1px,
      transparent 1px,
      transparent 2px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.025),
      rgba(0, 0, 0, 0.025) 1px,
      transparent 1px,
      transparent 2px
    );
  mix-blend-mode: screen;
  opacity: 0.12;
  z-index: 1;
}

.coming-soon {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 24px;
  position: relative;
}

.coming-soon-card {
  text-align: center;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: clamp(32px, 6vw, 60px);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  max-width: 520px;
  position: relative;
  z-index: 2;
}

.coming-image {
  width: 75%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin: 0 auto 6px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  font-size: 0.75rem;
  color: var(--ink-muted);
}

.coming-soon-card h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.coming-note {
  font-size: 1.05rem;
}
