/* Hotel Manager 3000 — marketing site (Netlify public/)
   Signage / Braun calm. Tokens from docs/18. */

:root {
  --paper: #f4f2ee;
  --ink: #1a1a1a;
  --muted: #5c5c5c;
  --line: #e0ddd6;
  --jade: #0b6e4f;
  --white: #fff;
  --max: 40rem;
  --max-wide: 56rem;
  --radius: 14px;
  --font: "Instrument Sans", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--ink); }
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--jade);
  outline-offset: 2px;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: var(--white);
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--ink);
}

/* —— Chrome —— */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
}
.wordmark {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ink);
}
.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
}
.nav a {
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--muted);
}
.nav a:hover { color: var(--ink); }
.nav a.active {
  color: var(--ink);
  font-weight: 600;
}
.nav-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

main {
  flex: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.5rem;
  width: 100%;
}
main.wide { max-width: var(--max-wide); }

.site-footer {
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 1.5rem 1.25rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.site-footer a { color: var(--muted); }

/* —— Type —— */
.kicker {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.85rem;
  font-weight: 500;
}
h1 {
  font-size: 1.95rem;
  font-weight: 550;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.55rem;
}
.subhead {
  font-size: 1.15rem;
  font-weight: 550;
  letter-spacing: -0.01em;
  margin-bottom: 0.65rem;
  line-height: 1.3;
}
.lede {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1.35rem;
}
h2 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  letter-spacing: -0.01em;
}

/* —— Cards / lists —— */
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.3rem;
  background: var(--white);
  margin: 1.15rem 0;
}
.card p + p { margin-top: 0.75rem; }
.body-muted { color: var(--muted); font-size: 0.98rem; }

.role-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: 1.25rem 0;
}
@media (min-width: 640px) {
  .role-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.role-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}
.role-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.15rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}
.feature-list li:last-child { border-bottom: 0; }
.feature-list strong {
  font-size: 0.95rem;
  font-weight: 600;
}
.feature-list span {
  font-size: 0.92rem;
  color: var(--muted);
}
@media (min-width: 560px) {
  .feature-list li {
    grid-template-columns: 9.5rem 1fr;
    gap: 1rem;
    align-items: baseline;
  }
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}
.steps li {
  position: relative;
  padding: 1rem 0 1rem 2.75rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.98rem;
}
.steps li:last-child { border-bottom: 0; }
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 1rem;
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
}
.steps li strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.ask-card {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.35rem;
  background: var(--white);
  margin: 1.25rem 0;
}
.ask-card .say {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}
.ask-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0.85rem 0 0.45rem;
  font-weight: 500;
}
.quotes {
  list-style: none;
  padding: 0;
  margin: 0 0 0.85rem;
}
.quotes li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
  font-style: italic;
}
.quotes li:last-child { border-bottom: 0; }

.honesty {
  background: var(--paper);
  border-style: dashed;
}

.price {
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0.35rem 0 0.5rem;
}
.price-note {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 0.35rem;
}

.cta-band {
  margin: 1.75rem 0 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.cta-title {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 550;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary {
  background: var(--jade);
  color: var(--white);
  border-color: var(--jade);
}
.btn-primary:hover { filter: brightness(0.95); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--white); }
.btn-block { width: 100%; }
@media (max-width: 479px) {
  .cta-band .btn { flex: 1 1 100%; }
}

/* —— USPs / wow strip —— */
.usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 1.35rem 0 1.5rem;
}
@media (min-width: 640px) {
  .usp-grid { grid-template-columns: 1fr 1fr; }
}
.usp {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1rem 1.1rem;
}
.usp strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.usp span {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
}

/* —— Workflow story (screen → next) —— */
.story {
  margin: 1.5rem 0 0.5rem;
}
.story-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0 0 1.75rem;
  align-items: start;
}
@media (min-width: 720px) {
  .story-step {
    grid-template-columns: minmax(0, 14rem) minmax(0, 1fr);
    gap: 1.5rem;
  }
}
.phone-frame {
  margin: 0 auto;
  width: min(100%, 14rem);
  border: 1px solid var(--ink);
  border-radius: 18px;
  background: var(--ink);
  padding: 0.45rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  background: var(--white);
  max-height: 28rem;
  object-fit: cover;
  object-position: top center;
}
.story-copy .step-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 0.35rem;
}
.story-copy h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  letter-spacing: -0.01em;
}
.story-copy p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}
.story-arrow {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  margin: -0.5rem 0 1.25rem;
}
@media (min-width: 720px) {
  .story-arrow {
    text-align: left;
    padding-left: 4.5rem;
  }
}

/* —— Design skins (Signage / Linen) —— */
.design-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: 1.15rem 0;
}
@media (min-width: 560px) {
  .design-grid { grid-template-columns: 1fr 1fr; }
}
.design-card {
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.05rem 1.1rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.design-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}
.design-card .blurb {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
}
.design-swatches {
  display: flex;
  gap: 6px;
  margin-top: 0.15rem;
}
.design-swatch {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid var(--line);
  display: inline-block;
}
.skin-preview {
  margin-top: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  min-height: 88px;
}
.skin-preview[data-skin="signage"] {
  background: #f4f4f2;
  font-family: system-ui, sans-serif;
}
.skin-preview[data-skin="linen"] {
  background: #f7f5f1;
  font-family: ui-rounded, "SF Pro Rounded", system-ui, sans-serif;
}
.skin-preview-bar {
  height: 8px;
  background: #1a1a1a;
  opacity: 0.85;
}
.skin-preview[data-skin="linen"] .skin-preview-bar {
  background: #2c2a26;
}
.skin-preview-card {
  margin: 10px;
  padding: 10px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.skin-preview[data-skin="linen"] .skin-preview-card {
  background: #fffdfb;
  border-color: #e7e3dc;
  border-radius: 10px;
}
.skin-preview-pill {
  width: 42%;
  height: 8px;
  border-radius: 999px;
  background: #1a1a1a;
  opacity: 0.2;
}
.skin-preview-btn {
  width: 55%;
  height: 10px;
  border-radius: 6px;
  background: #1a1a1a;
  opacity: 0.35;
}
.skin-preview[data-skin="linen"] .skin-preview-btn {
  border-radius: 999px;
  opacity: 0.28;
}
