/* ==========================================================================
   Home valuation page.

   A photograph with the request form set on it, then the agent, then the
   explaining. Same register as the home page: light panels, small tracked
   capitals, the garamond for headings, nothing decorated. Every colour, face
   and measure is a brand token so a second agent's page is a config change.
   ========================================================================== */

.page-valuation { background: var(--c-paper); }
.page-valuation .wrap { width: min(1280px, 100% - (var(--s-gutter) * 2)); }

/* --- Opening --------------------------------------------------------------- */

.vhero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: 9rem 0 4.5rem;
  color: var(--c-white);
  background: var(--c-slate);
  overflow: hidden;
}
.vhero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.vhero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.30) 55%, rgba(0, 0, 0, 0.25) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 30%);
}

.vhero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.vhero__copy { max-width: 560px; }
.vhero__title {
  margin: 0 0 1.4rem;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: 0.02em;
  color: var(--c-white);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
}
.vhero__lede {
  margin: 0 0 2rem;
  max-width: 48ch;
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}
.vhero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}
.vhero__points li::before { content: "\2713\00a0\00a0"; }

/* --- The form -------------------------------------------------------------- */

.vform {
  background: var(--c-white);
  color: var(--c-ink);
  padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1.4rem, 3vw, 2.4rem) clamp(1.4rem, 3vw, 2rem);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  scroll-margin-top: 7rem;
}
.vform__head {
  margin: 0 0 1.4rem;
  font-family: var(--f-display);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
.vform__alert {
  margin: 0 0 1.2rem;
  padding: 0.7rem 0.9rem;
  border-left: 3px solid var(--c-error);
  background: var(--c-paper-alt);
  font-size: 0.85rem;
  font-weight: 500;
}

.vfield { display: block; margin: 0 0 1rem; }
.vfield label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-ink);
}
.vfield label span { color: var(--c-muted); font-weight: 500; letter-spacing: 0.08em; text-transform: none; }
.vfield input,
.vfield select,
.vfield textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--c-line);
  border-radius: var(--s-radius);
  background: var(--c-paper);
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-ink);
  transition: border-color .15s ease;
}
.vfield input::placeholder,
.vfield textarea::placeholder { color: var(--c-muted); font-weight: 400; }
.vfield input:focus,
.vfield select:focus,
.vfield textarea:focus { border-color: var(--c-ink); outline: none; }
.vfield textarea { resize: vertical; min-height: 4.5rem; }
.vfield select {
  appearance: none;
  padding-right: 2.4rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='1.6'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 14px;
}
.vfield.is-bad input { border-color: var(--c-error); }
.vfield__error { display: block; margin-top: 0.4rem; font-size: 0.8rem; color: var(--c-error); }
.vfield-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
.vfield--trap { position: absolute; left: -9999px; }

.vform__go {
  display: block;
  width: 100%;
  margin-top: 0.4rem;
  background: var(--c-ink);
  color: var(--c-white);
  border-color: var(--c-ink);
  padding: 1.05rem 1.5rem;
}
.vform__go:hover { background: var(--c-slate); border-color: var(--c-slate); }
.vform__fine {
  margin: 1rem 0 0;
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--c-muted);
}

.vform__done h2 { font-size: 1.75rem; margin: 0 0 0.8rem; }
.vform__done p { margin: 0; line-height: 1.7; }
.vform__done .eyebrow { margin-bottom: 0.7rem; }

@media (max-width: 960px) {
  .vhero { min-height: 0; padding: 8rem 0 3.5rem; }
  .vhero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .vhero__copy { max-width: 620px; }
}
@media (max-width: 560px) {
  .vfield-row { grid-template-columns: 1fr; }
  .vform { box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28); }
}

/* --- The agent ------------------------------------------------------------- */

.vmeet { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.vmeet__inner {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.vmeet__photo { margin: 0; }
.vmeet__photo img { width: 100%; aspect-ratio: 1; object-fit: cover; object-position: center top; }
.vmeet__name { font-size: var(--t-display-m); margin: 0 0 0.35rem; }
.vmeet__title {
  margin: 0 0 1.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
}
.vmeet__bio { max-width: 58ch; margin: 0 0 1.6rem; line-height: 1.8; }
.vmeet__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2.2rem;
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--c-ink-soft);
}
.vmeet__facts strong { color: var(--c-ink); font-weight: 600; }
.vmeet__cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 0; }

@media (max-width: 760px) {
  .vmeet__inner { grid-template-columns: 1fr; }
  .vmeet__photo { max-width: 260px; }
}

/* --- What the record says -------------------------------------------------- */

.vrecord__head { max-width: 760px; margin: 0 auto 3rem; text-align: center; }
.vrecord__head h2 { font-size: var(--t-display-m); margin: 0 0 1rem; }
.vrecord__head p { margin: 0; line-height: 1.8; }
.vrecord__figures {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  list-style: none;
  margin: 0 auto 1.75rem;
  padding: 0;
  max-width: 1080px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
}
.vrecord__figures li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.9rem 1rem;
  background: var(--c-white);
  text-align: center;
}
.vrecord__figures strong {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1;
  color: var(--c-ink);
}
.vrecord__figures span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.vrecord__note { max-width: 760px; margin: 0 auto 1rem; text-align: center; font-size: 0.92rem; color: var(--c-ink-soft); }
.vrecord .source-note { text-align: center; margin-inline: auto; }

@media (max-width: 800px) { .vrecord__figures { grid-template-columns: 1fr 1fr; } }

/* --- The explaining -------------------------------------------------------- */

.vlearn__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.vlearn__lead { position: sticky; top: 8rem; }
.vlearn__lead h2 { font-size: var(--t-display-m); margin: 0 0 1rem; }
.vlearn__lead p { margin: 0; line-height: 1.8; }

.vfaq { border-top: 1px solid var(--c-line); }
.vfaq__item { border-bottom: 1px solid var(--c-line); }
.vfaq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  cursor: pointer;
  list-style: none;
}
.vfaq__item summary::-webkit-details-marker { display: none; }
.vfaq__item summary h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.3;
}
.vfaq__item summary::after {
  content: "";
  flex: none;
  width: 12px;
  height: 12px;
  border-right: 1.5px solid var(--c-ink);
  border-bottom: 1.5px solid var(--c-ink);
  transform: rotate(45deg) translate(-3px, -3px);
  transition: transform .2s ease;
}
.vfaq__item[open] summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.vfaq__body { padding: 0 0 1.6rem; max-width: 62ch; }
.vfaq__body p { margin: 0 0 1em; line-height: 1.8; }
.vfaq__body p:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .vlearn__inner { grid-template-columns: 1fr; gap: 2rem; }
  .vlearn__lead { position: static; }
}

/* --- Two ways -------------------------------------------------------------- */

.vways h2, .vwhy h2 { font-size: var(--t-display-m); margin: 0 0 3rem; }
.vways__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.vway {
  background: var(--c-white);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  border: 1px solid var(--c-line);
}
.vway__k {
  margin: 0 0 1rem;
  font-family: var(--f-display);
  font-size: 1.6rem;
  color: var(--c-accent);
  line-height: 1;
}
.vway h3 { font-size: 1.5rem; margin: 0 0 0.9rem; }
.vway p { line-height: 1.8; margin: 0 0 1em; }
.vway__cost {
  margin: 0 !important;
  padding-top: 1rem;
  border-top: 1px solid var(--c-line);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--c-ink-soft);
}
.vways__note { max-width: 66ch; margin: 2.25rem auto 0; text-align: center; font-size: 0.95rem; color: var(--c-ink-soft); }

@media (max-width: 800px) { .vways__grid { grid-template-columns: 1fr; } }

/* --- Why it matters -------------------------------------------------------- */

.vwhy__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.vwhy__item { padding-top: 1.25rem; border-top: 1px solid var(--c-ink); }
.vwhy__item h3 { font-size: 1.35rem; margin: 0 0 0.7rem; }
.vwhy__item p { margin: 0; font-size: 0.95rem; line-height: 1.8; }

@media (max-width: 1000px) { .vwhy__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .vwhy__grid { grid-template-columns: 1fr; } }

/* --- Close ----------------------------------------------------------------- */

.vclose {
  background: var(--c-slate);
  color: var(--c-white);
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  text-align: center;
}
.vclose__inner { max-width: 720px; }
.vclose h2 {
  color: var(--c-white);
  font-size: clamp(2rem, 3.6vw, 3rem);
  margin: 0 0 1rem;
}
.vclose p { margin: 0 auto 2rem; max-width: 52ch; line-height: 1.8; color: rgba(255, 255, 255, 0.86); }
.vclose__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; max-width: none; margin: 0 !important; }
