:root {
  --plum: #2e2249;
  --plum-deep: #1f1733;
  --gold: #e3b33d;
  --gold-dark: #c4972c;
  --gold-text: #715512;
  --paper: #fff;
  --stock: #f3eee3;
  --ink: #23262b;
  --ink-soft: #5e6470;
  --line: #dbd3c4;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font:
    17px/1.6 Barlow,
    system-ui,
    sans-serif;
  color: var(--ink);
  background: var(--paper);
}
a {
  color: inherit;
  text-underline-offset: 3px;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  width: min(1120px, 92vw);
  margin: auto;
}
header,
.hero,
.offer {
  background: var(--plum);
  color: #fff;
}
.nav {
  min-height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: flex;
  gap: 11px;
  align-items: center;
  text-decoration: none;
  font:
    800 25px/1 "Barlow Condensed",
    sans-serif;
}
.brand svg {
  width: 32px;
  height: 44px;
}
.nav-phone,
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}
.nav-phone {
  border: 1px solid #aaa3ba;
  padding: 0 15px;
}
.hero {
  padding: 48px 0 68px;
  overflow: hidden;
}
.hero-grid,
.why-grid,
.about-grid {
  display: grid;
  gap: 42px;
  align-items: center;
}
h1,
h2,
h3 {
  font-family: "Barlow Condensed", sans-serif;
  line-height: 1.03;
}
h1 {
  font-size: clamp(45px, 7vw, 74px);
  margin: 0;
  max-width: 13ch;
}
h2 {
  font-size: clamp(35px, 5vw, 49px);
  margin: 0;
  max-width: 24ch;
}
h3 {
  font-size: 26px;
  margin: 0;
}
.lead,
.sub {
  font-size: 19px;
  max-width: 58ch;
}
.lead {
  color: #e1dce8;
}
.sub {
  color: var(--ink-soft);
  margin: 12px 0 0;
}
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 27px;
  font-weight: 600;
}
.hero-facts span:before {
  content: "";
  display: inline-block;
  background: var(--gold);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: 8px;
}
.hero-cta {
  display: flex;
  gap: 17px;
  align-items: center;
  margin-top: 31px;
}
.btn {
  padding: 11px 20px;
  border: 0;
  cursor: pointer;
  font:
    700 17px Barlow,
    sans-serif;
}
.btn-primary {
  background: var(--gold);
  color: #1a1a1a;
}
.btn-primary:hover {
  background: var(--gold-dark);
}
.btn-ghost {
  text-decoration: underline;
  color: #fff;
}
.stack {
  height: 342px;
  position: relative;
}
.card-deck {
  position: absolute;
  inset: 0;
}
.family-stamp {
  position: absolute;
  z-index: 3;
  top: 116px;
  left: 50%;
  width: 194px;
  margin: 0;
  text-align: center;
  transform: translateX(-50%) rotate(-3deg);
}
.family-stamp img {
  display: block;
  width: 154px;
  height: 154px;
  margin: 0 auto;
  object-fit: cover;
  object-position: 50% 34%;
  border: 7px solid var(--paper);
  border-radius: 50%;
  outline: 4px solid var(--gold);
  box-shadow: 0 13px 26px #120b2266;
}
.family-stamp figcaption {
  display: inline-grid;
  gap: 1px;
  margin-top: -7px;
  padding: 7px 12px 8px;
  color: var(--plum-deep);
  background: var(--gold);
  border: 3px solid var(--paper);
  border-radius: 4px;
  box-shadow: 0 8px 18px #120b224d;
  line-height: 1.05;
}
.family-stamp strong {
  font: 800 19px "Barlow Condensed", sans-serif;
}
.family-stamp span {
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}
.hero {
  overflow: hidden;
}
.card {
  position: absolute;
  left: 50%;
  top: 16px;
  width: 168px;
  height: 238px;
  background: var(--stock);
  border-radius: 9px;
  padding: 13px;
  box-shadow: 0 15px 28px #120b224d;
}
.card:before {
  content: "";
  position: absolute;
  inset: 11px;
  border: 2px solid var(--plum);
  border-radius: 5px;
}
.card-photo {
  position: absolute;
  inset: 24px 24px 62px;
  background: #59616d;
  border-radius: 3px;
}
.card-name {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--plum);
  font:
    800 13px "Barlow Condensed",
    sans-serif;
}
.card:nth-child(1) {
  transform: translateX(-125px) rotate(-14deg);
}
.card:nth-child(2) {
  transform: translateX(-73px) rotate(-4deg);
}
.card:nth-child(3) {
  transform: translateX(-22px) rotate(7deg);
}
.card:nth-child(4) {
  transform: translateX(35px) rotate(16deg);
}
.card:nth-child(2) .card-photo {
  background: #65765c;
}
.card:nth-child(3) .card-photo {
  background: #874942;
}
.card:nth-child(4) .card-photo {
  background: #887141;
}
section {
  padding: 64px 0;
}
.stock {
  background: var(--stock);
}
.steps,
.buy-grid,
.photo-guide,
.areas-list {
  display: grid;
  gap: 24px;
  margin-top: 34px;
}
.step {
  border-top: 4px solid var(--plum);
  padding-top: 15px;
}
.step h3:before {
  content: counter(item);
  counter-increment: item;
  display: inline-grid;
  place-items: center;
  background: var(--gold);
  width: 27px;
  height: 27px;
  border-radius: 50%;
  font:
    800 15px Barlow,
    sans-serif;
  margin-right: 10px;
}
.steps {
  counter-reset: item;
}
.step p,
.note {
  color: var(--ink-soft);
}
.photo-guide {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
}
.guide-head {
  margin-top: 46px;
}
.photo-guide small {
  display: block;
  margin-top: 11px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
}
/* Hand-drawn line art for the three-photo guide. Framed like the placeholder
   blocks it replaced so the section keeps its rhythm. */
.guide-art {
  display: block;
  width: 100%;
  height: auto;
  background: var(--stock);
  border: 2px solid var(--line);
  border-radius: 3px;
}
.placeholder {
  min-height: 130px;
  padding: 18px;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--stock);
  border: 2px dashed #b5a98e;
  color: #6d614b;
}
.buy-grid li {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
.why p,
.about p {
  margin: 14px 0;
}
.eyebrow,
.compare-kicker {
  margin: 0 0 9px;
  color: var(--gold-text);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.why-copy p {
  max-width: 56ch;
}
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 2px solid var(--plum);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 34px #2e22491a;
}
.compare-side {
  padding: 27px 25px 25px;
}
.compare-side h3 {
  min-height: 2.1em;
  font-size: 25px;
}
.compare-side ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}
.compare-side li {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid currentColor;
  font-weight: 650;
  line-height: 1.35;
}
.compare-side li span {
  font-size: 24px;
  font-weight: 800;
  line-height: 0.8;
}
.compare-shop {
  color: var(--ink-soft);
  background: var(--stock);
}
.compare-shop h3 {
  color: var(--ink);
}
.compare-shop li {
  border-color: var(--line);
}
.compare-shop li span {
  color: #8a5c58;
}
.compare-us {
  color: #fff;
  background: var(--plum);
}
.compare-us .compare-kicker,
.compare-us li span {
  color: var(--gold);
}
.compare-us li {
  border-color: #ffffff2b;
}
/* Narrative sections (problem, stakes, success). Single column of prose that
   carries the story between the wider grid sections. */
.prose {
  max-width: 720px;
}
.prose p {
  margin: 18px 0 0;
  max-width: 62ch;
  font-size: 19px;
  color: var(--ink-soft);
}
.buy-close {
  margin-top: 34px;
}
.steps-note {
  margin: 32px 0 0;
  color: var(--ink-soft);
  text-align: center;
}
/* Same low-effort next step at the end of every narrative section. Deliberately
   a text link, so the only buttons on the page stay the hero and the form. */
.next-step {
  margin: 27px 0 0;
}
.next-step a {
  font-weight: 700;
  color: var(--gold-text);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}
.next-step a:hover {
  color: var(--plum);
}
/* The About section is the trust anchor, so it sits on plum directly after the
   problem rather than near the footer. */
.guide-band {
  background: var(--plum);
  color: #fff;
}
.guide-band p {
  color: #e1dce8;
  max-width: 60ch;
}
.guide-band strong {
  color: #fff;
}
.guide-band .next-step a {
  color: var(--gold);
}
/* "A week from now" is the lead-in to the form, not a section of its own. */
.lead-in {
  padding-bottom: 30px;
}
.about-photo {
  margin: 0;
  transform: rotate(-1.5deg);
}
.about-photo img {
  display: block;
  width: 100%;
  max-height: 530px;
  object-fit: cover;
  object-position: 50% 34%;
  border: 9px solid var(--paper);
  box-shadow: 0 12px 28px #2e224929;
}
.about-photo figcaption {
  width: fit-content;
  margin: -17px 0 0 22px;
  padding: 8px 13px;
  position: relative;
  background: var(--gold);
  color: var(--plum-deep);
  font: 800 17px "Barlow Condensed", sans-serif;
  transform: rotate(2deg);
}
.seal {
  width: 88px;
  height: 88px;
}
.offer .sub {
  color: #d6d0dc;
}
.form-card {
  margin-top: 30px;
  background: var(--paper);
  color: var(--ink);
  padding: 25px;
  border-radius: 9px;
  box-shadow: 0 14px 34px #160f274d;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
label {
  display: block;
  font-weight: 700;
  font-size: 15px;
}
label small {
  font-weight: 500;
  color: var(--ink-soft);
}
input,
select,
textarea {
  display: block;
  width: 100%;
  font: inherit;
  min-height: 46px;
  margin-top: 6px;
  padding: 11px;
  border: 1.5px solid #aaa6ae;
  border-radius: 5px;
  background: #fff;
  color: inherit;
}
select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position:
    calc(100% - 19px) calc(50% + 2px),
    calc(100% - 13px) calc(50% + 2px);
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
  padding-right: 38px;
}
textarea {
  min-height: 110px;
  line-height: 1.5;
}
.upload {
  display: block;
  border: 2px dashed #aaa6ae;
  border-radius: 6px;
  background: #fbfaf8;
  padding: 22px 18px;
  text-align: center;
  margin-top: 8px;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.upload strong {
  display: block;
  font-size: 16px;
}
.upload span {
  display: block;
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 3px;
}
.upload:focus-within,
.upload:hover {
  border-color: var(--plum);
}
.upload.over {
  border-color: var(--gold);
  background: #fff8e5;
}
.upload input {
  margin: 14px auto 0;
  max-width: 460px;
  min-height: 46px;
  padding: 7px;
  cursor: pointer;
}
.helper {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 3px 0;
}
.slot-error,
.form-error {
  color: #8a3028;
  font-weight: 600;
  margin: 8px 0 0;
}
.form-error {
  background: #fdf0ee;
  border: 1px solid #e0bdb7;
  border-radius: 6px;
  padding: 12px 14px;
}
[data-slot] > label:first-child {
  font-size: 17px;
}
.thumbs {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.thumbs:empty {
  margin-top: 0;
}
.thumbs figure {
  margin: 0;
  position: relative;
}
.thumbs button {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 24px;
  height: 24px;
  min-height: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}
.form-foot {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.form-foot small {
  color: var(--ink-soft);
  font-size: 14px;
}
.thumbs img {
  height: 70px;
  width: 70px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.honeypot {
  position: absolute;
  left: -9999px;
}
.success {
  display: none;
  padding: 25px;
  background: #edf4e8;
  border: 1px solid #658359;
  color: #254b31;
  font-size: 18px;
}
.success.show {
  display: block;
}
.areas-list {
  grid-template-columns: 1fr 1fr;
}
.areas-list a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.map {
  width: 100%;
  max-width: 540px;
  margin: 32px auto 0;
}
.faq {
  margin-top: 25px;
}
details {
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
}
details:first-child {
  border-top: 1px solid var(--line);
}
summary {
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
summary:after {
  content: "+";
  color: var(--gold);
  font-size: 25px;
}
details[open] summary:after {
  content: "–";
}
details p {
  color: var(--ink-soft);
  max-width: 65ch;
}
.breadcrumbs {
  padding: 17px 0;
  font-size: 14px;
  color: var(--ink-soft);
}
.article {
  max-width: 740px;
}
.article h2 {
  margin-top: 42px;
}
.article li {
  margin: 8px 0;
}
/* The plan in miniature, repeated on area pages and guides so a reader who
   lands from search gets the same problem -> guide -> plan -> next step arc. */
.mini-arc {
  margin: 40px 0 0;
  padding: 24px 25px 25px;
  border: 2px solid var(--plum);
  border-radius: 8px;
}
.mini-guide {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}
.mini-steps {
  counter-reset: mini;
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}
.mini-steps li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}
.mini-steps li:before {
  content: counter(mini);
  counter-increment: mini;
  display: inline-grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--plum-deep);
  font:
    800 15px Barlow,
    sans-serif;
}
.mini-steps strong {
  color: var(--ink);
}
.callbar {
  display: none;
}
footer {
  background: var(--plum-deep);
  color: #d2ccd9;
  padding: 36px 0 90px;
}
.foot-grid {
  display: grid;
  gap: 22px;
}
.foot-grid strong {
  display: block;
  color: #fff;
  font:
    800 23px "Barlow Condensed",
    sans-serif;
}
.foot-seal {
  width: 64px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
@media (min-width: 860px) {
  .hero-grid {
    grid-template-columns: 1.12fr 0.88fr;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }
  .steps,
  .buy-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .buy-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-card {
    grid-template-columns: 1fr 1fr;
    padding: 36px;
  }
  .full {
    grid-column: 1/-1;
  }
  .foot-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr auto;
  }
  .photo-guide {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 859px) {
  .nav-phone {
    display: none;
  }
  .callbar {
    display: block;
    position: fixed;
    z-index: 8;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 13px;
    background: var(--gold);
    color: #1a1a1a;
    text-align: center;
    font-weight: 800;
    text-decoration: none;
    min-height: 48px;
  }
  body {
    padding-bottom: 48px;
  }
  .stack {
    margin-top: 15px;
    height: 322px;
    /* Re-centre the fanned group (it sits ~45px left of the box centre)
       and shrink it so the outer cards don't clip on narrow screens. */
    transform: scale(0.88) translateX(45px);
  }
  .field-grid {
    grid-template-columns: 1fr;
  }
  .compare {
    grid-template-columns: 1fr;
  }
  .compare-side h3 {
    min-height: 0;
  }
  .areas-list {
    grid-template-columns: 1fr;
  }
  /* Three drawings side by side are unreadable on a phone, and this is the
     one section a seller actually has to study before shooting. */
  .photo-guide {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}

/* ---- Guides ------------------------------------------------------------- */
/* Article typography is scoped to .guide so area pages keep their own rhythm. */
.guide {
  max-width: 68ch;
}
.guide p,
.guide li {
  font-size: 18px;
  line-height: 1.75;
}
.byline {
  margin: 14px 0 30px;
  color: var(--ink-soft);
  font-size: 15px;
}
.guide-figure {
  margin: 32px 0;
}
.guide-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}
.guide-figure figcaption {
  margin-top: 9px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
}
.guide-figure a {
  display: block;
  border: 0;
}
.photo-row {
  display: grid;
  grid-template-columns: repeat(var(--cols, 2), minmax(0, 1fr));
  gap: 16px;
  margin: 32px 0;
}
.photo-row .guide-figure {
  margin: 0;
}
/* Cards are portrait and the source photos vary, so box every thumbnail to the
   same shape and letterbox rather than crop — a cropped card loses its edges,
   which is the thing the reader is being asked to look at. */
.photo-row .guide-figure img {
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: var(--stock);
}
.photo-row .guide-figure figcaption {
  margin-top: 8px;
  font-size: 13.5px;
}
@media (max-width: 620px) {
  .photo-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .photo-row .guide-figure figcaption {
    font-size: 12.5px;
  }
}
.guide blockquote {
  margin: 28px 0;
  padding-left: 18px;
  border-left: 3px solid var(--gold);
  color: var(--ink-soft);
}
.cta-block {
  margin: 44px 0 56px;
  padding: 26px 27px;
  background: var(--stock);
  border-radius: 8px;
}
.cta-block p {
  margin: 0 0 17px;
  font-weight: 700;
}
.cta-block .btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 4px;
}
.more-guides {
  display: grid;
  gap: 12px;
  margin: 18px 0 26px;
}
.more-guides a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}
