/* ==========================================================================
   Bloor & Nobel — Coming soon
   Handmade garden architecture. A quiet, warm, heritage landing page.
   Palette, type and rules drawn from the Bloor & Nobel design system.
   ========================================================================== */

:root {
  /* Brand palette */
  --bn-slate:      #3a3d35;  /* primary ink & dark ground */
  --bn-linen:      #f5f2ed;  /* warm page ground          */
  --bn-moss:       #7a8c6e;  /* natural accent            */
  --bn-brass:      #a08c5a;  /* metallic accent & rules   */
  --bn-stone:      #e8e2d9;  /* secondary surface         */

  --bn-slate-500:  #56594e;  /* muted body text           */
  --bn-slate-300:  #8b8d82;  /* faint text                */
  --bn-brass-700:  #816f43;  /* deeper brass (labels)     */
  --bn-brass-deep: #5a4e32;  /* brass-brown (tagline)     */

  /* Type */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Jost', 'Century Gothic', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html, body { height: 100%; }
html { overflow-x: hidden; }   /* safety net against any wide decorative element */

body {
  margin: 0;
  position: relative;
  overflow: hidden;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--bn-linen);
  color: var(--bn-slate);
  font-family: var(--font-body);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* --- Faint architectural watermark --------------------------------------- */
.watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(88vw, 860px);   /* width-driven so it can never overflow the viewport */
  height: auto;
  transform: translate(-50%, -53%);
  color: var(--bn-slate);
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
}

/* --- Centre stage -------------------------------------------------------- */
.stage {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
}

@media (prefers-reduced-motion: no-preference) {
  .stage { animation: rise 1200ms cubic-bezier(0.22, 0.61, 0.36, 1) both; }
  @keyframes rise {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: none; }
  }
}

/* --- Logo lockup (mark · wordmark · brass rule · tagline) ----------------- */
.lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.lockup__mark {
  display: block;
  width: clamp(64px, 9vw, 104px);
  height: auto;
  color: var(--bn-slate);
}

.lockup__name {
  margin: 1.6rem 0 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 6vw, 3.25rem);
  line-height: 1;
  letter-spacing: 0.16em;
  text-indent: 0.16em;          /* offset trailing tracking → optically centred */
  text-transform: uppercase;
  color: var(--bn-slate);
}

.lockup__amp {
  font-weight: 400;
  font-size: 0.66em;
  color: var(--bn-brass);       /* the ampersand is always brass */
  vertical-align: 0.04em;
  margin: 0 0.16em;
}

.lockup__rule {
  width: clamp(120px, 22vw, 160px);
  height: 1px;
  margin: 1.15rem 0;
  border: 0;
  background: var(--bn-brass);   /* the signature brass hairline */
}

.lockup__tagline {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.6875rem;          /* 11px */
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  text-transform: uppercase;
  color: var(--bn-brass-deep);
}

/* --- Coming-soon message ------------------------------------------------- */
.intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 34rem;
  margin-top: clamp(2.75rem, 6vw, 4.25rem);
}

.intro__eyebrow {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.6875rem;          /* 11px */
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  text-transform: uppercase;
  color: var(--bn-brass-700);
}

.intro__lead {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.375rem, 3.4vw, 1.9rem);
  line-height: 1.25;
  color: var(--bn-slate);
}

.intro__note {
  margin: 1.15rem 0 0;
  max-width: 30rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--bn-slate-500);
}

/* --- Footer -------------------------------------------------------------- */
.footer {
  position: relative;
  z-index: 1;
  padding: 1.75rem 1.5rem;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.625rem;           /* 10px */
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  text-transform: uppercase;
  color: var(--bn-slate-300);
}
