/* 606 Guest House — Base element styles & primitives */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-body);
  background: var(--bg-page);
  font-weight: var(--fw-normal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text-heading);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-tight);
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); line-height: var(--lh-tight); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
h5 { font-family: var(--font-body); font-weight: var(--fw-semibold); font-size: var(--fs-h5); line-height: var(--lh-snug); margin: 0 0 0.4em; color: var(--text-heading); }
h6 { font-family: var(--font-body); font-weight: var(--fw-semibold); font-size: var(--fs-h6); margin: 0 0 0.4em; color: var(--text-heading); }
p { margin: 0 0 1em; text-wrap: pretty; }
a { color: var(--link); text-decoration: none; transition: color var(--dur-fast) var(--ease-out); }
a:hover { color: var(--link-hover); }
img { max-width: 100%; display: block; }
hr { border: 0; border-top: 1px solid var(--border-hair); margin: var(--sp-6) 0; }
strong { font-weight: var(--fw-bold); color: var(--text-heading); }
::selection { background: var(--gold-soft); color: var(--ink-9); }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: var(--r-xs); }

/* ---- Primitives / helpers ---- */
.eyebrow {
  font-family: var(--font-eyebrow);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}
.eyebrow--muted { color: var(--text-muted); }
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: currentColor;
  display: inline-block;
  opacity: 0.7;
}
.display { font-family: var(--font-display); font-size: var(--fs-display); line-height: var(--lh-tight); letter-spacing: var(--ls-tight); color: var(--text-heading); }
.lead { font-size: var(--fs-lead); line-height: var(--lh-relaxed); color: var(--text-muted); }
.u-container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.u-narrow { max-width: var(--container-narrow); margin-inline: auto; padding-inline: var(--gutter); }
.u-section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.u-dark { background: var(--surface-dark); color: var(--text-on-dark); }
.u-dark h1, .u-dark h2, .u-dark h3, .u-dark h4, .u-dark h5, .u-dark h6 { color: var(--text-on-dark); }
