
:root {
  --ink: #17211d;
  --ink-soft: #41504a;
  --paper: #f6f2e9;
  --paper-deep: #ebe5d8;
  --cream: #fffdf8;
  --line: rgba(23, 33, 29, 0.17);
  --buyer: #214e40;
  --buyer-dark: #102c24;
  --buyer-light: #dfe8df;
  --seller: #633f2e;
  --seller-dark: #2e211b;
  --seller-light: #eaded2;
  --gold: #9c7a42;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino,
    Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  color: inherit;
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.principle-bar {
  align-items: center;
  background: var(--ink);
  color: #f8f4eb;
  display: flex;
  font-size: 0.68rem;
  justify-content: space-between;
  letter-spacing: 0.14em;
  min-height: 34px;
  padding: 7px clamp(20px, 4vw, 68px);
  text-transform: uppercase;
}

.principle-bar a {
  align-items: center;
  display: flex;
  gap: 9px;
  opacity: 0.8;
}

.principle-bar a:hover {
  opacity: 1;
}

.site-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  padding: 25px clamp(20px, 4vw, 68px);
  position: relative;
  z-index: 10;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  justify-self: start;
  width: fit-content;
}

.wordmark-title {
  font-family: var(--serif);
  font-size: clamp(0.92rem, 1.2vw, 1.14rem);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.wordmark-note {
  font-size: 0.57rem;
  letter-spacing: 0.18em;
  margin-top: 5px;
  opacity: 0.62;
  text-transform: uppercase;
}

.site-header nav {
  display: flex;
  gap: clamp(18px, 2.2vw, 38px);
  justify-content: center;
}

.site-header nav a {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  position: relative;
}

.site-header nav a::after {
  background: currentColor;
  bottom: -7px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.site-header nav a:hover::after {
  transform: scaleX(1);
}

.header-action {
  border: 1px solid currentColor;
  font-size: 0.66rem;
  justify-self: end;
  letter-spacing: 0.04em;
  padding: 11px 16px;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.buyer .header-action:hover {
  background: var(--buyer);
  color: white;
}

.seller .header-action:hover {
  background: var(--seller);
  color: white;
}

.eyebrow,
.section-index {
  align-items: center;
  display: inline-flex;
  font-size: 0.64rem;
  font-weight: 650;
  gap: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-index::before {
  background: currentColor;
  content: "";
  height: 1px;
  width: 28px;
}

.buyer-hero {
  background:
    radial-gradient(circle at 76% 45%, rgba(33, 78, 64, 0.11), transparent 27%),
    linear-gradient(125deg, var(--cream) 0 56%, var(--paper-deep) 56% 100%);
  min-height: 710px;
  padding: clamp(80px, 10vw, 140px) clamp(20px, 8vw, 130px) 52px;
  position: relative;
}

.buyer-hero::after {
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent calc(8.333% - 1px),
    rgba(23, 33, 29, 0.035) calc(8.333% - 1px),
    rgba(23, 33, 29, 0.035) 8.333%
  );
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.buyer-hero > :not(.watch-study) {
  position: relative;
  z-index: 2;
}

.buyer-hero h1,
.seller-hero h1 {
  font-family: var(--serif);
  font-size: clamp(4rem, 7.7vw, 7.9rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.82;
  margin: 38px 0 34px;
  max-width: 820px;
}

.buyer-hero h1 em,
.seller-hero h1 em {
  color: var(--buyer);
  font-weight: 400;
}

.hero-intro {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1.55;
  max-width: 555px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 42px;
}

.button {
  align-items: center;
  border: 1px solid var(--ink);
  display: inline-flex;
  font-size: 0.75rem;
  gap: 38px;
  justify-content: space-between;
  letter-spacing: 0.02em;
  min-width: 252px;
  padding: 17px 19px;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--buyer);
  border-color: var(--buyer);
  color: white;
}

.text-link {
  border-bottom: 1px solid var(--line);
  font-size: 0.76rem;
  padding-bottom: 5px;
}

.hero-footnote {
  bottom: 28px;
  display: flex;
  gap: 26px;
  left: clamp(20px, 8vw, 130px);
  position: absolute !important;
}

.hero-footnote span {
  font-size: 0.59rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.watch-study {
  height: 570px;
  position: absolute;
  right: clamp(-50px, 4vw, 100px);
  top: 66px;
  width: min(42vw, 550px);
  z-index: 1;
}

.watch-case {
  background: linear-gradient(135deg, #dde2df, #8c9994 45%, #e8ece9 70%, #7e8984);
  border: 1px solid rgba(23, 33, 29, 0.34);
  border-radius: 50%;
  box-shadow:
    0 35px 50px rgba(23, 33, 29, 0.2),
    inset 0 0 0 8px rgba(255, 255, 255, 0.4);
  height: 318px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 318px;
  z-index: 3;
}

.watch-bezel {
  background:
    repeating-conic-gradient(
      from 0deg,
      #17362d 0deg 1deg,
      #20493d 1deg 14deg,
      #d9c79b 14deg 15deg
    );
  border: 7px solid #d6d8d2;
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px rgba(0, 0, 0, 0.35);
  inset: 15px;
  position: absolute;
}

.watch-dial {
  background:
    radial-gradient(circle at 35% 26%, rgba(255, 255, 255, 0.16), transparent 20%),
    radial-gradient(circle, #214e40, #102b24 72%);
  border: 2px solid #d4c28b;
  border-radius: 50%;
  inset: 28px;
  position: absolute;
}

.hour {
  background: #e9e1c5;
  box-shadow: 0 0 0 1px #887248;
  height: 24px;
  left: calc(50% - 3px);
  position: absolute;
  top: 9px;
  transform-origin: 3px 86px;
  width: 6px;
}

.h3 {
  transform: rotate(90deg);
}

.h6 {
  transform: rotate(180deg);
}

.h9 {
  transform: rotate(270deg);
}

.hand {
  background: #d6c48e;
  bottom: 50%;
  left: calc(50% - 2px);
  position: absolute;
  transform-origin: 50% 100%;
  width: 4px;
}

.minute {
  height: 71px;
  transform: rotate(48deg);
}

.hour-hand {
  height: 48px;
  transform: rotate(310deg);
}

.dial-dot {
  background: #d6c48e;
  border-radius: 50%;
  height: 10px;
  left: calc(50% - 5px);
  position: absolute;
  top: calc(50% - 5px);
  width: 10px;
}

.watch-bracelet {
  background:
    repeating-linear-gradient(90deg, #aeb6b2 0 14px, #e0e3df 14px 31px, #929d98 31px 46px);
  border: 1px solid rgba(23, 33, 29, 0.3);
  height: 176px;
  left: calc(50% - 73px);
  position: absolute;
  width: 146px;
  z-index: 2;
}

.watch-bracelet.top {
  border-radius: 20px 20px 4px 4px;
  top: -10px;
}

.watch-bracelet.bottom {
  border-radius: 4px 4px 20px 20px;
  bottom: -10px;
}

.watch-crown {
  background: repeating-linear-gradient(0deg, #9ca6a1 0 3px, #d3d7d4 3px 6px);
  border-radius: 0 8px 8px 0;
  height: 55px;
  left: calc(50% + 158px);
  position: absolute;
  top: calc(50% - 27px);
  width: 26px;
}

.study-label {
  color: var(--buyer);
  font-family: var(--serif);
  font-size: 0.77rem;
  font-style: italic;
  position: absolute;
}

.top-label {
  left: 0;
  top: 112px;
}

.right-label {
  bottom: 110px;
  right: -5px;
}

.study-rule {
  background: var(--buyer);
  height: 1px;
  opacity: 0.55;
  position: absolute;
  transform-origin: left;
  width: 105px;
}

.rule-one {
  left: 70px;
  top: 130px;
  transform: rotate(23deg);
}

.rule-two {
  bottom: 145px;
  right: 45px;
  transform: rotate(-20deg);
}

.start-panel,
.collection-section,
.knowledge-section,
.planner-section,
.price-layers,
.sale-methods,
.photo-guide {
  padding: clamp(80px, 9vw, 140px) clamp(20px, 8vw, 130px);
}

.section-heading {
  display: grid;
  gap: 0 5vw;
  grid-template-columns: minmax(170px, 0.42fr) 1.3fr 0.8fr;
}

.section-heading h2,
.knowledge-intro h2,
.price-intro h2,
.photo-copy h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.4vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 0;
}

.section-heading p,
.knowledge-intro p,
.price-intro p,
.photo-copy > p {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 7px 0 0;
}

.need-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 72px;
}

.need-card {
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 240px;
  padding: 2px 24px 22px;
  position: relative;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.need-card:last-child {
  border-right: 1px solid var(--line);
}

.need-card:hover {
  background: var(--cream);
  transform: translateY(-4px);
}

.need-number {
  font-family: var(--serif);
  font-size: 0.83rem;
  margin-bottom: auto;
  opacity: 0.55;
}

.need-card strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2;
}

.need-card > span:nth-of-type(2) {
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.5;
  margin-top: 12px;
  max-width: 170px;
}

.need-card i {
  bottom: 20px;
  font-style: normal;
  opacity: 0;
  position: absolute;
  right: 20px;
  transition: opacity 180ms ease;
}

.need-card:hover i {
  opacity: 1;
}

.collection-section {
  background: var(--cream);
  padding-top: 92px;
}

.section-kicker {
  align-items: flex-end;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding-bottom: 24px;
}

.section-kicker > span {
  font-family: var(--serif);
  font-size: 1.2rem;
}

.section-kicker p {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 0.93rem;
  margin: 0;
  max-width: 420px;
}

.collection-row {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 26px;
  grid-template-columns: 70px 1fr 150px 40px;
  min-height: 135px;
  position: relative;
  transition:
    color 220ms ease,
    padding 220ms ease;
}

.collection-row::before {
  background: var(--buyer);
  content: "";
  inset: 0;
  position: absolute;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 220ms ease;
}

.collection-row > * {
  position: relative;
  z-index: 1;
}

.collection-row:hover {
  color: white;
  padding-left: 22px;
}

.collection-row:hover::before {
  transform: scaleY(1);
}

.collection-number {
  font-family: var(--serif);
  font-size: 0.8rem;
  opacity: 0.55;
}

.collection-row h3 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3.5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  margin: 0;
}

.collection-row p {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 0.92rem;
  margin: 5px 0 0;
  transition: color 220ms ease;
}

.collection-row:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.collection-meta {
  font-size: 0.64rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.collection-row > a {
  font-size: 1.4rem;
  text-align: right;
}

.field-section,
.value-factors {
  background: var(--buyer-dark);
  color: #f6f2e9;
  padding: clamp(90px, 10vw, 150px) clamp(20px, 8vw, 130px);
}

.section-heading.light p {
  color: rgba(246, 242, 233, 0.6);
}

.field-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 74px;
}

.field-card {
  background: #17382e;
  min-height: 530px;
  overflow: hidden;
}

.field-visual {
  align-items: center;
  background:
    radial-gradient(circle at center, rgba(218, 201, 150, 0.24), transparent 28%),
    linear-gradient(145deg, #294d43, #112b23);
  display: flex;
  height: 300px;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.field-visual > span {
  font-family: var(--serif);
  font-size: 11rem;
  left: 5%;
  opacity: 0.045;
  position: absolute;
  top: -20px;
}

.mini-watch {
  background:
    radial-gradient(circle at 35% 30%, #59776c, #132b23 65%),
    var(--buyer);
  border: 13px solid #a8aca6;
  border-radius: 50%;
  box-shadow:
    0 0 0 10px #243c35,
    0 24px 35px rgba(0, 0, 0, 0.35);
  height: 155px;
  position: relative;
  transform: rotate(-12deg);
  width: 155px;
}

.mini-watch::before,
.mini-watch::after {
  background: repeating-linear-gradient(90deg, #9aa19d 0 12px, #d6d9d5 12px 25px);
  content: "";
  height: 110px;
  left: 34px;
  position: absolute;
  width: 63px;
  z-index: -1;
}

.mini-watch::before {
  bottom: calc(100% + 12px);
}

.mini-watch::after {
  top: calc(100% + 12px);
}

.field-copy {
  padding: 27px 30px 30px;
}

.field-copy > span,
.field-copy small {
  color: rgba(246, 242, 233, 0.52);
  font-size: 0.59rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field-copy h3 {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 400;
  margin: 14px 0 6px;
}

.field-copy p {
  color: rgba(246, 242, 233, 0.72);
  font-family: var(--serif);
  line-height: 1.5;
  margin: 0 0 24px;
}

.field-copy a {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  font-size: 0.68rem;
  justify-content: space-between;
  padding-bottom: 10px;
}

.field-copy a i {
  font-style: normal;
}

.field-copy small {
  display: block;
  margin-top: 15px;
}

.knowledge-section {
  align-items: start;
  background: var(--paper);
  display: grid;
  gap: 8vw;
  grid-template-columns: 0.75fr 1.25fr;
}

.knowledge-intro .section-index,
.price-intro .section-index,
.photo-copy .section-index {
  margin-bottom: 36px;
}

.knowledge-list {
  border-top: 1px solid var(--line);
}

.knowledge-row {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: 38px minmax(190px, 0.9fr) 1fr 24px;
  min-height: 105px;
  transition: padding 180ms ease;
}

.knowledge-row:hover {
  padding-left: 12px;
}

.knowledge-row > span {
  font-family: var(--serif);
  font-size: 0.75rem;
  opacity: 0.5;
}

.knowledge-row strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
}

.knowledge-row p {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 0.9rem;
  line-height: 1.45;
}

.knowledge-row i {
  font-style: normal;
}

.method-section {
  background: var(--cream);
  padding: clamp(90px, 11vw, 170px) clamp(20px, 12vw, 190px);
  text-align: center;
}

.method-quote {
  color: var(--gold);
  display: block;
  font-family: var(--serif);
  font-size: 5rem;
  height: 50px;
}

.method-section blockquote {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin: 20px auto 80px;
  max-width: 1040px;
}

.method-grid {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: left;
}

.method-grid > div {
  border-right: 1px solid var(--line);
  min-height: 180px;
  padding: 28px 32px;
}

.method-grid > div:last-child {
  border-right: 0;
}

.method-grid span {
  color: var(--gold);
  display: block;
  font-family: var(--serif);
  font-size: 0.75rem;
  margin-bottom: 28px;
}

.method-grid strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
}

.method-grid p {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 0.88rem;
  line-height: 1.55;
}

.site-footer {
  align-items: start;
  background: var(--ink);
  color: white;
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 68px clamp(20px, 6vw, 100px);
}

.footer-mark {
  display: flex;
  flex-direction: column;
}

.footer-mark strong {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.footer-mark span,
.site-footer > p,
.footer-links {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.66rem;
  line-height: 1.7;
}

.footer-mark span {
  margin-top: 7px;
}

.site-footer > p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  justify-self: end;
}

.footer-links a:hover {
  color: white;
}

/* Seller site */
.seller-site {
  --ink: #2d211c;
  --ink-soft: #5f514a;
  --line: rgba(45, 33, 28, 0.17);
  --serif: var(--sans);
  background: #f4eee6;
}

.seller-site h1,
.seller-site h2,
.seller-site h3 {
  font-family: var(--sans);
  text-wrap: balance;
}

.seller-site .seller-hero h1,
.seller-site .article-hero h1,
.seller-site .evaluation-hero h1,
.seller-site .section-heading h2,
.seller-site .price-intro h2,
.seller-site .photo-copy h2 {
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.seller-site h3 {
  font-weight: 600;
  letter-spacing: -0.025em;
}

.seller-site .principle-bar {
  background: var(--seller-dark);
}

.seller-hero {
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(45, 33, 28, 0.1) 50%, transparent 50.1%),
    radial-gradient(circle at 84% 35%, rgba(99, 63, 46, 0.12), transparent 31%),
    #faf6ef;
  display: grid;
  gap: 9vw;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 690px;
  padding: clamp(80px, 10vw, 135px) clamp(20px, 8vw, 130px) 80px;
  position: relative;
}

.seller-hero h1 {
  font-size: clamp(3.5rem, 5.2vw, 6.2rem);
  max-width: 820px;
}

.seller-hero h1 em {
  color: var(--seller);
  font-style: normal;
  font-weight: inherit;
}

.seller-hero-copy > p {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.13rem;
  line-height: 1.6;
  max-width: 560px;
}

.seller-primary {
  background: var(--seller);
  border-color: var(--seller);
  color: white;
  margin-top: 26px;
}

.value-ledger {
  align-self: center;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.66);
  padding: 36px;
}

.ledger-label,
.form-state {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.ledger-row {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: 36px 1fr;
  min-height: 90px;
}

.ledger-row > span {
  color: var(--seller);
  font-family: var(--serif);
  font-size: 0.75rem;
}

.ledger-row strong {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.3;
}

.value-ledger > p {
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 0.85rem;
  font-style: normal;
  line-height: 1.5;
  margin: 0;
  padding-top: 24px;
}

.privacy-strip {
  bottom: 28px;
  display: flex;
  gap: 34px;
  left: clamp(20px, 8vw, 130px);
  position: absolute;
}

.privacy-strip span {
  align-items: center;
  display: inline-flex;
  font-size: 0.59rem;
  gap: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.privacy-strip span::before {
  border: 1px solid var(--seller);
  border-radius: 50%;
  content: "";
  height: 6px;
  width: 6px;
}

.seller-heading {
  grid-template-columns: minmax(170px, 0.42fr) 1.05fr 0.75fr;
}

.planner {
  background: #fffaf3;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  margin-top: 70px;
  min-height: 500px;
}

.planner-questions {
  padding: 46px;
}

.planner fieldset {
  border: 0;
  border-bottom: 1px solid var(--line);
  margin: 0 0 35px;
  padding: 0 0 35px;
}

.planner fieldset:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}

.planner legend {
  font-family: var(--serif);
  font-size: 1.18rem;
  margin-bottom: 18px;
}

.segmented {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
}

.segmented.two {
  grid-template-columns: repeat(2, 1fr);
}

.segmented label {
  cursor: pointer;
}

.segmented input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}

.segmented span {
  border: 1px solid var(--line);
  display: block;
  font-size: 0.72rem;
  padding: 14px 12px;
  text-align: center;
  transition:
    background 160ms ease,
    border 160ms ease,
    color 160ms ease;
}

.segmented input:checked + span {
  background: var(--seller);
  border-color: var(--seller);
  color: white;
}

.segmented input:focus-visible + span {
  outline: 2px solid var(--seller);
  outline-offset: 3px;
}

.planner-result {
  background: var(--seller);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 5vw, 72px);
}

.planner-result > span {
  font-size: 0.61rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.planner-result h3 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 30px 0 18px;
}

.planner-result p {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--serif);
  line-height: 1.6;
}

.planner-result a {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  font-size: 0.72rem;
  justify-content: space-between;
  margin-top: 30px;
  padding-bottom: 12px;
}

.planner-result small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.58rem;
  line-height: 1.45;
  margin-top: 36px;
}

.price-layers {
  align-items: start;
  background: #e9dfd3;
  display: grid;
  gap: 8vw;
  grid-template-columns: 0.75fr 1.25fr;
}

.price-diagram {
  display: flex;
  flex-direction: column;
}

.price-layer {
  align-items: center;
  border: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 40px 1fr 145px;
  min-height: 145px;
  padding: 26px 30px;
}

.price-layer + .price-layer {
  border-top: 0;
}

.price-layer > span {
  color: var(--seller);
  font-family: var(--serif);
  font-size: 0.75rem;
}

.price-layer h3 {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0 0 7px;
}

.price-layer p {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 0.84rem;
  line-height: 1.45;
  margin: 0;
}

.price-layer > strong {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.price-layer.asking {
  margin-left: 0;
}

.price-layer.market {
  background: rgba(255, 255, 255, 0.32);
  margin-left: 5%;
}

.price-layer.net {
  background: var(--seller);
  color: white;
  margin-left: 10%;
}

.price-layer.net p,
.price-layer.net > span {
  color: rgba(255, 255, 255, 0.68);
}

.sale-methods {
  background: #fffaf3;
}

.method-table {
  border-top: 1px solid var(--line);
  margin-top: 58px;
}

.method-row {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 26px;
  grid-template-columns: 0.65fr 1fr 1fr 1fr;
  min-height: 105px;
  padding: 27px 14px;
}

.method-row > span {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 0.88rem;
  line-height: 1.45;
}

.method-row strong {
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 500;
}

.method-head {
  min-height: auto;
  padding-bottom: 13px;
}

.method-head > span {
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.57rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.value-factors {
  background: var(--seller-dark);
}

.factor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
}

.factor-grid article {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  min-height: 330px;
  padding: 0 30px 28px;
}

.factor-grid article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.factor-grid article > span {
  color: #bd9277;
  font-family: var(--serif);
  font-size: 0.76rem;
}

.factor-grid h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  margin: 80px 0 14px;
}

.factor-grid p {
  color: rgba(246, 242, 233, 0.58);
  font-family: var(--serif);
  font-size: 0.86rem;
  line-height: 1.55;
}

.factor-grid a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  display: inline-block;
  font-size: 0.64rem;
  margin-top: 24px;
  padding-bottom: 6px;
}

.photo-guide {
  align-items: start;
  display: grid;
  gap: 8vw;
  grid-template-columns: 0.9fr 1.1fr;
}

.photo-checks {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  margin: 38px 0;
}

.photo-checks span {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  font-family: var(--serif);
  font-size: 0.9rem;
  gap: 12px;
  padding: 12px 0;
}

.photo-checks i {
  align-items: center;
  border: 1px solid var(--seller);
  border-radius: 50%;
  color: var(--seller);
  display: inline-flex;
  font-size: 0.58rem;
  font-style: normal;
  height: 23px;
  justify-content: center;
  width: 23px;
}

.photo-copy small {
  color: var(--ink-soft);
  display: block;
  font-size: 0.65rem;
  line-height: 1.55;
}

.preview-form {
  background: #fffaf3;
  border: 1px solid var(--line);
  display: grid;
  gap: 22px;
  padding: clamp(28px, 4vw, 52px);
}

.form-state {
  background: var(--seller-light);
  color: var(--seller);
  margin: 0 0 8px;
  padding: 9px 12px;
  width: fit-content;
}

.preview-form label {
  display: grid;
  font-size: 0.65rem;
  gap: 8px;
  letter-spacing: 0.04em;
}

.preview-form input,
.preview-form select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  font-family: var(--serif);
  font-size: 1rem;
  padding: 10px 0;
}

.preview-form input::placeholder {
  color: #8d817a;
}

.form-split {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}

.preview-form button {
  align-items: center;
  background: var(--seller);
  border: 0;
  color: white;
  cursor: pointer;
  display: flex;
  font-size: 0.7rem;
  justify-content: space-between;
  margin-top: 12px;
  padding: 17px 18px;
}

.preview-form > p {
  color: var(--ink-soft);
  font-size: 0.59rem;
  line-height: 1.55;
  margin: 0;
}

.seller-promise {
  background: #d8c6b6;
  padding: clamp(80px, 10vw, 150px) clamp(20px, 15vw, 230px);
  text-align: center;
}

.seller-promise p {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1.14;
  margin: 0 auto 30px;
  max-width: 1050px;
}

.seller-promise span {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seller-footer {
  background: var(--seller-dark);
  display: block;
}

.seller-footer-top {
  align-items: start;
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 1fr 1fr;
}

.seller-footer-top > p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.66rem;
  line-height: 1.7;
  margin: 0;
}

.seller-locations {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: clamp(36px, 5vw, 80px);
  grid-template-columns: 0.9fr 0.9fr 1.2fr;
  margin-top: 54px;
  padding-top: 44px;
}

.seller-locations > article > span {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  margin-bottom: 22px;
}

.seller-locations address {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-style: normal;
  line-height: 1.7;
}

.seller-locations address p {
  margin: 0 0 10px;
}

.seller-locations address strong {
  color: #c49470;
  display: inline;
  font-weight: 600;
  margin-right: 5px;
}

.seller-locations a {
  color: inherit;
}

.seller-locations a:hover {
  color: white;
}

.seller-company address {
  font-size: 0.68rem;
}

.section-read-more {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  font-size: 0.72rem;
  gap: 24px;
  grid-column: 2;
  justify-content: space-between;
  justify-self: end;
  margin-top: 34px;
  max-width: 480px;
  padding-bottom: 10px;
  width: 100%;
}

.seller-guides {
  background: #f4eee6;
  padding: clamp(80px, 9vw, 140px) clamp(20px, 8vw, 130px);
}

.seller-guide-grid {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
}

.seller-guide-card {
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 28px 28px 30px;
  position: relative;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.seller-guide-card:last-child {
  border-right: 1px solid var(--line);
}

.seller-guide-card:hover {
  background: var(--seller);
  color: white;
  transform: translateY(-4px);
}

.seller-guide-card > span {
  color: var(--seller);
  font-family: var(--serif);
  font-size: 0.76rem;
  transition: color 180ms ease;
}

.seller-guide-card:hover > span,
.seller-guide-card:hover p {
  color: rgba(255, 255, 255, 0.62);
}

.seller-guide-card h3 {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.15;
  margin: auto 0 15px;
}

.seller-guide-card p {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 0.86rem;
  line-height: 1.5;
  margin: 0;
  transition: color 180ms ease;
}

.seller-guide-card i {
  bottom: 28px;
  font-style: normal;
  opacity: 0;
  position: absolute;
  right: 26px;
}

.seller-guide-card:hover i {
  opacity: 1;
}

.photo-detail-link {
  border-bottom: 1px solid var(--line);
  display: inline-block;
  font-size: 0.67rem;
  margin-top: 30px;
  padding-bottom: 7px;
}

.form-invitation {
  align-content: center;
  position: relative;
}

.form-step-count {
  color: var(--seller);
  font-family: var(--serif);
  font-size: 5.5rem;
  line-height: 1;
  opacity: 0.13;
  position: absolute;
  right: 40px;
  top: 34px;
}

.form-invitation h3 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 15px 0 0;
  max-width: 500px;
}

.form-invitation > p {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 0.94rem;
  line-height: 1.6;
}

.form-invitation ul {
  border-top: 1px solid var(--line);
  list-style: none;
  margin: 10px 0;
  padding: 0;
}

.form-invitation li {
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 0.84rem;
  padding: 12px 0;
}

.form-invitation > a {
  align-items: center;
  background: var(--seller);
  color: white;
  display: flex;
  font-size: 0.7rem;
  justify-content: space-between;
  margin-top: 10px;
  padding: 17px 18px;
}

/* Seller articles */
.article-hero,
.evaluation-hero {
  background:
    linear-gradient(90deg, transparent 0 70%, rgba(99, 63, 46, 0.055) 70% 100%),
    #faf6ef;
  border-bottom: 1px solid var(--line);
  padding: 36px clamp(20px, 12vw, 190px) clamp(70px, 9vw, 130px);
}

.breadcrumb {
  align-items: center;
  color: var(--ink-soft);
  display: flex;
  font-size: 0.61rem;
  gap: 10px;
  letter-spacing: 0.05em;
  margin-bottom: clamp(60px, 8vw, 110px);
}

.breadcrumb a {
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
}

.article-eyebrow {
  color: var(--seller);
  display: block;
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.15em;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.article-hero h1,
.evaluation-hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6.3vw, 7.2rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.93;
  margin: 0;
  max-width: 1120px;
}

.article-hero > p,
.evaluation-hero > p {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  line-height: 1.6;
  margin: 38px 0 0;
  max-width: 770px;
}

.article-meta {
  border-top: 1px solid var(--line);
  display: flex;
  gap: 30px;
  margin-top: 55px;
  max-width: 770px;
  padding-top: 18px;
}

.article-meta span {
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-layout {
  align-items: start;
  background: #fffaf3;
  display: grid;
  gap: clamp(30px, 5vw, 80px);
  grid-template-columns: minmax(150px, 0.38fr) minmax(0, 1.2fr) minmax(170px, 0.42fr);
  padding: clamp(70px, 9vw, 135px) clamp(20px, 7vw, 110px);
}

.article-toc,
.article-note {
  position: sticky;
  top: 30px;
}

.article-toc > span,
.article-note > span {
  display: block;
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.article-toc nav {
  border-top: 1px solid var(--line);
}

.article-toc a {
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  display: grid;
  font-family: var(--serif);
  font-size: 0.84rem;
  gap: 10px;
  grid-template-columns: 24px 1fr;
  line-height: 1.35;
  padding: 14px 0;
}

.article-toc i {
  color: var(--seller);
  font-size: 0.63rem;
  font-style: normal;
}

.article-note {
  background: var(--seller-light);
  padding: 25px;
}

.article-note p {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 0.84rem;
  line-height: 1.55;
  margin: 0;
}

.article-body {
  min-width: 0;
}

.article-body > section {
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(65px, 8vw, 110px);
  padding-bottom: clamp(65px, 8vw, 110px);
  scroll-margin-top: 30px;
}

.article-body > section:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}

.article-section-number {
  color: var(--seller);
  display: block;
  font-family: var(--serif);
  font-size: 0.76rem;
  margin-bottom: 35px;
}

.article-body h2 {
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
  margin: 0 0 32px;
}

.article-body h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.article-body p,
.article-body li {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.03rem;
  line-height: 1.75;
}

.article-body p {
  margin: 0 0 24px;
}

.article-lead {
  color: var(--ink) !important;
  font-size: clamp(1.23rem, 1.7vw, 1.55rem) !important;
  line-height: 1.55 !important;
}

.article-callout {
  background: #eee3d7;
  border-left: 3px solid var(--seller);
  margin: 45px 0 0;
  padding: 27px 30px;
}

.article-callout strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.article-callout p {
  font-size: 0.9rem;
  margin: 0;
}

.article-factor-list {
  border-top: 1px solid var(--line);
}

.article-factor-list article {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 36px 1fr;
  padding: 25px 0;
}

.article-factor-list i {
  color: var(--seller);
  font-family: var(--serif);
  font-size: 0.7rem;
  font-style: normal;
}

.article-factor-list h3 {
  margin: 0 0 8px;
}

.article-factor-list p {
  font-size: 0.9rem;
  margin: 0;
}

.comparison-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 45px;
}

.comparison-pair > div {
  border: 1px solid var(--line);
  padding: 30px;
}

.comparison-pair > div + div {
  background: var(--seller);
  color: white;
}

.comparison-pair span {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.comparison-pair h3 {
  font-size: 1.55rem;
  margin: 42px 0 15px;
}

.comparison-pair p {
  font-size: 0.86rem;
  margin: 0;
}

.comparison-pair > div + div p {
  color: rgba(255, 255, 255, 0.7);
}

.article-inline-link {
  align-items: center;
  border-bottom: 1px solid var(--seller);
  color: var(--seller);
  display: inline-flex;
  font-size: 0.72rem;
  margin-top: 25px;
  padding-bottom: 7px;
}

.net-value-table {
  border-top: 1px solid var(--line);
  margin: 45px 0 30px;
}

.net-value-table > div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 30px;
  grid-template-columns: 0.55fr 1.45fr;
  padding: 20px 8px;
}

.net-value-table strong {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.net-value-table span {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 0.9rem;
  line-height: 1.45;
}

.method-scorecard {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 35px 0;
}

.method-scorecard span {
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}

.method-scorecard span:last-child {
  border-right: 0;
}

.method-scorecard i {
  color: var(--seller);
  font-size: 0.58rem;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.method-scorecard strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
}

.article-checklist {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
}

.article-checklist li {
  border-bottom: 1px solid var(--line);
  padding: 17px 0 17px 38px;
  position: relative;
}

.article-checklist li:first-child {
  border-top: 1px solid var(--line);
}

.article-checklist li::before {
  align-items: center;
  border: 1px solid var(--seller);
  border-radius: 50%;
  color: var(--seller);
  content: "✓";
  display: flex;
  font-family: var(--sans);
  font-size: 0.55rem;
  height: 20px;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 21px;
  width: 20px;
}

.shot-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 45px;
}

.shot-grid article {
  background: #f1e7dc;
  min-height: 330px;
  padding: 24px;
}

.shot-grid article > span {
  color: var(--seller);
  font-family: var(--serif);
  font-size: 0.68rem;
}

.shot-grid h3 {
  margin: 20px 0 8px;
}

.shot-grid p {
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
}

.shot-diagram {
  align-items: center;
  display: flex;
  height: 145px;
  justify-content: center;
  margin-top: 15px;
}

.shot-diagram i {
  background: radial-gradient(circle, #49372e 0 38%, #a18f85 39% 46%, transparent 47%);
  border: 1px solid rgba(45, 33, 28, 0.35);
  border-radius: 50%;
  height: 105px;
  position: relative;
  width: 105px;
}

.shot-diagram i::before,
.shot-diagram i::after {
  background: repeating-linear-gradient(90deg, #8e817a 0 7px, #c2b7b0 7px 14px);
  content: "";
  height: 55px;
  left: 31px;
  position: absolute;
  width: 41px;
  z-index: 0;
}

.shot-diagram i::before {
  bottom: calc(100% + 1px);
}

.shot-diagram i::after {
  top: calc(100% + 1px);
}

.shot-2 i,
.shot-3 i {
  border-radius: 38% 58% 58% 38%;
  transform: rotate(90deg) scaleX(0.65);
}

.shot-4 i {
  background: radial-gradient(circle, #8b7e77 0 42%, #b8aaa2 43% 48%, transparent 49%);
}

.shot-5 i {
  border-radius: 18px;
  transform: scaleX(1.55) scaleY(0.75);
}

.shot-6 i {
  background:
    linear-gradient(135deg, transparent 0 35%, #a8998f 36% 64%, transparent 65%),
    #e4d7ca;
  border-radius: 7px;
}

.article-next {
  background: #d8c6b6;
  padding: clamp(80px, 10vw, 145px) clamp(20px, 15vw, 230px);
  text-align: center;
}

.article-next > span {
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.article-next h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.3vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
  margin: 30px auto;
  max-width: 1000px;
}

.article-next p {
  color: var(--ink-soft);
  font-family: var(--serif);
  line-height: 1.6;
  margin: 0 auto 35px;
  max-width: 620px;
}

.article-next a {
  background: var(--seller);
  color: white;
  display: inline-flex;
  font-size: 0.72rem;
  gap: 45px;
  padding: 17px 20px;
}

/* Evaluation form */
.evaluation-page {
  background: #f4eee6;
}

.evaluation-hero {
  padding-bottom: 80px;
}

.evaluation-hero h1 {
  max-width: 980px;
}

.evaluation-shell {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1.15fr) minmax(180px, 0.5fr);
  padding: clamp(70px, 9vw, 130px) clamp(20px, 7vw, 110px);
}

.evaluation-progress {
  border-top: 1px solid var(--line);
}

.evaluation-progress button {
  align-items: center;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  display: grid;
  gap: 12px;
  grid-template-columns: 24px 1fr;
  padding: 16px 0;
  text-align: left;
  width: 100%;
}

.evaluation-progress button:disabled {
  cursor: default;
  opacity: 0.36;
}

.evaluation-progress button[aria-current="step"] {
  color: var(--seller);
}

.evaluation-progress i {
  font-family: var(--serif);
  font-size: 0.7rem;
  font-style: normal;
}

.evaluation-progress span {
  font-family: var(--serif);
  font-size: 0.86rem;
}

.evaluation-form {
  background: #fffaf3;
  border: 1px solid var(--line);
  min-height: 650px;
  padding: clamp(28px, 5vw, 65px);
}

.evaluation-form fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.evaluation-form legend {
  display: flex;
  flex-direction: column;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3.4vw, 3.8rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 18px;
}

.evaluation-form legend > span {
  color: var(--seller);
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.evaluation-form fieldset > p {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 42px;
  max-width: 610px;
}

.evaluation-form label {
  display: grid;
  font-size: 0.64rem;
  gap: 9px;
  letter-spacing: 0.04em;
  margin-bottom: 27px;
}

.evaluation-form label em {
  color: var(--seller);
  font-size: 0.54rem;
  font-style: normal;
  justify-self: end;
  letter-spacing: 0.08em;
  margin-top: -18px;
  text-transform: uppercase;
}

.evaluation-form input:not([type="checkbox"]):not([type="file"]),
.evaluation-form select,
.evaluation-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  font-family: var(--serif);
  font-size: 1rem;
  padding: 11px 0;
  resize: vertical;
}

.evaluation-form textarea {
  border: 1px solid var(--line);
  padding: 15px;
}

.evaluation-split {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 1fr;
}

.evaluation-actions {
  border-top: 1px solid var(--line);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 45px;
  padding-top: 24px;
}

.evaluation-actions button,
.evaluation-complete button {
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 0.68rem;
  padding: 14px 18px;
}

.evaluation-actions button:disabled {
  cursor: default;
  opacity: 0.32;
}

.evaluation-actions .primary {
  background: var(--seller);
  border-color: var(--seller);
  color: white;
}

.evaluation-privacy {
  background: var(--seller-dark);
  color: white;
  padding: 28px;
  position: sticky;
  top: 30px;
}

.evaluation-privacy > span {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.evaluation-privacy h3 {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.15;
  margin: 38px 0 20px;
}

.evaluation-privacy ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.evaluation-privacy li {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--serif);
  font-size: 0.78rem;
  line-height: 1.45;
  padding: 14px 0;
}

.file-drop {
  align-items: center;
  background: #eee3d7;
  border: 1px dashed var(--seller) !important;
  cursor: pointer;
  display: flex !important;
  min-height: 180px;
  padding: 35px !important;
  text-align: center;
}

.file-drop input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}

.file-drop strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.file-drop span {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 0.8rem;
}

.selected-files {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  padding: 0 0 15px;
}

.selected-files strong,
.selected-files span {
  font-size: 0.62rem;
}

.consent-check {
  align-items: start;
  display: grid !important;
  gap: 13px !important;
  grid-template-columns: 20px 1fr;
}

.consent-check input {
  height: 18px;
  margin: 2px 0 0;
  width: 18px;
}

.consent-check span {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 0.8rem;
  line-height: 1.55;
}

.evaluation-complete {
  background: #fffaf3;
  margin: clamp(70px, 10vw, 140px) auto;
  max-width: 820px;
  padding: clamp(45px, 7vw, 90px);
  text-align: center;
}

.evaluation-complete > span {
  color: var(--seller);
  font-size: 0.6rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.evaluation-complete h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.3vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.evaluation-complete p {
  color: var(--ink-soft);
  font-family: var(--serif);
  line-height: 1.65;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .watch-study {
    opacity: 0.48;
    right: -140px;
  }

  .buyer-hero {
    background: var(--cream);
  }

  .need-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .need-card:nth-child(n + 4) {
    border-top: 1px solid var(--line);
    padding-top: 24px;
  }

  .section-heading {
    grid-template-columns: 0.45fr 1fr;
  }

  .section-heading p {
    grid-column: 2;
    margin-top: 25px;
  }

  .field-grid {
    grid-template-columns: 1fr 1fr;
  }

  .field-card:last-child {
    display: none;
  }

  .seller-hero {
    gap: 64px;
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 120px;
  }

  .seller-hero-copy {
    max-width: 780px;
  }

  .seller-site .seller-hero h1 {
    font-size: clamp(3.4rem, 7vw, 5.25rem);
    max-width: 760px;
  }

  .value-ledger {
    max-width: 720px;
    padding: 28px;
    width: 100%;
  }

  .factor-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .factor-grid article:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 28px;
  }

  .seller-guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .seller-guide-card:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .article-layout,
  .evaluation-shell {
    grid-template-columns: minmax(150px, 0.35fr) 1fr;
  }

  .article-note,
  .evaluation-privacy {
    grid-column: 1;
    position: static;
  }

  .article-note {
    grid-row: 2;
  }

  .article-body,
  .evaluation-form {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}

@media (max-width: 760px) {
  .principle-bar {
    font-size: 0.52rem;
    letter-spacing: 0.08em;
  }

  .principle-bar > span {
    display: none;
  }

  .principle-bar {
    justify-content: flex-end;
  }

  .site-header {
    padding: 18px 20px;
  }

  .header-action {
    display: none;
  }

  .wordmark-title {
    font-size: 0.82rem;
  }

  .buyer-hero,
  .seller-hero {
    min-height: 650px;
    padding: 72px 20px 74px;
  }

  .buyer-hero h1,
  .seller-hero h1 {
    font-size: clamp(3.35rem, 16.5vw, 5.4rem);
    line-height: 0.87;
    margin-top: 32px;
  }

  .seller-site .seller-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
    line-height: 1.04;
  }

  .hero-intro,
  .seller-hero-copy > p {
    font-size: 1rem;
    max-width: 90%;
  }

  .watch-study {
    bottom: -115px;
    height: 430px;
    opacity: 0.17;
    right: -155px;
    top: auto;
    transform: scale(0.75);
    transform-origin: bottom right;
    width: 430px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero-footnote {
    bottom: 21px;
    gap: 14px;
    left: 20px;
  }

  .hero-footnote span:last-child {
    display: none;
  }

  .start-panel,
  .collection-section,
  .knowledge-section,
  .planner-section,
  .price-layers,
  .sale-methods,
  .photo-guide {
    padding: 75px 20px;
  }

  .section-heading,
  .seller-heading {
    display: block;
  }

  .section-heading h2,
  .knowledge-intro h2,
  .price-intro h2,
  .photo-copy h2 {
    font-size: 2.65rem;
    margin-top: 28px;
  }

  .section-heading p,
  .knowledge-intro p,
  .price-intro p,
  .photo-copy > p {
    font-size: 0.96rem;
    margin-top: 20px;
  }

  .need-grid {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .need-card,
  .need-card:nth-child(n + 4) {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--line);
    min-height: 160px;
    padding: 20px 8px;
  }

  .need-card:last-child {
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }

  .need-number {
    margin-bottom: 30px;
  }

  .section-kicker {
    align-items: start;
    flex-direction: column;
    gap: 14px;
  }

  .collection-row {
    gap: 12px;
    grid-template-columns: 32px 1fr 25px;
    min-height: 120px;
  }

  .collection-row h3 {
    font-size: 2.2rem;
  }

  .collection-row p,
  .collection-meta {
    display: none;
  }

  .collection-row > a {
    grid-column: 3;
  }

  .field-section,
  .value-factors {
    padding: 80px 20px;
  }

  .field-grid {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .field-card:last-child {
    display: block;
  }

  .field-card {
    min-height: auto;
  }

  .knowledge-section,
  .price-layers,
  .photo-guide {
    display: block;
  }

  .knowledge-list,
  .price-diagram,
  .preview-form {
    margin-top: 50px;
  }

  .knowledge-row {
    gap: 10px;
    grid-template-columns: 28px 1fr 22px;
  }

  .knowledge-row p {
    display: none;
  }

  .method-section {
    padding: 80px 20px;
  }

  .method-section blockquote {
    font-size: 2rem;
    margin-bottom: 50px;
  }

  .method-grid {
    display: block;
  }

  .method-grid > div {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: auto;
    padding: 26px 4px;
  }

  .site-footer {
    display: block;
    padding: 55px 20px;
  }

  .site-footer > p {
    margin: 35px 0;
  }

  .footer-links {
    justify-self: start;
  }

  .seller-footer-top,
  .seller-locations {
    display: block;
  }

  .seller-footer-top > p {
    margin: 35px 0;
  }

  .seller-locations {
    margin-top: 42px;
    padding-top: 36px;
  }

  .seller-locations article + article {
    margin-top: 38px;
  }

  .seller-hero {
    display: block;
    min-height: auto;
    padding-bottom: 100px;
  }

  .value-ledger {
    margin-top: 55px;
  }

  .privacy-strip {
    bottom: 28px;
    gap: 15px;
    left: 20px;
  }

  .privacy-strip span:last-child {
    display: none;
  }

  .planner {
    display: block;
    margin-top: 50px;
  }

  .planner-questions {
    padding: 28px 20px;
  }

  .segmented {
    grid-template-columns: 1fr;
  }

  .planner-result {
    min-height: 400px;
    padding: 40px 28px;
  }

  .price-layer {
    gap: 14px;
    grid-template-columns: 26px 1fr;
    padding: 22px 18px;
  }

  .price-layer > strong {
    display: none;
  }

  .price-layer.market {
    margin-left: 3%;
  }

  .price-layer.net {
    margin-left: 6%;
  }

  .method-table {
    border-top: 0;
  }

  .method-row {
    display: block;
    padding: 24px 0;
  }

  .method-head {
    display: none;
  }

  .method-row > span {
    display: block;
    margin-top: 8px;
  }

  .method-row > span::before {
    color: var(--seller);
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.56rem;
    letter-spacing: 0.09em;
    margin-right: 8px;
    text-transform: uppercase;
  }

  .method-row > span:nth-child(2)::before {
    content: "Mạnh";
  }

  .method-row > span:nth-child(3)::before {
    content: "Đổi";
  }

  .method-row > span:nth-child(4)::before {
    content: "Hợp";
  }

  .factor-grid {
    grid-template-columns: 1fr;
  }

  .factor-grid article,
  .factor-grid article:nth-child(n + 3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
    border-top: 0;
    min-height: auto;
    padding: 28px 0;
  }

  .factor-grid article:last-child {
    border-right: 0;
  }

  .factor-grid h3 {
    margin-top: 35px;
  }

  .form-split,
  .photo-checks {
    grid-template-columns: 1fr;
  }

  .seller-promise {
    padding: 80px 20px;
  }

  .seller-promise p {
    font-size: 2.15rem;
  }

  .section-read-more {
    grid-column: auto;
    justify-self: start;
    margin-top: 35px;
  }

  .seller-guides {
    padding: 75px 20px;
  }

  .seller-guide-grid {
    display: block;
    margin-top: 50px;
  }

  .seller-guide-card,
  .seller-guide-card:nth-child(n + 3) {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--line);
    min-height: 230px;
    padding: 24px 5px;
  }

  .seller-guide-card:last-child {
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }

  .article-hero,
  .evaluation-hero {
    padding: 28px 20px 72px;
  }

  .breadcrumb {
    margin-bottom: 70px;
    overflow: hidden;
    white-space: nowrap;
  }

  .article-hero h1,
  .evaluation-hero h1 {
    font-size: clamp(3rem, 14.5vw, 5rem);
  }

  .seller-site .article-hero h1,
  .seller-site .evaluation-hero h1 {
    font-size: clamp(2.65rem, 12vw, 4rem);
    line-height: 1.08;
  }

  .article-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .article-layout,
  .evaluation-shell {
    display: block;
    padding: 65px 20px;
  }

  .article-toc {
    margin-bottom: 70px;
    position: static;
  }

  .article-note {
    margin-top: 50px;
  }

  .article-body h2 {
    font-size: 2.55rem;
  }

  .comparison-pair,
  .shot-grid {
    grid-template-columns: 1fr;
  }

  .method-scorecard {
    display: block;
  }

  .method-scorecard span {
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }

  .net-value-table > div {
    gap: 12px;
    grid-template-columns: 0.8fr 1.2fr;
  }

  .article-next {
    padding: 80px 20px;
  }

  .article-next h2 {
    font-size: 2.45rem;
  }

  .evaluation-progress {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 30px;
  }

  .evaluation-progress button {
    border-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .evaluation-progress span {
    font-size: 0.65rem;
  }

  .evaluation-form {
    min-height: auto;
    padding: 30px 20px;
  }

  .evaluation-split {
    display: block;
  }

  .evaluation-privacy {
    margin-top: 30px;
  }

  .selected-files {
    align-items: start;
    flex-direction: column;
    gap: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* WordPress block-theme integration */
.wp-site-blocks,
.wp-site-blocks > .wp-block-post-content,
.wp-block-post-content {
  margin: 0;
  max-width: none;
  padding: 0;
}

.wp-block-post-content > .site-shell {
  margin-block-start: 0;
}

.admin-bar .principle-bar {
  margin-top: 0;
}

[hidden] {
  display: none !important;
}
