/* June Estates — standalone "coming soon" page.
   Self-contained: brand tokens are copied from the main app's stylesheet
   (je-crm/public/css/style.css) rather than shared or imported, so this page
   has no dependency on the CRM. Keep the values in sync by hand if the brand
   palette ever changes. */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,400;1,500&family=Jost:wght@300;400;500&display=swap');

:root {
  --je-black: #16130f;
  --je-cream: #faf8f5;
  --je-gold: #b8a06a;
  --je-text-muted: #7c7264;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  min-height: 100%;
  font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  background: var(--je-cream);
  color: var(--je-black);
  -webkit-font-smoothing: antialiased;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.wrap {
  width: 100%;
  max-width: 560px;
  text-align: center;
}

.monogram {
  width: 96px;
  height: auto;
  margin: 0 auto 40px;
  display: block;
}

h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: clamp(30px, 7vw, 46px);
  margin: 0 0 20px;
}

.subheading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(18px, 3.6vw, 23px);
  color: var(--je-text-muted);
  margin: 0 auto 36px;
  max-width: 34ch;
  line-height: 1.5;
}

.coming {
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--je-black);
  margin: 0 0 40px;
}

/* Thin gold rule as a quiet divider */
.rule {
  width: 40px;
  height: 1px;
  background: var(--je-gold);
  border: 0;
  margin: 0 auto 40px;
}

.email {
  display: inline-block;
  font-size: 16px;
  letter-spacing: 0.03em;
  color: var(--je-gold);
  text-decoration: none;
  margin: 0 0 44px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.email:hover { border-bottom-color: var(--je-gold); }

.social {
  display: flex;
  justify-content: center;
  gap: 28px;
}

/* Muted gold treatment — the icons sit quietly in the brand palette, echoing
   the site's understated footer social links rather than each network's
   bright brand colour. */
.social a {
  color: var(--je-text-muted);
  display: inline-flex;
  transition: color 0.2s ease;
}
.social a:hover { color: var(--je-gold); }

.social svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}
