:root {
  --charcoal: #1e1e1c;
  --charcoal-2: #2a2a27;
  --sand: #b98a4e;
  --sand-dark: #966d38;
  --ink: #262622;
  --muted: #63635e;
  --paper: #faf9f7;
  --line: #e6e3de;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--sand-dark); }
a:hover { color: var(--sand); }

/* ---------- Header ---------- */
.site-header {
  background: var(--charcoal);
  color: #fff;
  padding: 22px 0 0;
}
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 22px; }

.wordmark { text-decoration: none; display: inline-block; line-height: 1; }
.wordmark .wm-main {
  display: block;
  color: #eceae6;
  font-size: 34px;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: lowercase;
}
.wordmark .wm-sub {
  display: block;
  color: var(--sand);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: lowercase;
  margin-top: 4px;
}

.site-nav { margin-top: 18px; border-top: 1px solid #3a3a36; }
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; }
.site-nav a {
  display: block;
  padding: 13px 20px 13px 0;
  margin-right: 14px;
  color: #cfcdc7;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.site-nav a:hover { color: #fff; }
.site-nav a.current { color: var(--sand); }

/* ---------- Hero ---------- */
.hero { background: var(--charcoal-2); color: #fff; }
.hero .wrap { padding-top: 56px; padding-bottom: 56px; }
.hero h1 { font-size: 40px; font-weight: 300; line-height: 1.2; margin: 0 0 18px; max-width: 720px; }
.hero p { font-size: 19px; color: #d8d6d0; max-width: 640px; margin: 0 0 28px; }
.photo-strip { border-bottom: 4px solid var(--sand); width: 100%; height: 220px; object-fit: cover; }

.btn {
  display: inline-block;
  background: var(--sand);
  color: #1e1e1c;
  font-weight: 600;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 3px;
  letter-spacing: .03em;
}
.btn:hover { background: #cda05f; color: #1e1e1c; }
.btn.ghost { background: transparent; color: #fff; border: 1px solid #6a6a64; margin-left: 10px; }
.btn.ghost:hover { border-color: var(--sand); color: var(--sand); }

/* ---------- Sections ---------- */
section.band { padding: 56px 0; }
section.band.alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

h2 { font-size: 29px; font-weight: 400; margin: 0 0 10px; }
.lede { color: var(--muted); font-size: 18px; max-width: 700px; margin-top: 0; }

.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin-top: 30px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--sand);
  padding: 22px 24px;
}
section.band.alt .card { background: var(--paper); }
.card h3 { margin: 0 0 8px; font-size: 19px; }
.card p { margin: 0; color: var(--muted); font-size: 16px; }

.ticks { list-style: none; padding: 0; margin: 24px 0 0; columns: 2; column-gap: 40px; max-width: 800px; }
.ticks li { padding: 6px 0 6px 30px; position: relative; break-inside: avoid; }
.ticks li::before { content: "✓"; position: absolute; left: 0; color: var(--sand-dark); font-weight: 700; }

/* ---------- Prose pages ---------- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 40px; }
.prose h3 { font-size: 20px; margin: 28px 0 8px; }

.faq dt { font-weight: 600; margin-top: 22px; }
.faq dd { margin: 6px 0 0; color: var(--muted); }

.notice {
  background: #fff;
  border-left: 4px solid var(--sand);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 22px;
  margin: 30px 0;
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 30px; }
.contact-grid .card a { text-decoration: none; font-weight: 600; }
.big-tel { font-size: 26px; font-weight: 700; color: var(--ink); text-decoration: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: #b9b7b1; margin-top: 60px; }
.site-footer .wrap { padding: 40px 22px; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.site-footer h4 { color: #fff; font-size: 15px; text-transform: uppercase; letter-spacing: .06em; margin: 0 0 10px; }
.site-footer p, .site-footer li { font-size: 14.5px; line-height: 1.7; margin: 0; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer a { color: #d8d6d0; text-decoration: none; }
.site-footer a:hover { color: var(--sand); }
.footer-legal { border-top: 1px solid #3a3a36; }
.footer-legal .wrap { display: block; padding: 16px 22px; font-size: 13px; color: #8d8b85; }

@media (max-width: 640px) {
  .hero h1 { font-size: 30px; }
  .ticks { columns: 1; }
  .btn.ghost { margin-left: 0; margin-top: 10px; }
}
