/* Volcano Developments — "Field Notes"
 *
 * An editorial system: serif display against a geometric sans, on warm paper,
 * structured by hairlines rather than by cards. There is almost no photography
 * available, so type and rule weight carry the page instead.
 *
 * Cards are used once, deliberately, and never as a row of three identical
 * boxes. Accent colour marks actions and nothing else.
 */

/* ---------- fonts ---------- */

@font-face {
  font-family: "Newsreader";
  src: url("/assets/fonts/Newsreader-var.woff2") format("woff2");
  font-weight: 300 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Newsreader";
  src: url("/assets/fonts/Newsreader-var-italic.woff2") format("woff2");
  font-weight: 300 700; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Urbanist";
  src: url("/assets/fonts/Urbanist-var.woff2") format("woff2");
  font-weight: 100 900; font-style: normal; font-display: swap;
}

/* ---------- tokens ---------- */

:root {
  --serif: "Newsreader", "Iowan Old Style", Georgia, serif;
  --sans: "Urbanist", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  /* Timber. No blue anywhere: deep forest darks against bone paper with a
     single amber accent. Picks up the conifers in the hero photograph. */
  --paper:  #f3f1e9;
  --paper-2:#ebe9df;
  --ink:    #1b1f1a;
  --ink-2:  #4f5850;
  --rule:   #d9dbcf;
  --forest: #1f2b23;
  --forest-2: #151e18;
  --amber:  #a9762f;
  --amber-lift: #c79541;

  /* The old names are kept as aliases so every existing rule keeps working
     rather than being rewritten in one sweep. */
  --navy:   var(--forest);
  --navy-2: var(--forest-2);
  --bronze: var(--amber);
  --bronze-lift: var(--amber-lift);

  --shell: 1180px;
  --gut: clamp(1.15rem, 4vw, 2.5rem);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper: #151814; --paper-2: #1b1f1a; --ink: #e7e6df; --ink-2: #9aa199;
    --rule: #2e332c; --forest: #101710; --forest-2: #0a0f0a;
    --amber: #c79541; --amber-lift: #dcae5c;
  }
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17.5px;
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.v-shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 var(--gut); }

.v-skip {
  position: absolute; left: -9999px;
}
.v-skip:focus {
  left: 1rem; top: 1rem; z-index: 50; background: var(--navy); color: #fff;
  padding: .6rem 1rem; border-radius: 2px;
}

/* ---------- type ---------- */

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -.021em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}

.v-kicker {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .175em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin: 0;
}

.v-note { color: var(--ink-2); font-size: .95rem; margin: .9rem 0 0; }
.v-note-wide { max-width: 58ch; margin-bottom: 1.6rem; }

/* ---------- masthead ---------- */

.v-top {
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  position: sticky; top: 0; z-index: 20;
}
.v-top-in {
  display: flex; align-items: center; gap: 2rem;
  min-height: 86px;
}
.v-mark {
  text-decoration: none; line-height: 1; display: grid; margin-right: auto;
}

/* The only non-white logo we hold is the blue one, and blue is gone. Masking
   the transparent white PNG lets the mark take any colour in the palette. */
.v-brand { display: block; margin-right: auto; }
.v-brand-mark {
  display: block; width: 232px; height: 59px;
  background-color: var(--ink);
  -webkit-mask: url("/assets/logo-long.png") left center / contain no-repeat;
  mask: url("/assets/logo-long.png") left center / contain no-repeat;
}
.v-brand:hover .v-brand-mark { background-color: var(--amber); }
@media (max-width: 520px) { .v-brand-mark { width: 172px; height: 44px; } }
.v-mark span {
  font-family: var(--serif); font-size: 1.32rem; font-weight: 600; letter-spacing: -.02em;
}
.v-mark em {
  font-family: var(--sans); font-style: normal; font-size: .62rem;
  letter-spacing: .27em; text-transform: uppercase; color: var(--ink-2); margin-top: .18rem;
}
.v-nav { display: flex; gap: 1.9rem; }
.v-nav a {
  text-decoration: none; font-size: .76rem; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase; padding: .3rem 0;
  border-bottom: 1px solid transparent;
}
.v-nav a:hover { border-bottom-color: var(--ink); }
.v-top-tel {
  text-decoration: none; font-size: .8rem; font-weight: 700;
  letter-spacing: .06em; white-space: nowrap;
}
.v-top-tel:hover { color: var(--bronze); }

@media (max-width: 860px) {
  .v-nav, .v-top-tel { display: none; }
}

/* ---------- A. opening block ---------- */

.v-open {
  padding: clamp(3.4rem, 8vw, 6.4rem) 0 clamp(2.2rem, 4vw, 3.4rem);
}
.v-open h1 {
  font-size: clamp(2.7rem, 1.1rem + 5.4vw, 5.4rem);
  max-width: 19ch;
  margin: 1.1rem 0 0;
}
.v-open-lede {
  font-size: clamp(1.06rem, .98rem + .35vw, 1.24rem);
  color: var(--ink-2);
  max-width: 56ch;
  margin: 1.5rem 0 0;
}
.v-open-act { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2.1rem; }

/* ---------- buttons ---------- */

.v-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: .8rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase; text-decoration: none;
  padding: .95rem 1.7rem; border: 1px solid var(--ink); border-radius: 2px;
  transition: background .16s, color .16s, border-color .16s;
}
.v-btn:hover { background: var(--ink); color: var(--paper); }
.v-btn-quiet { border-color: var(--rule); color: var(--ink-2); }
.v-btn-quiet:hover { background: transparent; border-color: var(--ink); color: var(--ink); }
.v-btn-solid {
  background: var(--bronze); border-color: var(--bronze); color: #fff; width: 100%;
  padding: 1.05rem 1.7rem; cursor: pointer;
}
.v-btn-solid:hover { background: var(--bronze-lift); border-color: var(--bronze-lift); color: #fff; }
.v-btn-solid:disabled { opacity: .55; cursor: default; }

/* ---------- B. full-bleed image ---------- */

.v-bleed { margin: 0; }
.v-bleed img {
  width: 100%; height: clamp(240px, 34vw, 430px); object-fit: cover;
  filter: saturate(.86) contrast(1.03);
}
.v-bleed figcaption {
  max-width: var(--shell); margin: .7rem auto 0; padding: 0 var(--gut);
  font-size: .8rem; color: var(--ink-2); letter-spacing: .01em;
}

/* ---------- bands ---------- */

.v-band { padding: clamp(3rem, 6vw, 4.8rem) 0; border-top: 1px solid var(--rule); }
.v-band-tight { padding: clamp(2.2rem, 4vw, 3.2rem) 0; }
.v-band-h { font-size: clamp(1.75rem, 1.2rem + 1.7vw, 2.6rem); margin: 0 0 2rem; max-width: 22ch; }

.v-band-ink { background: var(--navy); color: #fff; border-top: 0; }
.v-band-ink .v-band-h { color: #fff; }

/* ---------- C. asymmetric split ---------- */

.v-split { display: grid; grid-template-columns: minmax(12rem, 26%) 1fr; gap: clamp(1.6rem, 5vw, 4.2rem); align-items: start; }
.v-split-side h2 { font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.2rem); }
.v-split-body > p { margin: 0 0 1.15rem; max-width: 64ch; }
.v-split-body > p:last-child { margin-bottom: 0; }
@media (max-width: 820px) { .v-split { grid-template-columns: 1fr; } }

/* ---------- D. numbered ledger ---------- */

.v-ledger { list-style: none; margin: 0; padding: 0; }
.v-ledger li {
  display: grid; grid-template-columns: 4.6rem 1fr; gap: 1.2rem;
  padding: 1.6rem 0; border-top: 1px solid var(--rule);
}
.v-ledger li:last-child { border-bottom: 1px solid var(--rule); }
.v-ledger-n {
  font-family: var(--serif); font-size: 1.9rem; font-weight: 600;
  color: var(--ink-2); line-height: 1; letter-spacing: -.03em;
}
.v-ledger h3 { font-size: 1.3rem; margin: 0 0 .45rem; }
.v-ledger p { margin: 0; color: var(--ink-2); max-width: 66ch; }
@media (max-width: 620px) {
  .v-ledger li { grid-template-columns: 1fr; gap: .35rem; }
}

/* ---------- E. data strip ---------- */

.v-strip { background: var(--navy); color: #fff; }
.v-strip-in {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding-top: 2.2rem; padding-bottom: 2.2rem; gap: 1.4rem;
}
.v-strip-in div { display: grid; gap: .3rem; }
.v-strip strong {
  font-family: var(--serif); font-size: clamp(1.9rem, 1.2rem + 1.6vw, 2.7rem);
  font-weight: 600; letter-spacing: -.03em; line-height: 1;
}
.v-strip span {
  font-size: .74rem; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.62);
}
@media (max-width: 720px) { .v-strip-in { grid-template-columns: repeat(2, 1fr); } }

/* ---------- F. spec table ---------- */

.v-spec { width: 100%; border-collapse: collapse; font-size: .96rem; }
.v-spec thead th {
  text-align: left; font-family: var(--sans); font-size: .72rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--ink-2);
  padding: 0 1.2rem .8rem 0; border-bottom: 1px solid var(--ink);
}
.v-spec tbody th {
  text-align: left; font-family: var(--serif); font-weight: 600; font-size: 1.06rem;
  padding: 1.1rem 1.2rem 1.1rem 0; vertical-align: top; width: 22%;
}
.v-spec td { padding: 1.1rem 1.2rem 1.1rem 0; vertical-align: top; border-top: 1px solid var(--rule); }
.v-spec tbody th { border-top: 1px solid var(--rule); }
.v-spec .v-alt { color: var(--ink-2); }
@media (max-width: 760px) {
  .v-spec, .v-spec tbody, .v-spec tr, .v-spec td, .v-spec tbody th { display: block; width: auto; }
  .v-spec thead { display: none; }
  .v-spec tr { border-top: 1px solid var(--rule); padding: 1rem 0; }
  .v-spec tbody th, .v-spec td { border: 0; padding: .1rem 0; }
  .v-spec .v-alt::before { content: "Listing with an agent: "; color: var(--ink-2); font-weight: 600; }
}

/* ---------- G. roster ---------- */

.v-roster {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(2rem, 5vw, 4rem);
}
.v-roster li { padding: 1.35rem 0; border-top: 1px solid rgba(255,255,255,.18); }
.v-roster h3 { font-size: 1.2rem; margin: 0 0 .35rem; color: #fff; }
.v-roster p { margin: 0; color: rgba(255,255,255,.72); font-size: .95rem; }
@media (max-width: 720px) { .v-roster { grid-template-columns: 1fr; } }

/* ---------- H. typographic index ---------- */

.v-index {
  list-style: none; margin: 0; padding: 0;
  columns: 4; column-gap: clamp(1.4rem, 3vw, 2.6rem);
}
.v-index li { break-inside: avoid; border-top: 1px solid var(--rule); }
.v-index a {
  display: block; padding: .62rem 0; text-decoration: none;
  font-size: .92rem; font-weight: 500;
}
.v-index a:hover { color: var(--bronze); }
@media (max-width: 980px) { .v-index { columns: 3; } }
@media (max-width: 720px) { .v-index { columns: 2; } }
@media (max-width: 460px) { .v-index { columns: 1; } }

/* ---------- I. pull quote ---------- */

.v-pull {
  margin: 0; font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.35rem, 1rem + 1.5vw, 2.05rem);
  line-height: 1.32; letter-spacing: -.012em; max-width: 30ch;
  border-left: 2px solid var(--bronze); padding-left: clamp(1rem, 3vw, 2rem);
}

/* ---------- J. faq ---------- */

.v-faq { margin: 0; }
.v-faq dt {
  font-family: var(--serif); font-size: 1.22rem; font-weight: 600;
  padding-top: 1.35rem; border-top: 1px solid var(--rule);
}
.v-faq dd {
  margin: .5rem 0 1.35rem; color: var(--ink-2); max-width: 66ch;
}

/* ---------- K. offer band ---------- */

.v-offer { background: var(--navy); color: #fff; color-scheme: dark; }
.v-offer-in {
  display: grid; grid-template-columns: 1fr minmax(360px, 42%);
  gap: clamp(2rem, 5vw, 4.5rem); align-items: start;
  padding-top: clamp(3rem, 6vw, 4.6rem); padding-bottom: clamp(3rem, 6vw, 4.6rem);
}
.v-offer-copy h2 { color: #fff; font-size: clamp(1.9rem, 1.3rem + 1.9vw, 2.9rem); max-width: 15ch; }
.v-offer-copy > p { color: rgba(255,255,255,.74); max-width: 44ch; margin: 1.1rem 0 0; }
.v-offer-alt { font-size: .92rem; }
.v-offer-alt a { color: var(--bronze-lift); }
@media (max-width: 880px) { .v-offer-in { grid-template-columns: 1fr; } }

.v-form { display: grid; gap: .85rem; }
.v-row { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.v-field { display: grid; gap: .34rem; }
.v-field label {
  font-size: .68rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: rgba(255,255,255,.62);
}
.v-field input, .v-field select {
  font: inherit; font-size: .98rem; color: #fff;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 2px; padding: .78rem .85rem; width: 100%;
}
.v-field input::placeholder { color: rgba(255,255,255,.4); }
.v-field input:focus, .v-field select:focus {
  outline: none; border-color: var(--bronze-lift); background: rgba(255,255,255,.1);
}
.v-fine { font-size: .78rem; color: rgba(255,255,255,.55); margin: 0; }
.v-hp { position: absolute; left: -9999px; }
.v-lookup {
  font-size: .88rem; background: rgba(255,255,255,.08);
  border-left: 2px solid var(--bronze-lift); padding: .7rem .85rem; border-radius: 2px;
}
.v-lookup.vd-miss { border-left-color: #e0b15f; }
.v-result:empty { display: none; }
.v-result { font-size: .9rem; padding: .7rem .85rem; border-radius: 2px; background: rgba(255,255,255,.08); }
.v-result.vd-err { background: rgba(224,120,90,.16); }

/* ---------- article ---------- */

.v-article { display: grid; grid-template-columns: minmax(0, 15rem) minmax(0, 1fr); gap: clamp(1.6rem, 5vw, 4rem); align-items: start; }
.v-toc { position: sticky; top: 100px; }
.v-toc ol { list-style: none; margin: .8rem 0 0; padding: 0; display: grid; gap: .45rem; }
.v-toc a { font-size: .88rem; color: var(--ink-2); text-decoration: none; }
.v-toc a:hover { color: var(--ink); }
.v-prose { max-width: 68ch; }
.v-prose h2 { font-size: clamp(1.55rem, 1.2rem + 1.1vw, 2.05rem); margin: 2.4rem 0 .8rem; }
.v-prose h3 { font-size: 1.24rem; margin: 1.9rem 0 .6rem; }
.v-prose h2:first-child, .v-prose h3:first-child { margin-top: 0; }
.v-prose p { margin: 0 0 1.15rem; }
.v-prose ul { margin: 0 0 1.3rem; padding-left: 1.1rem; }
.v-prose li { margin-bottom: .5rem; }
@media (max-width: 880px) {
  .v-article { grid-template-columns: 1fr; }
  .v-toc { position: static; }
  .v-toc:empty { display: none; }
}

/* ---------- blog index ---------- */

.v-posts { list-style: none; margin: 0; padding: 0; }
.v-posts li { border-top: 1px solid var(--rule); }
.v-posts li:last-child { border-bottom: 1px solid var(--rule); }
.v-posts a {
  display: grid; grid-template-columns: 8rem 1fr; gap: 1.4rem;
  padding: 1.7rem 0; text-decoration: none; align-items: baseline;
}
.v-posts time { font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-2); }
.v-posts h2 { font-size: clamp(1.35rem, 1.1rem + .9vw, 1.85rem); max-width: 34ch; }
.v-posts p { margin: .5rem 0 0; color: var(--ink-2); font-size: .95rem; max-width: 62ch; }
.v-posts a:hover h2 { color: var(--bronze); }
@media (max-width: 640px) { .v-posts a { grid-template-columns: 1fr; gap: .3rem; } }

/* ---------- footer ---------- */

.v-foot { border-top: 1px solid var(--rule); padding: clamp(2.6rem, 5vw, 4rem) 0 1.6rem; }
.v-foot-in { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; }
.v-foot-in > div > p { color: var(--ink-2); font-size: .93rem; max-width: 44ch; }
.v-mark-foot { margin-bottom: .9rem; }
.v-foot-c a { text-decoration: none; }
.v-foot-c a:hover { color: var(--bronze); }
.v-foot-c .v-kicker { margin-bottom: .6rem; }
.v-foot-fine { margin-top: 2.4rem; padding-top: 1.2rem; border-top: 1px solid var(--rule); }
.v-foot-fine p { font-size: .8rem; color: var(--ink-2); margin: 0; }
@media (max-width: 760px) { .v-foot-in { grid-template-columns: 1fr; } }

/* ---------- motion ---------- */

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* Grouped directory: land and houses share county names, so each group is
   labelled and set apart rather than run together into one column flow. */
.v-index-group + .v-index-group { margin-top: 2.6rem; }
.v-index-group .v-kicker { margin-bottom: .9rem; }

/* Compact inline run of links */
.v-inline { margin: 0; line-height: 2.1; }
.v-inline a { text-decoration: none; font-size: .93rem; }
.v-inline a:hover { color: var(--bronze); }
.v-inline span { color: var(--rule); margin: 0 .55rem; }

/* County names were breaking across lines mid-name ("Grays / Harbor County")
   because the separators are wrap opportunities. Keep each name whole. */
.v-inline a { white-space: nowrap; }
