/* Moore Sells Homes NWA — static stylesheet */
:root {
  --paper: #f4f0e8;
  --paper-deep: #ebe4d6;
  --cream: #fbf8f2;
  --ink: #1f1c18;
  --ink-soft: #3a342c;
  --muted: #6b645a;
  --forest: #1a2e24;
  --forest-mid: #2c4a3c;
  --moss: #3d5a4c;
  --stone: #d9d0c1;
  --line: #d4cbba;
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --radius: 16px;
  --shadow: 0 1px 2px rgb(31 28 24 / 0.04), 0 8px 24px rgb(31 28 24 / 0.06);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; outline: 1px solid rgb(31 28 24 / 0.08); outline-offset: -1px; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--display); letter-spacing: -0.02em; line-height: 1.15; font-weight: 500; text-wrap: balance; margin: 0; }
p { text-wrap: pretty; }
.wrap { width: min(72rem, calc(100% - 2.5rem)); margin-inline: auto; }
.wrap-lg { padding-inline: 0; }
@media (min-width: 640px) { .wrap { width: min(72rem, calc(100% - 4rem)); } }
header.site {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 4.25rem; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; color: var(--ink); }
.brand small { display: block; margin-top: 2px; font-size: 0.62rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.brand strong { font-family: var(--display); font-size: 1.35rem; font-weight: 500; }
.mark { width: 36px; height: 36px; }
.links { display: none; align-items: center; gap: 1.75rem; }
.links a { text-decoration: none; font-size: 0.82rem; font-weight: 500; color: var(--ink-soft); }
.links a:hover, .links a[aria-current="page"] { color: var(--forest); }
.actions { display: none; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 44px; padding: 0 1.25rem; border-radius: 10px; text-decoration: none;
  font-size: 0.875rem; font-weight: 500; border: 1px solid transparent; cursor: pointer;
  font-family: var(--sans);
}
.btn-primary { background: var(--forest); color: var(--paper); }
.btn-primary:hover { background: var(--forest-mid); }
.btn-invert { background: var(--paper); color: var(--forest); }
.btn-outline { border-color: color-mix(in srgb, var(--forest) 25%, transparent); color: var(--forest); background: transparent; }
.btn-outline:hover { background: var(--forest); color: var(--paper); }
.btn-ghost { background: transparent; color: var(--ink); }
.menu-btn { display: inline-flex; }
@media (min-width: 768px) {
  .links, .actions { display: flex; }
  .menu-btn { display: none; }
}
.hero { position: relative; min-height: 92vh; display: flex; align-items: flex-end; color: var(--paper); overflow: hidden; background: var(--forest); }
.hero img.bg, .page-hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; outline: none; }
.hero .shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgb(26 46 36 / 0.85), rgb(26 46 36 / 0.55), rgb(26 46 36 / 0.25)); }
.hero-inner { position: relative; padding: 7rem 0 4rem; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); max-width: 18ch; color: var(--paper); }
.hero p.lede { max-width: 36rem; font-size: 1.1rem; color: rgb(251 248 242 / 0.85); }
.row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.eyebrow { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--moss); }
.page-hero { position: relative; background: var(--forest); color: var(--paper); overflow: hidden; }
.page-hero .shade { position: absolute; inset: 0; background: rgb(26 46 36 / 0.7); }
.page-hero .inner { position: relative; padding: 5rem 0; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); max-width: 18ch; color: var(--paper); }
.page-hero p { max-width: 36rem; color: rgb(251 248 242 / 0.85); }
.section { padding: 5rem 0; }
.cream { background: var(--cream); }
.forest { background: var(--forest); color: var(--paper); }
.forest h2, .forest h3, .forest p { color: var(--paper); }
.quote { text-align: center; }
.quote blockquote { font-family: var(--display); font-size: clamp(1.5rem, 3vw, 1.9rem); font-style: italic; margin: 0; }
.grid-3 { display: grid; gap: 1.25rem; }
.grid-2 { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } .grid-3 { grid-template-columns: 1fr 1fr 1fr; } }
.card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow); text-decoration: none; color: inherit; display: block; }
.card:hover { transform: translateY(-2px); }
.muted { color: var(--muted); }
.split { display: grid; gap: 2.5rem; align-items: center; }
.split > img { order: -1; }
@media (min-width: 768px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split > img { order: 0; }
  .split.reverse > img { order: 2; }
}
.split img, .round { border-radius: var(--radius); width: 100%; object-fit: cover; }
.places { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .places { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .places { grid-template-columns: 1fr 1fr 1fr; } }
.place { background: var(--cream); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); text-decoration: none; color: inherit; }
.place img { aspect-ratio: 16/10; width: 100%; object-fit: cover; outline: none; }
.place div { padding: 1.25rem; }
footer.site { background: var(--forest); color: var(--paper); }
footer.site a { color: rgb(251 248 242 / 0.8); }
.foot { display: grid; gap: 2.5rem; padding: 3.5rem 0; }
@media (min-width: 768px) { .foot { grid-template-columns: 1.4fr 1fr 1fr; } }
.legal { border-top: 1px solid rgb(251 248 242 / 0.1); padding: 1.5rem 0; font-size: 0.75rem; color: rgb(251 248 242 / 0.55); display: flex; gap: 1rem; align-items: start; }
.drawer {
  position: fixed; inset: 0; background: rgb(26 46 36 / 0.5); z-index: 50;
  display: none;
}
.drawer.open { display: block; }
.drawer panel, .drawer .panel {
  position: absolute; right: 0; top: 0; height: 100%; width: min(100%, 20rem);
  background: var(--paper); padding: 1.5rem; border-left: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 0.25rem;
}
.drawer a { display: block; padding: 0.75rem 0.5rem; font-family: var(--display); font-size: 1.6rem; text-decoration: none; }
.form label { display: block; font-size: 0.75rem; font-weight: 500; margin-bottom: 0.35rem; }
.form input, .form select, .form textarea {
  width: 100%; min-height: 44px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--cream); padding: 0.6rem 0.9rem; font: inherit; color: var(--ink); margin-bottom: 1.1rem;
}
.form textarea { min-height: 8rem; }
.aside { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; }
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.chip { border: 1px solid var(--line); background: var(--cream); border-radius: 999px; padding: 0.35rem 0.8rem; font-size: 0.75rem; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
