/* Greg the Painter — Parker clapboard, barn-red, slate sky. Not mesa sample-board. */

:root {
  --cream: #f6efe4;
  --limestone: #efe6d6;
  --barn: #8b2e1f;
  --barn-deep: #6c2116;
  --slate: #4a6a84;
  --slate-deep: #31485c;
  --char: #1a2330;
  --gold: #c9923a;
  --gold-soft: #e2b86a;
  --paper: #fffaf1;
  --mute: #5c564c;
  --rule: #d8ccb6;
  --wrap: min(1120px, calc(100% - 1.4rem));
  --display: "Fraunces", "Iowan Old Style", "Palatino Linotype", serif;
  --body: "Figtree", "Segoe UI", "Helvetica Neue", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--char);
  background-color: var(--cream);
  background-image:
    repeating-linear-gradient(
      180deg,
      transparent 0 11px,
      rgba(26, 35, 48, 0.035) 11px 12px
    ),
    linear-gradient(180deg, #f8f2e8 0%, var(--cream) 42%, var(--limestone) 100%);
  line-height: 1.6;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 4.8rem;
}
@media (min-width: 800px) {
  body { padding-bottom: 0; }
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 0 0 0.4em;
  text-wrap: balance;
  color: var(--char);
}
h1 { font-size: clamp(2.1rem, 7vw, 3.7rem); font-optical-sizing: auto; }
h2 { font-size: clamp(1.45rem, 3.4vw, 2.15rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--char); color: var(--cream);
  padding: 0.5rem 0.85rem; z-index: 100;
  font-weight: 700;
}
.skip:focus { left: 0.5rem; top: 0.5rem; }
.wrap { width: var(--wrap); margin-inline: auto; }

.eyebrow, .kicker {
  font-family: var(--body);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--barn);
  margin: 0 0 0.45rem;
}
.lede { font-size: 1.12rem; color: var(--slate-deep); max-width: 38rem; }
.tagline {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.2rem, 2.8vw, 1.55rem);
  color: var(--slate);
  margin: 0 0 0.9rem;
}

.porch {
  position: sticky; top: 0; z-index: 40;
  background: rgba(246, 239, 228, 0.94);
  backdrop-filter: blur(9px);
  border-bottom: 3px solid var(--char);
  box-shadow: 0 1px 0 var(--gold);
}
.porch-inner {
  display: flex; align-items: center; gap: 0.75rem;
  min-height: 4.3rem;
  position: relative;
}
.wordmark {
  display: flex; align-items: center; gap: 0.65rem;
  text-decoration: none; min-width: 0;
}
.wordmark img { width: 46px; height: 46px; flex: none; }
.wordmark b {
  font-family: var(--display);
  font-weight: 650;
  font-size: 1.08rem;
  line-height: 1.15;
  display: flex; flex-direction: column;
}
.wordmark b span {
  font-family: var(--body);
  font-weight: 650;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
}

.menu-btn {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  border: 2px solid var(--char);
  background: var(--paper);
  cursor: pointer;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  display: block; width: 18px; height: 2px;
  background: var(--char); margin: 0 auto; position: relative;
}
.menu-btn span::before,
.menu-btn span::after { content: ""; position: absolute; left: 0; }
.menu-btn span::before { top: -6px; }
.menu-btn span::after { top: 6px; }

.nav {
  display: flex; align-items: center; gap: 0.1rem 1.15rem;
  margin-left: auto;
}
.nav a {
  text-decoration: none;
  font-weight: 650;
  font-size: 0.94rem;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover,
.nav a[aria-current="page"] { border-bottom-color: var(--barn); color: var(--barn-deep); }
.head-cta { margin-left: 0.35rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px;
  padding: 0.55rem 1.1rem;
  border-radius: 3px;
  font-weight: 750;
  text-decoration: none;
  border: 2px solid transparent;
  letter-spacing: 0.01em;
}
.btn-barn { background: var(--barn); color: #fff8f2; border-color: var(--barn); }
.btn-barn:hover { background: var(--barn-deep); border-color: var(--barn-deep); }
.btn-gold { background: var(--gold); color: var(--char); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-soft); }
.btn-trim {
  background: transparent;
  border-color: var(--char);
  color: var(--char);
}
.btn-trim:hover { background: var(--limestone); }
.actions, .book-row {
  display: flex; flex-wrap: wrap; gap: 0.55rem;
  margin: 1.05rem 0 0;
}

.hero-scene { padding: 1.4rem 0 0.2rem; }
.west-wall {
  background: var(--paper);
  border: 2px solid var(--char);
  box-shadow: 6px 6px 0 var(--gold);
  padding: 1.3rem 1.15rem 1.4rem;
}
.hero-split {
  display: grid; gap: 1.15rem;
  margin-top: 1.2rem;
}
.hero-split figure {
  margin: 0;
  background: var(--slate-deep);
  border: 2px solid var(--char);
  overflow: hidden;
}
.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 0.95rem;
  margin-top: 1.05rem;
  font-size: 0.94rem;
}
.facts strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--mute);
}
.facts a { color: var(--barn-deep); font-weight: 700; text-decoration: none; }
.facts a:hover { text-decoration: underline; }

.street {
  padding: 1.7rem 0 0.4rem;
}
.street ol {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.street li {
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.4rem 0.7rem;
  background: var(--paper);
  border: 1.5px solid var(--rule);
  color: var(--slate-deep);
}

.band { padding: 2rem 0; }
.ridge-band {
  background: var(--slate-deep);
  color: #e7eef4;
  padding: 2.15rem 0;
  margin-top: 1.4rem;
}
.ridge-band h2, .ridge-band h3 { color: var(--cream); }
.ridge-band .kicker { color: var(--gold-soft); }
.ridge-band a { color: var(--gold-soft); }
.ridge-band .btn-trim { border-color: var(--gold-soft); color: var(--cream); }

.planks { display: grid; gap: 0.7rem; margin-top: 1rem; }
.plank {
  background: var(--paper);
  border-left: 8px solid var(--barn);
  border-top: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 1.05rem 1.1rem 1.15rem;
  box-shadow: 0 8px 0 rgba(26, 35, 48, 0.04);
}
.plank h3 { margin-bottom: 0.3rem; }
.plank p { color: var(--mute); }
.plank .season {
  display: inline-block;
  margin-top: 0.55rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--barn);
}

.page-hero { padding: 1.65rem 0 0.35rem; }
.page-hero .west-wall { padding: 1.25rem 1.15rem 1.3rem; }

.sign-off {
  font-family: var(--display);
  font-style: italic;
  font-weight: 550;
  color: var(--slate);
  margin-top: 0.8rem;
}

.contact-split {
  display: grid; gap: 1.25rem;
  padding: 0.45rem 0 2.1rem;
}
.contact-list { list-style: none; padding: 0; margin: 0 0 1rem; }
.contact-list li {
  padding: 0.72rem 0;
  border-bottom: 1px solid var(--rule);
}
.contact-list span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 750;
  color: var(--mute);
  margin-bottom: 0.12rem;
}
.contact-list a { color: var(--barn-deep); font-weight: 700; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

form {
  background: var(--paper);
  border: 2px solid var(--char);
  padding: 1rem 1.05rem 1.2rem;
  box-shadow: 5px 5px 0 var(--limestone);
}
form label {
  display: block;
  font-weight: 750;
  font-size: 0.88rem;
  margin: 0.7rem 0 0.28rem;
}
input, textarea, select {
  font: inherit;
  padding: 0.68rem 0.75rem;
  border: 1.5px solid var(--rule);
  background: var(--cream);
  color: var(--char);
  width: 100%;
  min-height: 44px;
  border-radius: 2px;
}
textarea { min-height: 8rem; resize: vertical; }
.note { font-size: 0.88rem; color: var(--mute); margin-top: 0.65rem; }

.mailbox {
  background: var(--char);
  color: #c9c2b4;
  padding: 1.7rem 0 2.2rem;
  font-size: 0.92rem;
}
.mailbox a { color: var(--gold-soft); text-decoration: none; }
.mailbox a:hover { text-decoration: underline; }
.mailbox-inner {
  display: flex; flex-wrap: wrap; gap: 0.7rem 1.4rem;
  justify-content: space-between; align-items: flex-start;
}
.mailbox-brand {
  font-family: var(--display);
  color: var(--cream);
  font-size: 1.18rem;
  font-weight: 650;
}

.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--char);
  border-top: 3px solid var(--gold);
}
.dock a {
  text-decoration: none;
  color: var(--cream);
  font-weight: 750;
  letter-spacing: 0.02em;
  font-size: 0.88rem;
  min-height: 52px;
  display: flex; align-items: center; justify-content: center;
}
.dock a:first-child { background: var(--barn); color: #fff8f2; }

@media (min-width: 800px) {
  .dock { display: none; }
  .hero-split { grid-template-columns: 1fr 1.05fr; align-items: center; }
  .planks.two { grid-template-columns: 1fr 1fr; }
  .planks.three { grid-template-columns: 1fr 1fr 1fr; }
  .contact-split { grid-template-columns: 1fr 1fr; align-items: start; }
  .west-wall { padding: 1.75rem 1.75rem 1.85rem; }
}

@media (max-width: 799px) {
  .menu-btn { display: block; }
  .head-cta { display: none; }
  .nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper);
    flex-direction: column; align-items: stretch;
    padding: 0.65rem 1rem 1rem;
    gap: 0;
    border-bottom: 3px solid var(--barn);
    box-shadow: 0 10px 22px rgba(26, 35, 48, 0.14);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 0.8rem 0.15rem; border-bottom: 1px solid var(--rule); }
  .nav .btn { margin-top: 0.7rem; }
}
