/*
Theme Name: Placeholder Coming Soon
Theme URI: https://example.com/
Author: OpenAI
Author URI: https://openai.com/
Description: A minimal placeholder WordPress theme for a coming soon page.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: placeholder-coming-soon
*/

:root {
  --bg: #f6f3ee;
  --surface: rgba(255,255,255,0.72);
  --text: #1f1f1f;
  --muted: #666;
  --accent: #7a6a58;
  --border: rgba(0,0,0,0.08);
  --shadow: 0 20px 50px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(122,106,88,0.14), transparent 35%),
    radial-gradient(circle at bottom right, rgba(0,0,0,0.05), transparent 30%),
    var(--bg);
  min-height: 100vh;
}

a { color: inherit; }

.site-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.card {
  width: 100%;
  max-width: 720px;
  padding: 48px;
  border-radius: 24px;
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(122,106,88,0.12);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.lead {
  margin: 0 auto 24px;
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
}

.meta {
  margin-top: 26px;
  font-size: 0.95rem;
  color: var(--muted);
}

.footer-note {
  margin-top: 40px;
  font-size: 0.85rem;
  color: var(--muted);
}

.button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  background: var(--text);
  color: #fff;
  font-weight: 600;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

@media (max-width: 640px) {
  .site-wrap { padding: 20px; }
  .card { padding: 32px 24px; border-radius: 18px; }
}
