/*
  Honeyguide Demo Camp — the one demonstration site that imitates nobody.

  ⚠️ **This is Octoco's own design and it is deliberately not a fourth tenant theme.** The planner
  reads its palette from `frontend/tokens/demo.json`; this page is the *host* around it, and the two
  are allowed to differ exactly as a real property's site and its embedded planner do. What matters
  is that the seam is visible in the same shape it will ship in — a full-page takeover opening from
  a page the property controls.

  No web font, for the same reason the bundle ships none: a demonstration site that pulled from a
  font CDN would be demonstrating a request the product does not make. System stacks throughout,
  with a serif for display so the page does not read as a browser default.
*/

:root {
  --ink: #e8e2d6;
  --ink-quiet: #a9a294;
  --ground: #1b1a17;
  --ground-raised: #23211d;
  --edge: #35322c;
  --accent: #c8a15a;
  --measure: 34rem;
  color-scheme: dark;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font: 400 1rem/1.6 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  -webkit-text-size-adjust: 100%;
}

img { max-width: 100%; height: auto; display: block; }

/* A skip link that is reachable rather than merely present: WCAG 2.4.1 is about the link working,
   and a `display: none` one does not. */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #1b1a17;
  padding: 0.6rem 1rem;
  z-index: 10;
}
.skip-link:focus { left: 0; }

.masthead {
  padding: 1.5rem 1.25rem 1rem;
  border-bottom: 1px solid var(--edge);
}
.masthead__mark {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}
.masthead__sub {
  margin: 0.15rem 0 0;
  color: var(--ink-quiet);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

main { display: block; }

section {
  padding: 2.5rem 1.25rem;
  border-bottom: 1px solid var(--edge);
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.2;
}
h1 { font-size: clamp(1.6rem, 4.5vw, 2.5rem); margin: 0 0 0.75rem; }
h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); margin: 0 0 1rem; }
h3 { font-size: 1.05rem; margin: 0 0 0.25rem; }

p { max-width: var(--measure); }
.lede { font-size: 1.1rem; color: var(--ink); }
.fine { color: var(--ink-quiet); font-size: 0.9rem; }

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.85em;
  background: var(--ground-raised);
  padding: 0.1em 0.35em;
  border-radius: 3px;
}

.hero { padding: 0 0 2.5rem; }
.hero__img { width: 100%; aspect-ratio: 2000 / 1328; object-fit: cover; }
.hero__text { padding: 1.75rem 1.25rem 0; }

.band {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  margin: 0 0 1.5rem;
}

.unit-grid, .incl-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.unit-grid { grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); }
.incl-list { grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr)); }

.unit {
  background: var(--ground-raised);
  border: 1px solid var(--edge);
  padding: 1rem;
}
.unit__cap { margin: 0; color: var(--ink-quiet); font-size: 0.85rem; }

.incl-list li {
  color: var(--ink-quiet);
  padding-left: 1rem;
  position: relative;
}
.incl-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.4rem;
  height: 1px;
  background: var(--accent);
}

.plan__slot { margin-top: 1.25rem; }
.plan__cta {
  display: inline-block;
  background: var(--accent);
  color: #1b1a17;
  padding: 0.85rem 1.6rem;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  /* 24x24 is the WCAG 2.5.8 floor and this clears it by a wide margin; stated because a later
     tightening of the padding is exactly how a target falls under it. */
  min-height: 2.75rem;
}
.plan__cta:hover, .plan__cta:focus-visible { background: #d8b36d; }

.colophon {
  padding: 2rem 1.25rem 3rem;
  color: var(--ink-quiet);
  font-size: 0.85rem;
}
.colophon__mark {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  color: var(--ink);
}
.colophon__line { margin: 0.25rem 0 1rem; }
/*
  ⚠️ Never `display: none`, never a colour that fails contrast, never behind a disclosure. The
  sentence is the only thing on this page that says what the page is, and `domain.tenant`
  generates it — see `INVENTED_NOTICE`, which differs from the two prospect sites' line because
  denying an affiliation asserts the other party exists.
*/
.colophon__disclaimer { margin: 0; color: var(--ink); }

@media (min-width: 46rem) {
  section { padding: 3.5rem 2.5rem; }
  .hero__text { padding: 2.25rem 2.5rem 0; }
  .masthead { padding: 1.75rem 2.5rem 1.25rem; }
  .colophon { padding: 2.5rem 2.5rem 4rem; }
}
